JSPM

  • Created
  • Published
  • Downloads 7
  • Score
    100M100P100Q34277F
  • License Zlib

A visualisation tool for octrees.

Package Exports

  • octree-helper

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (octree-helper) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Octree Helper

Build status npm version Dependencies

An octree visualisation tool for three.js.

Installation

npm install octree-helper

Usage

The following example uses the sparse-octree module.

import { Scene } from "three";
import { Octree } from "sparse-octree";
import OctreeHelper from "octree-helper";

const scene = new Scene();
const octree = new Octree();
const octreeHelper = new OctreeHelper(octree);

// Render the helper.
scene.add(octreeHelper);

// Rebuild the helper geometry.
octreeHelper.update();

// Destroy the geometry.
octreeHelper.dispose();

A full example can be found here.

Contributing

Maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.