Copying Object Using Python-Grasshopper

Hi everyone!

I am trying to use grashopper python component to copy a planar object in Z direction. But as understand its tricky.

I created a plane object using grashopper planesrf component and I want to copy it using a python component by looping. Is this possible?

I’m sure it is. Can you do it without Python? Where is your Python code?

3. Attach minimal versions of all the relevant files

1 Like

https://developer.rhino3d.com/api/rhinoscript/object_methods/moveobject.htm

you move with a vector, not necessarily with a plane.

if you provide what you’ve done yet, help will usually come much faster from the community.

second link is RhinoScript, sorry. here’s the correct one:

1 Like

Do somethink like this

Screen Shot 037

1 Like

if you need to move an object and not a plane specifically, you’d rather use this:

geometry_base = rhino_object.DuplicateGeometry()

and then go on with Peter’s script (if you are using grasshopper)

1 Like

Thanks everyone for replys. All of them help me to understand issue.