Hello! Sory for my English
I'm trying create geometry with AttribWrangle node in Detail mode. I use addpoint, addvertex and addprim nodes. When I created some points how could I get access to them into the node?
For example, I created point pnt0 = {0,0,0,}. And now I want to create point pnt1 which is close to pnt0:
int X = 3;
int pnt0 = addpoint(0, set(0,0,0));
int pnt1 = addpoint(0, set()); - and here I want to get position of the first point and add X to each coordinates.
Is it possible?