New Point for every run

Hello,

I am trying to find a way to create a new point (shift in some x,y) direction from existing point for each run of code.

will this be possible and what can be the way to do it ?

Thanks alot for all the support.

The beginning of your graph will need to be able to select the shifted point created at the end of each run of the graph.

Your shifted point created at the end of your graph could be placed on its own layer. The begining of the graph then selects everything on that layer each time you run your graph.

From there, you can extract the x and y values, then add some value to them, then create a new point shifted by the new x and y values.

@JPhil thanks for the reply,

if i can see it will create points on same layer for run, have to use manual method to create a new layer for each run to place shifted point on that layer and then feed it back in again for next run. which i am not intending to achieve, i am trying to find some way like random point generator it will generate new point for each run or shift it by (given x,Y) in automatic way based on start point as reference.