rdeits / MeshCat.jl

WebGL-based 3D visualizer in Julia
MIT License
233 stars 42 forks source link

Does the Julia interface also support 0MQ? #197

Closed ad1t7a closed 3 years ago

ad1t7a commented 3 years ago

I want to send point cloud data from a C++ library to meshcat. Would a ZMQ interface work? What would be the preferred method to display a point cloud in meshcat using C++?

rdeits commented 3 years ago

Yes, that's definitely possible. The folks over at Google Research actually have an open-source example of using meshcat over ZMQ from C++ here: https://github.com/google-research/tiny-differentiable-simulator/tree/master/src/visualizer/meshcat https://github.com/google-research/tiny-differentiable-simulator/blob/master/examples/tiny_urdf_parser_meshcat_example.cpp

ad1t7a commented 3 years ago

Thanks a lot!