What is Incisor?
Tutorials
Key Concepts
Reddit
Stack Overflow
Deprecation Schedule

Vector3Base extends Vector4Base

The 'base' object for the Vector3 type. This is not for general use - use Vector3 instead. [NON-INSTANTIABLE]

Vector3Base

MEMBERS

inheritedTypes :object

Dictionary object listing all of the types this object is compatible with.

Inherited From:

readonly type :string

Type identifier.

Inherited From:

x :number

The first component of this Vector.

Inherited From:

y :number

The second component of this Vector.

Inherited From:

z :number

The third component of this Vector.

Inherited From:

Members below are inherited from the parent class.

w :number

The fourth component of this Vector.

Inherited From:

METHODS

clone() returns {Vector3}

Returns a new Vector3 with the same component values as this Vector.

Returns:
Vector3
Inherited From:

copy(vector)

Sets all of this Vector's component values to the component values of the given Vector.

Parameters:
Name Type Attributes Default Description
vector Vector3    

The Vector to copy component values from.

Inherited From:

isEqual(vector) returns {boolean}

Determines if all of the components of this Vector are equal to their counterparts in the given Vector.

Parameters:
Name Type Attributes Default Description
vector Vector3    

The Vector to compare against.

Returns:
boolean
Inherited From:

multiply(vector)

Multiplies all components of this Vector by the given Vector.

Parameters:
Name Type Attributes Default Description
vector Vector3    

The Vector to multiply this Vector by.

Inherited From:

multiplyByValues(x (opt), y (opt), z (opt))

Multiplies the components of this Vector by the values provided.

Parameters:
Name Type Attributes Default Description
x number <optional>
 

The value to multiply the first component by. [DEFAULT: 1]

y number <optional>
 

The value to multiply the second component by. [DEFAULT: 1]

z number <optional>
 

The value to multiply the third component by. [DEFAULT: 1]

Inherited From:

scaleByFactor(factor)

Multiplies all Vector components by the given factor.

Parameters:
Name Type Attributes Default Description
factor number    

The value to multiply the Vector components by.

Inherited From: