Hello,
I am trying to create a circular arc between two points but am not able to find examples or documentation.
I'd also like my circular arcs to also have Z values so they look like an arc extending up a specified Z value. I can create the polylines easy enough, I think, but how to create a circular arcs with the start and end points.
Here is what I am working off of now.
import arcpy
start_point = arcpy.Point(10, 10, 100 )
end_point = arcpy.Point(20, 20, 200)
arc_geometry = arcpy.Geometry()
arc_geometry.geometry = "circular arc"
point_array = arcpy.Array()
point_array.add(start_point)
point_array.add(end_point)
arc_geometry = arcpy.Polyline(point_array)
Thank you for any suggestions on how to create a circular arc given the start and end points.
Mele