Standard way of moving object to set coordinates?

I wish I could just write rs.MoveToCoordinates(x,y,z) to move my object to the set location. :smiley:
I mean, moving an object should be the easiest thing to do… but I want no mouse click interaction, no starting location. Just an ending location (coordinates).

Is there an function similar to MoveObject/s I’m missing?

In Rhino a move needs a “from” point and a “to” point. Rhino objects do not have a fixed “from” or anchor point like some other programs, so you need to specify that point.

Using BoxEdit, you can move objects from their bounding box centers or max/min points. Otherwise a script can also be made to do this. But the automatic “anchor” point might not always be what you want.