javavector
v1.0.3
Published
Java Vector3 and Vector2 in javascript
Downloads
4
Maintainers
Readme
About
If you want to use Vector3 in javascript but don't know how here is a NPM package for you :) It's easy to use.
Installation
npm install vector3
Usage
const { Vector2, Vector3 } = require('javavector');
//Vector3 3
const MyVector3 = new Vector3(0, 1, 0);
//Vector 2
const MyVector2 = new Vector2(0, 2);
//Install VisualStudioCode to see all the available functions.