├── .github └── workflows │ ├── build.yml │ └── docs.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── conf.py ├── environment.yml ├── frame.rst ├── index.rst ├── point.rst └── textarea.rst ├── examples ├── annotated_frames.py ├── frames.py ├── points.py └── textarea.py ├── gallery ├── frame.png ├── point.png └── textarea.png ├── meshcat_shapes ├── __init__.py ├── frame.py ├── point.py └── textarea.py ├── pyproject.toml ├── tests ├── __init__.py ├── test_frame.py ├── test_point.py └── test_textarea.py └── tox.ini /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.pyo 3 | .coverage 4 | .ropeproject 5 | .tox 6 | _build 7 | dist 8 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/README.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/docs/environment.yml -------------------------------------------------------------------------------- /docs/frame.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/docs/frame.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/point.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/docs/point.rst -------------------------------------------------------------------------------- /docs/textarea.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/docs/textarea.rst -------------------------------------------------------------------------------- /examples/annotated_frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/examples/annotated_frames.py -------------------------------------------------------------------------------- /examples/frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/examples/frames.py -------------------------------------------------------------------------------- /examples/points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/examples/points.py -------------------------------------------------------------------------------- /examples/textarea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/examples/textarea.py -------------------------------------------------------------------------------- /gallery/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/gallery/frame.png -------------------------------------------------------------------------------- /gallery/point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/gallery/point.png -------------------------------------------------------------------------------- /gallery/textarea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/gallery/textarea.png -------------------------------------------------------------------------------- /meshcat_shapes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/meshcat_shapes/__init__.py -------------------------------------------------------------------------------- /meshcat_shapes/frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/meshcat_shapes/frame.py -------------------------------------------------------------------------------- /meshcat_shapes/point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/meshcat_shapes/point.py -------------------------------------------------------------------------------- /meshcat_shapes/textarea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/meshcat_shapes/textarea.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/tests/test_frame.py -------------------------------------------------------------------------------- /tests/test_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/tests/test_point.py -------------------------------------------------------------------------------- /tests/test_textarea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/tests/test_textarea.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/meshcat-shapes/HEAD/tox.ini --------------------------------------------------------------------------------