mirror of
https://github.com/lubosz/overte.git
synced 2025-04-05 20:36:03 +02:00
86 lines
1.8 KiB
JavaScript
86 lines
1.8 KiB
JavaScript
|
|
MAG_BALLS_DATA_NAME = "magBalls";
|
|
|
|
// FIXME make this editable through some script UI, so the user can customize the size of the structure built
|
|
MAG_BALLS_SCALE = 0.5;
|
|
BALL_SIZE = 0.08 * MAG_BALLS_SCALE;
|
|
STICK_LENGTH = 0.24 * MAG_BALLS_SCALE;
|
|
|
|
DEBUG_MAGSTICKS = true;
|
|
|
|
BALL_NAME = "MagBall";
|
|
EDGE_NAME = "MagStick";
|
|
|
|
BALL_RADIUS = BALL_SIZE / 2.0;
|
|
|
|
BALL_DIMENSIONS = {
|
|
x: BALL_SIZE,
|
|
y: BALL_SIZE,
|
|
z: BALL_SIZE
|
|
};
|
|
|
|
BALL_COLOR = {
|
|
red: 128,
|
|
green: 128,
|
|
blue: 128
|
|
};
|
|
|
|
STICK_DIMENSIONS = {
|
|
x: STICK_LENGTH / 6,
|
|
y: STICK_LENGTH / 6,
|
|
z: STICK_LENGTH
|
|
};
|
|
|
|
BALL_DISTANCE = STICK_LENGTH + BALL_SIZE;
|
|
|
|
BALL_PROTOTYPE = {
|
|
type: "Sphere",
|
|
name: BALL_NAME,
|
|
dimensions: BALL_DIMENSIONS,
|
|
color: BALL_COLOR,
|
|
ignoreCollisions: true,
|
|
dynamic: false
|
|
};
|
|
|
|
// 2 millimeters
|
|
BALL_EPSILON = (.002) / BALL_DISTANCE;
|
|
|
|
// FIXME better handling of the line bounding box would require putting the
|
|
// origin in the middle of the line, not at one end
|
|
LINE_DIAGONAL = Math.sqrt((STICK_LENGTH * STICK_LENGTH * 2) * 3) * 1.1;
|
|
LINE_DIMENSIONS = {
|
|
x: LINE_DIAGONAL,
|
|
y: LINE_DIAGONAL,
|
|
z: LINE_DIAGONAL
|
|
}
|
|
|
|
LINE_PROTOTYPE = {
|
|
type: "Line",
|
|
name: EDGE_NAME,
|
|
color: COLORS.CYAN,
|
|
dimensions: LINE_DIMENSIONS,
|
|
lineWidth: 5,
|
|
visible: true,
|
|
ignoreCollisions: true,
|
|
dynamic: false,
|
|
}
|
|
|
|
EDGE_PROTOTYPE = LINE_PROTOTYPE;
|
|
|
|
// var EDGE_PROTOTYPE = {
|
|
// type: "Sphere",
|
|
// name: EDGE_NAME,
|
|
// color: { red: 0, green: 255, blue: 255 },
|
|
// //dimensions: STICK_DIMENSIONS,
|
|
// dimensions: { x: 0.02, y: 0.02, z: 0.02 },
|
|
// rotation: rotation,
|
|
// visible: true,
|
|
// ignoreCollisions: true,
|
|
// dynamic: false
|
|
// }
|
|
|
|
|
|
BALL_EDIT_MODE_ADD = "add";
|
|
BALL_EDIT_MODE_MOVE = "move";
|
|
BALL_EDIT_MODE_DELETE = "delete";
|
|
BALL_EDIT_MODE_DELETE_SHAPE = "deleteShape";
|