How to translate a brep to another position?
Thank you for your response.
20190204 problem move brep 00.gh (5.8 KB)
How to translate a brep to another position?
Thank you for your response.
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)