regl-worldview

0.18.1 • Public • Published

regl-worldview

Worldview is a React library for rendering 2D and 3D scenes using regl.

Visit the homepage to see more guides, examples and APIs.

Quick start

Add regl-worldview to your React project:

npm install --save regl-worldview

If you’re not using a module bundler or package manager we also have a global (“UMD”) build hosted on the unpkg CDN. Simply add the following script tag to the bottom of your HTML file:

<script src="https://unpkg.com/regl-worldview/dist/index.umd.js" />

Then try rendering the basic example:

Image of the basic example

import React from "react";

import Worldview, { Cubes, Axes } from "regl-worldview";

function BasicExample() {
  const markers = [
    {
      pose: {
        orientation: { x: 0, y: 0, z: 0, w: 1 },
        position: { x: 0, y: 0, z: 0 },
      },
      scale: { x: 15, y: 15, z: 15 },
      color: { r: 1, g: 0, b: 1, a: 0.9 },
    },
  ];

  return (
    <Worldview>
      <Cubes>{markers}</Cubes>
      <Axes />
    </Worldview>
  );
}

/regl-worldview/

    Package Sidebar

    Install

    npm i regl-worldview

    Weekly Downloads

    4,214

    Version

    0.18.1

    License

    Apache-2.0

    Unpacked Size

    4.08 MB

    Total Files

    100

    Last publish

    Collaborators

    • brianc
    • esthersweon
    • janpaul123
    • hassoncs
    • davidswinegar
    • robin-pham
    • jtbandes
    • audreyli
    • troygibb
    • dcrawford
    • hhsaez
    • repsilat