Parameters for trajectory.
| 39 | |
| 40 | @dataclasses.dataclass |
| 41 | class TrajectoryParams: |
| 42 | """Parameters for trajectory.""" |
| 43 | |
| 44 | type: TrajetoryType = "rotate_forward" |
| 45 | lookat_mode: LookAtMode = "point" |
| 46 | max_disparity: float = 0.08 |
| 47 | max_zoom: float = 0.15 |
| 48 | distance_m: float = 0.0 |
| 49 | num_steps: int = 60 |
| 50 | num_repeats: int = 1 |
| 51 | |
| 52 | |
| 53 | def compute_max_offset( |
nothing calls this directly
no outgoing calls
no test coverage detected