MeshCat is a remotely-controllable 3D viewer, built on top of three.js. The viewer contains a tree of objects and transformations (i.e. a scene graph) and allows those objects and transformations to be added and manipulated with simple commands. This makes it easy to create 3D visualizations of geometries, mechanisms, and robots. MeshCat.jl runs on macOS, Linux, and Windows.
The MeshCat viewer runs entirely in the browser, with no external dependencies. All files are served locally, so no internet connection is required. Communication between the browser and your Julia code is managed by HTTP.jl. That means that MeshCat should work:
- In a normal browser tab
- Inside a Jupyter Notebook with IJulia.jl
- In a standalone window with Electron.jl
- Inside the Juno IDE
- Inside the VSCode editor with the julia-vscode extension.
- In a standalone window with ElectronDisplay.jl
As much as possible, MeshCat.jl tries to use existing implementations of its fundamental types. In particular, we use:
- Geometric primitives and meshes from GeometryBasics.jl
- Colors from ColorTypes.jl
- Affine transformations from CoordinateTransformations.jl
That means that MeshCat should play well with other tools in the JuliaGeometry ecosystem like MeshIO.jl, Meshing.jl, etc.
For detailed examples of usage, check out demo.ipynb.
To learn about the animation system (introduced in MeshCat.jl v0.2.0), see animation.ipynb.
MeshCat.jl is a successor to DrakeVisualizer.jl, and the interface is quite similar (with the exception that we use setobject! instead of setgeometry!). The primary difference is that DrakeVisualizer required Director, LCM, and VTK, all of which could be difficult to install, while MeshCat just needs a web browser. MeshCat also has better support for materials, textures, point clouds, and complex meshes.
You may also want to check out:
- meshcat-python: the Python implementation of the same protocol
- MeshCatMechanisms.jl extensions to MeshCat.jl for visualizing mechanisms, robots, and URDFs
using MeshCat
vis = Visualizer()
open(vis)
## In an IJulia/Jupyter notebook, you can also do:
# IJuliaCell(vis)using GeometryBasics
using CoordinateTransformations
setobject!(vis, HyperRectangle(Vec(0., 0, 0), Vec(1., 1, 1)))
settransform!(vis, Translation(-0.5, -0.5, 0))using ColorTypes
verts = rand(Point3f, 100_000)
colors = [RGB(p...) for p in verts]
setobject!(vis, PointCloud(verts, colors))Modern browsers don't support the GL_LINEWIDTH parameter, so standard Line and LineBasicMaterial won't show varying line widths. Use FatLine instead for lines with configurable width:
# Simple fat line with custom width
points = [Point(0, 0, 0), Point(1, 0, 0), Point(1, 1, 0), Point(0, 1, 0)]
setobject!(vis[:thick_line], FatLine(points, FatLineMaterial(linewidth=10.0, color=RGB(1, 0, 0))))
# Fat line with per-vertex colors
points = [Point(i*0.1, sin(i*0.1), cos(i*0.1)) for i in 0:20]
colors = [RGB(i/20, 0, 1-i/20) for i in 0:20]
setobject!(vis[:colored_line],
FatLine(FatLineGeometry(points, colors),
FatLineMaterial(linewidth=5.0, vertexColors=true)))
# Dashed fat line
setobject!(vis[:dashed_line],
FatLine(points,
FatLineMaterial(linewidth=5.0, color=RGB(1, 1, 0),
dashed=true, dashSize=0.1, gapSize=0.05)))
# World-space line width (thickness scales with zoom, false by default uses pixel space)
setobject!(vis[:world_line],
FatLine(points,
FatLineMaterial(linewidth=0.02, color=RGB(0, 1, 1), worldUnits=true)))# Visualize a mesh from the level set of a function
using Meshing: MarchingTetrahedra, isosurface
using GeometryBasics: Mesh, Point, TriangleFace, Vec
xr, yr, zr = ntuple(_ -> LinRange(-1, 1, 50), 3) # domain for the SDF evaluation
f = x -> sum(sin, 5 * x)
sdf = [f(Vec(x,y,z)) for x in xr, y in yr, z in zr]
vts, fcs = isosurface(sdf, MarchingTetrahedra(), xr, yr, zr)
mesh = Mesh(Point.(vts), TriangleFace.(fcs))
setobject!(vis, mesh,
MeshPhongMaterial(color=RGBA{Float32}(1, 0, 0, 0.5)))See here for a notebook with the example.
# Visualize the permutahedron of order 4 using Polyhedra.jl
using Combinatorics, Polyhedra
v = vrep(collect(permutations([0, 1, 2, 3])))
using CDDLib
p4 = polyhedron(v, CDDLib.Library())
# Project that polyhedron down to 3 dimensions for visualization
v1 = [1, -1, 0, 0]
v2 = [1, 1, -2, 0]
v3 = [1, 1, 1, -3]
p3 = project(p4, [v1 v2 v3])
# Show the result
setobject!(vis, Polyhedra.Mesh(p3))Using https://github.com/rdeits/MeshCatMechanisms.jl
MeshCat.jl serves the viewer from a Julia artifact (defined in Artifacts.toml). For local development where you're making changes to both the viewer (JavaScript) and the Julia bindings, you can override this by setting an environment variable:
export MESHCAT_LOCAL_VIEWER_PATH="/path/to/meshcat/dist"Or set it in Julia before loading the package:
ENV["MESHCAT_LOCAL_VIEWER_PATH"] = "/path/to/meshcat/dist"
using MeshCat-
Make changes to meshcat viewer:
cd /path/to/meshcat # Edit src/index.js yarn build # Rebuild dist/main.min.js (exits when done) # OR use: yarn watch # Auto-rebuild on changes (keeps running)
-
Test in MeshCat.jl:
- Restart Julia REPL (assets are loaded at precompile time)
- Or force rebuild:
using Pkg; Pkg.build("MeshCat") - Load and test:
using MeshCat; vis = Visualizer(); open(vis)
-
Iterate: Repeat steps 1-2 as needed
Note: The viewer assets (main.min.js, index.html) are read when the package is loaded, so you must restart Julia or rebuild the package after rebuilding the viewer.
When you've finished development and pushed changes to the meshcat viewer repository, you need to update Artifacts.toml to point to the new version:
-
Push your meshcat changes and note the commit hash:
cd /path/to/meshcat git add dist/ git commit -m "Description of changes" git push # Note the commit hash, e.g., 2c8a2b897008779cbf877b052526f1e001983270
-
Update Artifacts.toml using the helper script:
cd /path/to/MeshCat.jl julia --project -e 'include("src/artifact_helper.jl"); artifact_helper("COMMIT_HASH")'
This will output the new artifact configuration. Copy and paste it into
Artifacts.toml.Note: The
artifact_helper.jlscript requires theInflatepackage. If not installed, run:julia --project -e 'import Pkg; Pkg.add("Inflate")' -
Install and test the new artifact:
# Unset local viewer override if set unset MESHCAT_LOCAL_VIEWER_PATH # Clear precompiled cache and install artifact rm -rf ~/.julia/compiled/v1.11/MeshCat julia --project -e 'using Pkg; Pkg.instantiate()' # Test that it works julia --project -e 'using MeshCat; vis = Visualizer(); open(vis)'
-
Commit the updated Artifacts.toml:
git add Artifacts.toml git commit -m "Update meshcat artifact to commit COMMIT_HASH"





