topology-renderer
TypeScript icon, indicating that this package has built-in type declarations

0.1.4 • Public • Published

Topological Renderer

Topological Pattern

A custom WebGL implementation that renders an animated topological pattern based on perlin noise. Makes for a very soothing background for your website.

Check out the demo here

Installation

npm i topology-renderer

Usage

The package contains just one function, topology. It implements the svelte-action interface, but works just fine with vanilla JS as well.

It takes a canvas element, and some options.

import { topology } from 'topology-renderer';

const canvas = document.getElementById('canvas');
const options = {
  background_color: [0, 22, 37],
  line_color: [41, 56, 76],
  speed: 1,
  width: 300,
  height: 150,
}; //These are the default values - All are optional

const { update, destroy } = topology(canvas, options);

You can change the options at any time using the update method returned by the topology function. It overwrites the old options with the new ones.

update({
  background_color: [0, 22, 37],
  line_color: [41, 56, 76],
  speed: 1,
  width: 300,
  height: 150,
});

Note 1: The if the new options do not contain all values, they are not merged with the existing options, but instead with the default values. This follows the svelte-action convention.

Note 2: The function internally copies the options object, so you do not have to worry about mutations on the object you pass in.

To stop the renderer, call the destroy method returned by the topology function.

destroy();

I'ts recommended to call the destroy method when your component is destroyed, to prevent memory leaks.

Readme

Keywords

Package Sidebar

Install

npm i topology-renderer

Weekly Downloads

1

Version

0.1.4

License

none

Unpacked Size

341 kB

Total Files

8

Last publish

Collaborators

  • lurmwoch