Socket
Socket
Sign inDemoInstall

vector2d

Package Overview
Dependencies
0
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    vector2d

2D Vector library offering Float32Array, Array or standard Object based vectors.


Version published
Weekly downloads
966
decreased by-49.58%
Maintainers
1
Install size
169 kB
Created
Weekly downloads
 

Changelog

Source

3.0.0 / 2018-05-24

  • Convert codebase to TypeScript
  • Add support for TypeScript
  • Expose AbstractVector class for extension if desired
  • Enforce need for new keyword when creating vectors
  • Publish code coverage to Coveralls
  • Increase code coverage
  • Test against multiple Node.js versions in CI
  • Add generated documentation

2.x

  • Build using browserify
  • Removed static methods from exposed API
  • Various performance improvements

1.x

  • Here be dragons

Readme

Source

Vector2D - 2D Vectors for TypeScript & JavaScript

Travis CI Coverage Status TypeScript

Documentation

Detailed documentation is available here.

Installation and Usage

Install via npm:

npm install vector2d

Usage with JavaScript:

var Vec2D = require('vector2d');

const v = new Vec2D.Vector(2, 3)

Usage with TypeScript/ES6:

import * as Vec2D from 'vector2d'

const v = new Vec2D.Vector(2, 3)

It's also possible to use this module directly in the browser through window.Vec2D. Simply clone the code locally and run the following:

npm install
npm run browserify
npm run uglify

This will produce vec2d.js and vec2d.min.js files in dist/ the folder of the repository that you can include via <script> tags.

About

An easy to use 2D Vector library with 3 methods of Vector representation to optimise for your particular use case.

Vector2D provides 3 main modes of Vector representations (classes):

  • Vec2D.ArrayVector
  • Vec2D.Float32Vector
  • Vec2D.Vector

The different representations is really more of an experiment than a necessity since for most users Vector or ArrayVector types will be fine.

Regardless of the class used all methods can be used in the same manner and you don't need to worry about the underlying representation.

API

Vector Instance Methods

All instance methods modify the underlying vector where possible. For example calling multiplyByScalar will multiply the vector x and y components by the provided number and return the updated vector itself (a reference to this) rather than a new instance. The benefit if this is that less objects are created which reduces garbage collection and makes chaining possible.

If you don't want to modfy the vector itself you can call v.clone() and modify the newly returned vector instead. Here's an example.

const av0 = new Vec2D.ArrayVector(10, 0)
const av1 = new Vec2D.ArrayVector(0, 5)

// Methods are chainable where you'd expect
const newVec = av0.clone().add(av1);
newVec.toString(); // (10, 5)

// Original vector hasn't changed!
av0.toString(); // (10, 0)
setAxes(x, y)

Set the x and y values of this vector.

toString()

Convert vector to a String with format "(0, 0)"

toArray()

Convert vector to standard JavaScript Array [2.823, 1.541]

toObject()

Covert vector to a JSON object with format { x: 1.4, y: 8 }.

add(vector)

Modify this vector by adding the provided vector to it.

subtract(vector)

Modify this vector by subtracting the provided vector from it.

equals(vector)

Check does this vector equal the provided vector.

mulV(vector)

Multiply this vector by provided vector.

divV(vector)

Divide this vector by provided vector.

mulS(number)

Multiply this vector by a number.

divS(number)

Divide this vector by a number.

dot(vector)

Returns dot product from this vector and the provided vector.

cross(vector)

Returns cross product from this vector and the provided vector.

reverse()

Reverse the values in this vector.

abs()

Convert stored values to absolute values.

distance(vec)

Find the distance between this vector and the provided vec;

zero()

Set vector values to 0.

rotate(radians)

Rotate vector by provided radians.

clone()

Returns a clone of this vector.

Keywords

FAQs

Last updated on 25 May 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc