Join our webinar on Wednesday, June 26, at 1pm EDTHow Chia Mitigates Risk in the Crypto Industry.Register
Socket
Socket
Sign inDemoInstall

@loaders.gl/math

Package Overview
Dependencies
8
Maintainers
9
Versions
302
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @loaders.gl/math

Experimental math classes for loaders.gl


Version published
Weekly downloads
183K
increased by11.73%
Maintainers
9
Created
Weekly downloads
 

Package description

What is @loaders.gl/math?

@loaders.gl/math is a library that provides a collection of mathematical utilities and data structures for handling 3D graphics and geospatial data. It includes functions for vector and matrix operations, geometric transformations, and other mathematical computations commonly used in computer graphics and geospatial applications.

What are @loaders.gl/math's main functionalities?

Vector Operations

This feature allows you to perform vector operations such as addition, subtraction, and normalization. The code sample demonstrates how to create two vectors and add them together.

const { Vector3 } = require('@loaders.gl/math');

const v1 = new Vector3(1, 2, 3);
const v2 = new Vector3(4, 5, 6);
const v3 = v1.add(v2);
console.log(v3); // Vector3 { x: 5, y: 7, z: 9 }

Matrix Operations

This feature provides matrix operations such as multiplication, inversion, and transformation. The code sample shows how to create an identity matrix, apply a translation, and multiply two matrices.

const { Matrix4 } = require('@loaders.gl/math');

const m1 = new Matrix4().identity();
const m2 = new Matrix4().translate([1, 2, 3]);
const m3 = m1.multiplyRight(m2);
console.log(m3); // Matrix4 { elements: [1, 0, 0, 1, 0, 1, 0, 2, 0, 0, 1, 3, 0, 0, 0, 1] }

Geometric Transformations

This feature allows you to apply geometric transformations such as rotation, scaling, and translation to points and vectors. The code sample demonstrates how to rotate a point around the X-axis.

const { Vector3, Matrix4 } = require('@loaders.gl/math');

const point = new Vector3(1, 1, 1);
const transform = new Matrix4().rotateX(Math.PI / 4);
const transformedPoint = point.transform(transform);
console.log(transformedPoint); // Vector3 { x: 1, y: 0, z: 1.4142135623730951 }

Other packages similar to @loaders.gl/math

Changelog

Source

v4.0.0-beta.7

  • fix(i3s): Remove luma.gl dependency (#2727)
  • feat(flatgeobuf): Upgrade to latest flatgeobuf (#2684)
  • feat(lerc): Break out LERCLoader into its own module (size and bundling issues) (#2724)
  • chore(polyfills): Bump deps (#2723)
  • feat(polyfills): Add installFilePolyfills on Node.js (#2722)
  • fix(i3s): I3SContentLoader regression (#2713)

Readme

Source

@loaders.gl/math (Experimental, Temporary)

loaders.gl is a collection of framework-independent 3D and geospatial parsers and encoders.

This module contains math utilities for the @loaders.gl3d-tiles module. As they mature, these will likely be moved to a math framework (e.g. math.gl).

This code is a fork of a subset of the Cesium math library whcih is Apache 2 licensed.

For documentation please visit the website.

Keywords

FAQs

Last updated on 24 Oct 2023

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