Git Product home page Git Product logo

Comments (3)

Mugen87 avatar Mugen87 commented on May 27, 2024

There are some minor side issues like the constructor parameters documentation ordering for BVH.js doesn't match the ordering of the function parameters.

You're right, primitivesPerNode and depth are mixed. Fixed here 96e6e9f. I'll updating the website later.

MeshGeometry.toTriangleSoup() is currently only called in BVH. How about BVH.fromMeshGeometry() only performs the conversion if the geometry is indexed. In this way, the caller can pass in a non-indexed geometry and does not trigger further processing overhead. Something like:

if ( geometry.indices !== null )  geometry = geometry.toTriangleSoup();

I would not worry about the fact that other app logic might change the vertex data. I don't think this is a problem here.

from yuka.

Glidias avatar Glidias commented on May 27, 2024

That's what i did on my end as well. Oh, it looks like you are refering a new primitives = new Array() clone anyway. So, it wouldn't matter even if the original data was mutated..

Anyway, for real-time performance critical stuff, I actually use another BVH implementation (benraziel's) that uses only a single densely packed monolith typed array on the tree itself, while each BVHNOde only uses startIndex to endIndex approach.

from yuka.

Mugen87 avatar Mugen87 commented on May 27, 2024

Solved via 328e3f1.

from yuka.

Related Issues (20)

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.