INTERACTIVE EDITING IN RHINO:
input a space curve → apply the method → select a point on the curve and update the curve (drag with the selected or any control point) → apply the method again this cycle continues for n times.
pseudo code:
method applied to the initialised curve.
for loop (select a point on the curve and update the curve). #ntimes
if (curve updated):
apply the method
else break
I am facing difficulty in “to update the curve”
I don’t want to select the curve again to apply the method it should be taken automatically. Please help.