Skip to content

JordanDelcros/Vector3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

npm version

Vector3

Vector3 JavaScript library

Doc

constructor

	new Vector3(x, y, z);
	// or
	new Vector(otherVector);

add

	vector.add(x, y, z);
	// or
	vector.add(otherVector);

substract

	vector.substract(x, y, z);
	// or
	vector.substract(otherVector);

multiply

	vector.multiply(x, y, z);
	// or
	vector.multiply(otherVector);

multiplyBy

	vector.multiplyBy(number);

divide

	vector.divide(x, y, z);
	// or
	vector.divide(otherVector);

divideBy

	vector.divideBy(number);

length

	vector.length();

dot

	vector.dot(otherVector);

cross

	vector.cross(otherVector);

normalize

	vector.normalize();

angle

	vector.angle(otherVector);

equal

	vector.equal(otherVector);

rotate

	vector.rotate(x, y, z);
	// or
	vector.rotate(otherVector);

clone

	vector.clone(otherVector);

About

Vector3 JavaScript library

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published