Calculate the length of the segment.
Syntax: |
|---|
| DlxSegment.Length() |
Return Value
Returns the length of the segment.
Example
Copy code
|
|
|---|---|
var seg = new DlxSegment(10, 20, 50, 60);
DlxApp.Printf("Length=%.2f", seg.Length());
|
|
