I'd like to create a point cloud using the Geometry Node Editor based on my own custom data.
The data is stored in a .txt file, plain [x,y,z] coordinates and looks like this:
v1 : 1, 2, 1;
v2: 1.5, 2, 0;
v3: 0, 2.5, 2;
v4: 1.2, 2, 0;
etc.
I also tried a python script to import the vertices, which is working fine but I don't find a way to use it for Geometry Nodes.
Q: Is there any way to create a point cloud based on the given data to make use of Geometry Nodes features in order to further manipulate the point cloud?


Then I will continue in Geometry Node Editor where I want to set to every point in cloud different object.
The problem is that I dont know how to create Point Cloud from my vertices instead of random points.
– Petra Svobodova Mar 03 '21 at 12:05https://imgur.com/a/OMGf1bb.jpg
The points inside have some coordinates [x, y ,z].
I have my own coordinates: v1 : 1, 2, 1; v2: 1.5, 2, 0; v3: 0, 2.5, 2; v4: 1.2, 2, 0; etc.
I want to set points in cloud to my coordinates via Python script.
I need it like this, because then I am using Geometry Editor.
– Petra Svobodova Mar 03 '21 at 12:56