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

Vector1(x (opt)) extends VectorBase

An object with 1 numeric property (x).

new Vector1(x (opt))

An object with 1 numeric property (x).

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

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

MEMBERS

addMotion :Vector1AddMotion

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

swoop :Vector1Swoop

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

Members below are inherited from the parent class.

dimension :number

The number of components this Vector has

Inherited From:

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:

METHODS

Methods below are inherited from the parent class.

clone() returns {Vector1}

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

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

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 Vector1    

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 Vector1    

The Vector to multiply this Vector by.

Inherited From:

multiplyByValues(x (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]

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: