JSLine3D

API for creating and modifying JSLine3D objects. JSLine3D defines a line in 3D space composed of start and end points.

Creates a new Module.JSLine3D API.

let start = new Module.JSVector3D(129.14, 35.18, 100.0);
let end = new Module.JSVector3D(129.18, 35.189, 200.0);

let lineDefault = new Module.JSLine3D();
let lineWithStartEnd = new Module.JSLine3D(start, end);

properties

Name
Type
Description

start

The starting point of the line.

end

The ending point of the line.

Last updated