Rhinocommon move brep

How to translate a brep to another position?

Thank you for your response. :slight_smile:
20190204 problem move brep 00.gh (5.8 KB)

You can use Transform.Translation()

import Rhino.Geometry  as rg
translation = rg.Transform.Translation(0,4,4)
br.Transform(translation)
movedbr=br

ForestOwl.gh (5.3 KB)

1 Like