Calculate the angle of the arc of a circle with center at p1 and endpoint at p2.
Syntax: |
|---|
| DlxSegment.ArcAngle() |
Return Value
The value of the angle in degrees.
Example
Copy code
|
|
|---|---|
var seg = new DlxSegment(10, 20, 50, 60);
DlxApp.Printf("Angle=%.1f°", seg.ArcAngle());
|
|
