Hi! It would be great to have the setx, sety and setz commands available in Rhino 8. I use them all the time in Rhino 7.
Hi Claudio -
Just as an addition to what Masaki wrote, those are not Rhino 7 commands.
-wim
2 Likes
Great, thanks!
Not sure why I have those in Rhino 7, maybe they came with a plugin?
It appears that those commands are part of Peter’s Tools
Not sure if these are really the same (I don’t have Peter’s tools installed) but here are mine just in case - they’re just macros for SetPt, you can make aliases for them yourselves:
setX:
! _-SetPt _Pause _XSet=_Yes _YSet=_No _ZSet=_No _Alignment=_World _Copy=_No
setY:
! _-SetPt _Pause _YSet=_Yes _XSet=_No _ZSet=_No _Alignment=_World _Copy=_No
setZ:
! _-SetPt _Pause _ZSet=_Yes _XSet=_No _YSet=_No _Alignment=_World _Copy=_No
4 Likes
Great, thanks for sharing!