npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@b3gm/algebr4

v1.0.2

Published

Linear algebra objects for up to 4 dimensions

Downloads

10

Readme

algebr4

Vectors and Matrices for up to 4 dimensions written in typescript.

Builds

The packaged npm version provides different builds for different module systems:

The default build is for ES6 modules which can be used for angular projects among others:

import { Vec3 } from '@b3gm/algebr4';

const v = new Vec3(3.0, 4.0, 5.0);

If you want to use the library in the backend for a regular node project, you will have to import the commonjs build:

import { Vec3 } from '@b3gm/algebr4/dist/commonjs/algebr4';

const v = new Vec3(3.0, 4.0, 5.0);

And finally there is a bundled build for direct use in the browser, that creates the top level algebr4 namespace within the global namespace in dist/bundle/algebr4.bundle.js.

<script src="https://cdn.jsdelivr.net/npm/@b3gm/[email protected]/dist/bundle/algebr4.bundle.js"></script>
<script type="text/javascript">
  var v = new algebr4.Vec3(3.0, 4.0, 5.0);
</script>

General Naming Conventions

Typescript interfaces use the following prefixes:

  • L - Literal: base interfaces for all other interfaces and classes. All methods take Literals as input. Those interfaces contain no methods and only declare the used fields. This facilitates assignment and usage of object literals or JSON deserialized objects as input for all vector and matrix methods.
  • R - Readable: extend Literals. Contain no methods, that change the internal state of the object. All methods create and return new readable objects. Note that this does not mean Immutable, since the object might still be writable.
  • W - Writable: extend Readables. All methods from the Readable interface should be overwritten to return writables instead of readables. Most methods from the readable interface have "Self" suffixed overloads, that work on the object itself and update their internal state instead of returning a new object.

Unsafe Methods

Some methods have overloads, that are suffixed with Unsafe. They only work correctly if their inputs satisfy certain criteria, but no such checks are undertaken upon executing those. For vectors and quaternions, this means, they have to have a length of 1. Rotation matrices need to have a determinante of +-1 and need to be orthogonal.

Using unsafe methods with parameters, that do not satisfy those criteria, will therefore yield unexpected results, but can safe performance if for instance a vector's length is already guaranteed to be 1.0 by surrounding code.