Notifications
Clear all

[Closed] drawing perpendicular splines, follow mouse

Hello,

I am working on some tool, and I would like to implement some basic drawing of perpendicualar splines from an other spline segment, and the lenght updated by the position of the mouse.

I managed the basic code, but Idont know how sould I solve the problem, that I have to continuosly check the mouse postion and draw the new perpendicual spline, without any event change except the mouse moves.

If I use for or while cycle the spline doesnt show up only when the function finishes.

so here is the code structure.

function startpos ()

function drawline (
for (
–get the new point
– draw
)
)

function base (
– get selected spline segment
call drawline()
)

getlocation = pickPoint mouseMoveCallback:#(startpos ,startpoint)
call base()

5 Replies

Hej, I figured a redrawviews() needed for some reason, now it works!
Thanks anyway.

Are you using updateShape shpObject as well? This is needed to update the shape in the viewports after adding/removing/modifying knots.

Cheers,
Martijn

Naturally, I do, I was really surprised. I dont know why this behaviour. I will try in max2008 and will see.

I run into an other problem. THe mouse.pos, and the mouse.screenpos will give only the screen x,y, do you happen to know how to get the world coordinate x,y without pickpoint?
at least If I would know the world origin in screenpos. But that would also be a factor of the resolution of the screen.

That way I wouldnt have to click always to get a new point. Just simply move the mose and the line will extend its lenght.

1 Reply
(@zeboxx2)
Joined: 1 year ago

Posts: 0

Have a peek at the documentation for ‘mapScreenToWorldRay’, ‘mapScreenToView’ and ‘mapScreenToCP’.

Thanks so much, it works perfectly.