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

Vector4(x (opt), y (opt), z (opt), w (opt)) extends Vector4Base

An object with 4 numeric properties (x, y, z, w).

new Vector4(x (opt), y (opt), z (opt), w (opt))

An object with 4 numeric properties (x, y, z, w).

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

The value for the first component. [DEFAULT: 0]

y number <optional>
 

The value for the second component. [DEFAULT: 0]

z number <optional>
 

The value for the third component. [DEFAULT: 0]

w number <optional>
 

The value for the fourth component. [DEFAULT: 0]

MEMBERS

addMotion :Vector4AddMotion

Object housing the built-in 'addMotion' functions for this Vector's components.

swoop :Vector4Swoop

Object housing the built-in swoopers for this Vector's components.

Members below are inherited from the parent class.

inheritedTypes :object

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

Inherited From:

readonly type :string

Type identifier.

Inherited From:

w :number

The fourth component of this Vector.

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:

METHODS

Methods below are inherited from the parent class.

clone() returns {Vector4}

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

Returns:
Vector4
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 Vector4    

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 Vector4    

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 Vector4    

The Vector to multiply this Vector by.

Inherited From:

Example:
// Objective: Use the multiply function to change the color of the white box.
// Expected Result: You will see a denim blue box.

// create a GraphicObject using the WhiteBox asset
let box = new GraphicObject( nc.graphicAssets.WhiteBox, nc.mainScene, "Box" );
// create a color to multiply with the box's default color (1,1,1,1)
let colorMultiplier = new Color( 0, .5, 1, .8 );
// multiplying results in a final color of (0, .5, 1, .8) 
box.fillColor.multiply( colorMultiplier );

multiplyByValues(x (opt), y (opt), z (opt), w (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]

w number <optional>
 

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

Inherited From:

Example:
// Objective: Use the multiplyByValues function to change the color of the white box.
// Expected Result: You will see a denim blue box.

// create a GraphicObject using the WhiteBox asset
let box = new GraphicObject( nc.graphicAssets.WhiteBox, nc.mainScene, "Box" );
// multiplying with the box's default color (1,1,1,1) results in a final color of (0, .5, 1, .8) 
box.fillColor.multiplyByValues( 0, .5, 1, .8  );

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:

Example:
// Objective: Use the scaleByFactor to change the color of the white box.
// Expected Result: You will see a half transparent gray box.

// create a GraphicObject using the WhiteBox asset
let box = new GraphicObject( nc.graphicAssets.WhiteBox, nc.mainScene, "Box" );
// multiplying with the box's default color (1,1,1,1) results in a final color of (.5, .5, .5, .5) 
box.fillColor.scaleByFactor( .5 );