New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

matter-js-gif-renderer

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

matter-js-gif-renderer

Renderer for Matter.js, that outputs a gif.

latest
Source
npmnpm
Version
1.0.3
Version published
Maintainers
1
Created
Source

Matter.js GIF Renderer

Badge Example

Introduction

Node.js package that creates a GIF output of Matter.js engine (instead of within browser). Based on Basic Renderer within Matter.js package for Node.js. Uses gif-encoder and canvas node packages.

Installation

npm i matter-js-gif-renderer

Usage

You can use various GIF Renderer specific options in Render.create.options.

  • quality - image quality. default: 10
  • repeat - 0 for repeat, -1 for no-repeat. default: 0
  • frameDelay - frame delay in ms. default: 1000/60
  • outputFile - output file name. default: 'myanimated.gif'
  • skipFrames - amount of frames to skip. default: 0

Example

Most of the code is from the matter-js docs for brevity.

const Matter = require('matter-js')
const { GifRenderer } = require('matter-js-gif-renderer');

// module aliases
var Engine = Matter.Engine,
    Runner = Matter.Runner,
    Render = GifRenderer, // changed line
    Bodies = Matter.Bodies,
    Composite = Matter.Composite;

// create an engine
var engine = Engine.create();

// create a renderer
var render = Render.create({
    engine: engine,
    options: {
        wireframes: false
    }
});

// create two boxes and a ground
var boxA = Bodies.rectangle(400, 200, 80, 80);
var boxB = Bodies.rectangle(450, 50, 80, 80);
var ground = Bodies.rectangle(400, 610, 810, 60, { isStatic: true });

// add all of the bodies to the world
Composite.add(engine.world, [boxA, boxB, ground]);

// run the renderer
Render.run(render);

// create runner
var runner = Runner.create();

// run the engine
Runner.run(runner, engine);

Stop the runner (and renderer) with Ctrl+C or add Runner.stop() to your code.

Contribute

Some things may not work from the initial Renderer (no full test suite).

Any contributions are welcome.

License

MIT

Keywords

gif

FAQs

Package last updated on 24 Mar 2023

Did you know?

Socket

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