0.0.1-dev.8 • Published 14 days ago

mraph v0.0.1-dev.8

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
14 days ago

Mraph.js

npm GitHub last commit

Mraph.js is my personal rendering engine for drawing geometric shapes in a browser, inspired by Manim
Github | NPM | Examples

Usage

Install with npm:

npm install --save mraph

or use yarn:

yarn add mraph

A short example:

Once you installed, try this example below.

import { Layer, Point, Vector } from "mraph";

// Create a new Layer
const layer = new Layer().appendTo(document.body);

// Create a new Point
const point = new Point(0, 0);

// Add the point to layer
layer.add(point);

// Set the acceleration of the point
point.a = new Vector(0.5, 1, 0);

// Start animation
layer.play();

Input this at any editor that you prefer, then you would see a small white ball moving with a certain acceleration!

See more

Contribution

Feel free to contribute to this repo

0.0.1-dev.8

14 days ago

0.0.1-dev.7

23 days ago

0.0.1-dev.6

1 month ago

0.0.1-dev.5

1 month ago

0.0.1-dev.4

2 months ago

0.0.1-dev.3

3 months ago

0.0.1-dev.2

4 months ago

0.0.1-dev.1

5 months ago

1.0.2-alpha.1

9 months ago

1.0.2

9 months ago

1.0.1

11 months ago

1.0.0

11 months ago