rdeits / MeshCat.jl

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

Can this package connect to public IP? #174

Closed PikaPei closed 4 years ago

PikaPei commented 4 years ago

Currently, when using vis = Visualizer(), it will connect to localhost. I just wonder whether it can connect to other IP or not? I tried the following code but found no effect.

using Sockets
vis = Visualizer(MeshCat.CoreVisualizer(IPv4(0)), ["meshcat"])

Thank you!

rdeits commented 4 years ago

That should have worked. It looks like I'm just accidentally dropping the host parameter when starting the Mux.jl server. I'll fix that as soon as I can.

PikaPei commented 4 years ago

Thank you for such a quick reply and fix. I'll look forward to the new release!