updated defaults

This commit is contained in:
Ladd 2025-12-29 00:48:20 -06:00
parent 34168676a1
commit c63f44ab8f
2 changed files with 6 additions and 4 deletions

View File

@ -19,3 +19,4 @@ TODO
- [ ] Zoom Easing
- [ ] 2-touch Pan & Zoom
- [ ] Multi-touch Mass Create
- [ ] Tool to Clear Traces

View File

@ -28,10 +28,12 @@ export const PATH_TRACES_DASHED = true;
export const PATH_TRACES_DASHED_OPACITY = 1.0;
// SCALING FACTORS
export const MASS_CREATION_RATE = 1E1;
export const MASS_CREATION_RATE = 10;
export const POINTER_HISTORY_SIZE = 20;
export const MOTION_TIME_SCALE = 1;
export const PAN_ACCELERATION = 1E1;
export const MOTION_TIME_SCALE = 0.3;
export const GRAVITATIONAL_CONSTANT = 2E4;
// SIZES
export const ARROWHEAD_LENGTH = 7;
export const ARROWHEAD_WIDTH = 5;
export const OFFSCREEN_OBJECT_LINE_SCALE = 7;
@ -42,7 +44,6 @@ export const ZOOM_IN_FACTOR = 1;
export const ZOOM_OUT_FACTOR = -1;
export const SCALE_POWER_MAX = 8;
export const SCALE_POWER_MIN = -8;
export const GRAVITATIONAL_CONSTANT = 1E4;
// CSS CLASS NAMES
export const TOOL_CLASSNAME = 'lhg-tool';