-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"Rotations" no longer defined on CoordinateTransformations #2
Comments
Thanks! Yeah, that seems to be exactly the reason why. Are you using this package? I am not currently developing it, but would certainly welcome contributions / encourage a fork. |
I was trying it out - I'd love to use Julia for writing robot planners, but I haven't found a good package for collision checking yet. I use Bullet in C++ and Python, so I'd be interested in wrapping it for Julia. This seemed like it might be a good option. Do you think the changes necessary to get this package working would be minimal, or might it be better to start from a blank slate? |
Getting the C interface working I'd say is pretty minimal. The package also demonstrates how to access Bullet with Cxx, and this is harder to get working. The C interface, if I'm recalling, is via Bullet's "command processor". So there's some overhead. Whether this is significant for the purposes of collision checking, I'm not sure, but I do prefer the idea of accessing the functions directly, instead of using Bullet's bespoke IPC. I came across https://github.com/ros-industrial-consortium/tesseract/tree/master/tesseract_collision . I think they perhaps copied Bullet and FCL collision checking code (or do they just interface to it? I didn't grasp it.) In any case, it might be worth interfacing to that instead, using A side issue is that anything that uses Bullet should really rely on https://github.com/JuliaPackaging/BinaryBuilder.jl . It looks like I had tried but ran into some issue due to OpenGL: Bullet.jl/deps/binary_builder_deployer.jl Lines 1 to 17 in ed9072b
I don't know if that issue still persists today. |
Thanks, this is all very helpful! If I end up having time to try either fixing this package or making my own Bullet wrapper, I'll let you know! Feel free to close this issue if you'd like, or leave it in case anyone else comes along trying to use/revive the package. |
This line
Bullet.jl/src/bullet_julia_types.jl
Line 9 in ed9072b
Rotations
is not defined onCoordinateTransformations
(possibly due to JuliaGeometry/CoordinateTransformations.jl#63 or related).The text was updated successfully, but these errors were encountered: