length()
Description
Returns the value of the length.
Syntax
Return value
| Type | Description | 
| Number | The length value. | 
Example
| JS | 
|---|
|  | let s = Geom.segment(Geom.point3(10, 10, 10), Geom.point3(20, 20, 20));
let len = Math.round(s.length()); // 17
console.info(len);
 |