Calculate the angle of the arc of a circle with center at p1 and endpoint at p2.

syntaxSyntax:
DlxSegment.ArcAngle()

Return Value

The value of the angle in degrees.

Example

  Copy codeCopy code
var seg = new DlxSegment(10, 20, 50, 60);
DlxApp.Printf("Angle=%.1f°", seg.ArcAngle());

See also