jboth commited on
Commit
65ca2a7
·
verified ·
1 Parent(s): 1a61015

Upload pytorch3d_stub/pytorch3d/vis/plotly_vis.py with huggingface_hub

Browse files
pytorch3d_stub/pytorch3d/vis/plotly_vis.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ """pytorch3d.vis.plotly_vis stub."""
2
+ def plot_scene(plots, **kwargs):
3
+ """Stub – returns None (visualization not needed for inference)."""
4
+ return None
5
+
6
+ def get_camera_wireframe(**kwargs):
7
+ return None
8
+
9
+ AxisArgs = type("AxisArgs", (), {"__init__": lambda self, **kw: None})