how can retrieve a point on an arc to create an Arc by using python.
Hello,
retrieve means there is already an arc, you want to duplicate it?
I linked a 2d cad file in to Revit. and i collected all the arcs from linked cad. then i need to create the same arc in revit. start point and end points can retrieve by using the method GetEndPoint(). But i don’t know i can get pointOnArc.
try this
midPoint = arc_dwg_curve.Evaluate(0.5, True)
2 Likes