MCPcopy Create free account
hub / github.com/modelscope/modelscope / plot_xzPlane

Function plot_xzPlane

modelscope/utils/cv/motion_utils/plot_script.py:50–55  ·  view source on GitHub ↗
(minx, maxx, miny, minz, maxz)

Source from the content-addressed store, hash-verified

48 ax.grid(b=False)
49
50 def plot_xzPlane(minx, maxx, miny, minz, maxz):
51 verts = [[minx, miny, minz], [minx, miny, maxz], [maxx, miny, maxz],
52 [maxx, miny, minz]]
53 xz_plane = Poly3DCollection([verts])
54 xz_plane.set_facecolor((0.5, 0.5, 0.5, 0.5))
55 ax.add_collection3d(xz_plane)
56
57 data = joints.copy().reshape(len(joints), -1, 3)
58

Callers 1

updateFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…