I want to pull a face from 0 to 4.5m, and my entities is imported from other software,how to set length units in code?
for example
pts = []
pts[0] = [edge.start.position.x, edge.start.position.y, 0]
pts[1] = [edge.end.position.x, edge.end.position.y, 0]
pts[2] = [edge.end.position.x, edge.end.position.y, 4.5]
pts[3] = [edge.start.position.x, edge.start.position.y, 4.5]
here,i want to set z value as 4.5m,how to set? thank u