Arcing a Segment
We need to turn a line segment into an arc. We know the offset at the center, and need the radius of the arc.
We need to turn a line segment into an arc. We know the offset at the center, and need the radius of the arc.
First draw the segment, and specify coordinates of its end points.
Now construct the center point and create a perpendicular segment length h.
Create a circle through the three points
Measure the radius.
Copy as C#.
And paste into a code editor.