GithubHelp home page GithubHelp logo

d3-wavy's Introduction

d3-wavy

d3-wavy is a simple and customizable React component library to build faster and beautiful sine waves using D3.

Each wave has an adjustable amplitude, frequency, and position. Visually, the speed and starting placement of the wave can be modified as well. Multiple wave components can be created, then added together. By doing this, a single wave component is built in D3, which represents the sum of the two (or more) waves using additive synthesis.

In the future, there will be different types of waves that can be specified and built, such as saw waves and square waves.

Installation

// with npm
npm install d3-wavy

Usage

Basic Sine Wave

import * as React from 'react';
import ReactDOM from 'react-dom';

function App() {
  // create a single wave
  <Waveform amplitude={[1]} frequency={[5]} height={200} width={600} />
}

ReactDOM.render(<App />, document.querySelector('#app'));

Additive Synthesis

import * as React from 'react';
import ReactDOM from 'react-dom';

function App() {
  // create a single wave
  // combine two waves together
  <Waveform amplitude={[0.5, 0.5]} frequency={[5, 10]} height={200} width={600} />
}

ReactDOM.render(<App />, document.querySelector('#app'));

License

This project is licensed under the terms of the MIT license.

d3-wavy's People

Contributors

dkharazi avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.