0.1.0 • Published 5 years ago

vector-fns v0.1.0

Weekly downloads
2
License
WTFPL
Repository
-
Last release
5 years ago

vector-fns

Utilities for working immutably with vectors

Concept

Inspired by the fantastic date-fns library, I wanted a simple library that could let me work with n-dimensional vectors in an immutable fashion.

Installation

yarn add vector-fns

or

npm install vector-fns

Usage

You can import the entire library and destructure what you need, like so:

import { add, crossProduct } from "vector-fns";

or you can pick what you want:

import { add } from "vector-fns/lib/add";
import { crossProduct } from "vector-fns/lib/crossProduct";