@azleur/vec2-random
TypeScript icon, indicating that this package has built-in type declarations

0.1.3 • Public • Published

Random utilities for 2D vectors

This is a Work In Progress!

This TypeScript module provides random number generation in 2D space, with the help of vec2.

To start serving vectors, create a new provider:

const provider = new RngVec2Provider();

const vector: Vec2 = provider.Uniform(); // 0 <= x,y <= 1.
...

The provider wraps a random number generator. Any function () => number that returns uniform random values in the range [0, 1) will do. The module random provides some defaults.

Boxes and balls

You can generate uniformly distributed samples in different shapes:

const inBox = provider.Uniform(1, 1, 3, 4); // Vector in [1, 3] x [1, 4].
const inBall = provider.BallUniform(2); // Vector in ball of center (0, 0) and radius 2.
const inRadius = provider.RingUniform(5, 7); // Vector in "doughnut", radius in [5, 7].

Gauss love

You can sample the standard normal distribution:

const gauss = provider.Normal();
gauss.x; // Normal distribution with mean 0, variance 1.
gauss.y; // Independent from gauss.x, same distribution.

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
0.1.30latest

Version History

VersionDownloads (Last 7 Days)Published
0.1.30
0.1.20
0.1.10
0.1.00

Package Sidebar

Install

npm i @azleur/vec2-random

Weekly Downloads

0

Version

0.1.3

License

ISC

Unpacked Size

6.21 kB

Total Files

6

Last publish

Collaborators

  • azleur