Git Product home page Git Product logo

bvh-tree's Introduction

bvh-tree

A Bounding Volume Hierarchy data structure written in javascript, for spatial indexing of large triangle meshes. Enables fast intersection of rays with a triangle mesh.

Demo

ray-mesh intersection

Usage

Construct a BVH from a list of triangles

var triangle0 = [
  {x: 0.0, y: 0.0, z: 0.0},
  {x: 1000.0, y: 0.0, z: 0.0},
  {x:1000.0, y:1000.0, z:0.0}
];

var triangle1 = [
  {x: 0.0, y: 0.0, z: 0.0},
  {x: 2000.0, y: 0.0, z: 0.0},
  {x:2000.0, y:1000.0, z:0.0}
];

// the maximum number of triangles that can fit in a node before splitting it.
var maxTrianglesPerNode = 7; 

var bvh = new bvhtree.BVH([triangle0, triangle1], maxTrianglesPerNode);

Intersect a ray with the BVH

// origin point of the ray
var rayOrigin = {x: 1500.0, y: 3.0, z:1000};

// direction of the ray. should be normalized to unit length
var rayDirection = {x: 0, y:0, z:-1};

// if 'true', only intersections with front-faces of the mesh will be performed
var backfaceCulling = true;

var intersectionResult = bvh.intersectRay(rayOrigin, rayDirection, backfaceCulling);

intersectsRay() returns an array of intersection result objects, one for each triangle that intersected the ray. Each object contains the following properties:

  • triangle the triangle which the ray intersected
  • triangleIndex the position of the interescting triangle in the input triangle array provided to the BVH constructor.
  • intersectionPoint the interesection point of the ray on the triangle.

License

Copyright (c) 2015 Ben Raziel. MIT License

bvh-tree's People

Contributors

benraziel avatar

Watchers

Jakub Pola 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.