Class: Line3

Line3()

A line from one {Vector3} to another.

Constructor

new Line3()

Source:

Methods

add(offset) → {Line3}

Construct a new line based on this line with both points having an offset added.
Parameters:
Name Type Description
offset Vector3
Source:
Returns:
Type
Line3

divideScalar(scalar) → {Line3}

Construct a new line from both points of this line divided by a scalar value.
Parameters:
Name Type Description
scalar number
Source:
Returns:
Type
Line3

map(f) → {Line3}

Apply a function to each point on the line and construct a new line from the result.
Parameters:
Name Type Description
f function a function accepting a {Vector3} and returning the mapped vector.
Source:
Returns:
Type
Line3

multiplyScalar(scalar) → {Line3}

Construct a new line from both points of this line multiplied by a scalar value.
Parameters:
Name Type Description
scalar number
Source:
Returns:
Type
Line3

subtract(offset) → {Line3}

Construct a new line based on this line with both points having an offset subtracted.
Parameters:
Name Type Description
offset Vector3
Source:
Returns:
Type
Line3

vector() → {Vector3}

Convert the line to a vector from point A to point B. That is the vector that, when added to A, produces B.
Source:
Returns:
Type
Vector3