Is it possible to load a pre-calculated Truncated Signed Distance Field for collision calculation? #2836
Replies: 1 comment 4 replies
-
That's an interesting question. Why do you want it to be truncated? We do gradient descent on the SDF for collisions, so I'm not sure if it's going to work if it's truncated. But anyway, we don't have an easier way than writing your custom plugin. We would like to support standard SDF formats like VDB natively in the future but we haven't had the time to work on it yet. But it sounds like you have an STL surface representation so you can just prescribe |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Intro
Hi! I'm developing a sort of surgical simulator and looking to use SDF for loading the anatomy due to many concave features.
My setup
MuJoCo 3.3.5, Python API, Windows
My question
Is there a way to load a pre-calculated truncated SDF? I built a utility that processes STL and generates a truncated SDF based on fine tuned parameters. I see that in the latest 3.3.5 version SDF is now built in and no longer a plugin.
Minimal model and/or code that explain my question
Image of my Truncated SDF field (cyan is outside, violet is inside)
Confirmations
Beta Was this translation helpful? Give feedback.
All reactions