Code Monkey home page Code Monkey logo

Comments (5)

gkjohnson avatar gkjohnson commented on September 23, 2024

With over 260 million float elements for both the position and normal buffers you're model is over 2GB in memory - that's just about at the memory cap for most desktop browser tabs. There's not a lot this project can do if there's no browser memory left and it crashes on a buffer allocation.

Depending on your use case you can artificially increase the memory cap with command line flags and preprocess the model BVH to save to disk before loading it so it doesn't have to be generated on load.

from three-mesh-bvh.

Sea-DH1 avatar Sea-DH1 commented on September 23, 2024

Hello, how to preprocess the model BVH?

from three-mesh-bvh.

gkjohnson avatar gkjohnson commented on September 23, 2024

Hello, how to preprocess the model BVH?

There's no prebuilt tool for this so you'll have to implement the file storage and loading yourself. But the basic process would be:

  • Generate the BVH offline using something like Node or Puppeteer with a higher memory cap
  • Use the serialize to get a minimal, serialized version of the bvh and associated buffers.
  • Save the data and buffers in an optimal way (ie don't just JSON stringify because the typed arrays will be expanded to arrays)
  • Load the bvh file into the browser, read it into an object shaped the same as the originally serialized version.
  • Deserialize the BVH using the deserialize function.

from three-mesh-bvh.

Sea-DH1 avatar Sea-DH1 commented on September 23, 2024

When using Serialization and Deserialization, an error will be reported when intersectsGeometry, indirect is true

This is a demo
demo

from three-mesh-bvh.

gkjohnson avatar gkjohnson commented on September 23, 2024

Thanks for the easy repro. Just fixed the issue in #664 - it'll be available in the next release.

from three-mesh-bvh.

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.