MCPcopy Index your code
hub / github.com/SpectacularAI/sdk / CameraMode

Class CameraMode

python/cli/visualization/visualizer.py:14–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12from .visualizer_renderers.renderers import *
13
14class CameraMode(Enum):
15 AR = 0
16 THIRD_PERSON = 1
17 TOP_VIEW = 2
18
19 def next(self):
20 return CameraMode((self.value + 1) % 3)
21
22class ColorMode(Enum):
23 ORIGINAL = 0

Callers 1

nextMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected