You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
522 B
12 lines
522 B
// Maximum number of points to store for each object's trajectory.
|
|
export const MAX_TRAJECTORY_LENGTH = 50;
|
|
// Frames per second for the video playback.
|
|
export const VIDEO_FPS = 30;
|
|
// Minimum X-coordinate for the radar plot in meters.
|
|
export const RADAR_X_MIN = -20;
|
|
// Maximum X-coordinate for the radar plot in meters.
|
|
export const RADAR_X_MAX = 20;
|
|
// Minimum Y-coordinate for the radar plot in meters.
|
|
export const RADAR_Y_MIN = 0;
|
|
// Maximum Y-coordinate for the radar plot in meters.
|
|
export const RADAR_Y_MAX = 80;
|