File tree Expand file tree Collapse file tree 4 files changed +9
-7
lines changed
Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 11# viser
22
3- ` viser ` is a library for interactive 3D visualization + Python, inspired by the
4- best bits of the
3+ ** [ [ API Reference] ( https://brentyi.github.io/viser ) ] **
4+
5+ ` viser ` is a library for interactive 3D visualization + Python, inspired by
6+ our favorite bits of the
57[ Nerfstudio viewer] ( https://github.com/nerfstudio-project/nerfstudio ) ,
68[ Pangolin] ( https://github.com/stevenlovegrove/Pangolin ) ,
79[ rviz] ( https://wiki.ros.org/rviz/ ) , and
Original file line number Diff line number Diff line change 22
33| mypy| | nbsp| | pyright| | nbsp| | typescript| | nbsp| | versions|
44
5- ` viser ` is a library for interactive 3D visualization + Python, inspired by the
6- best bits of the
5+ ` viser ` is a library for interactive 3D visualization + Python, inspired by
6+ our favorite bits of the
77[ Nerfstudio viewer] ( https://github.com/nerfstudio-project/nerfstudio ) ,
88[ Pangolin] ( https://github.com/stevenlovegrove/Pangolin ) ,
99[ rviz] ( https://wiki.ros.org/rviz/ ) , and
Original file line number Diff line number Diff line change 1- """Websocket -based communication infrastructure.
1+ """:mod:`viser.infra` provides WebSocket -based communication infrastructure.
22
33We implement abstractions for:
4- - Launching a websocket +HTTP server on a shared port.
4+ - Launching a WebSocket +HTTP server on a shared port.
55- Registering callbacks for connection events and incoming messages.
66- Asynchronous message sending, both broadcasted and to individual clients.
77- Defining dataclass-based message types.
Original file line number Diff line number Diff line change 1111import numpy as onp
1212
1313if TYPE_CHECKING :
14- from ._core import ClientId
14+ from ._infra import ClientId
1515else :
1616 ClientId = Any
1717
You can’t perform that action at this time.
0 commit comments