Skip to content

Commit 44c5f33

Browse files
committed
test router3d_visualize.html
1 parent ccee1f8 commit 44c5f33

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

router3d_visualize.html

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -129,31 +129,31 @@ <h3>3D Route Planning</h3>
129129
// Define keepout zones
130130
const keepouts = [
131131
{
132-
position: { x: 567.7, y: 0, z: 367.9 },
133-
size: { x: 900.1, y: 5, z: 1500.2 },
132+
position: { x: 1600, y: 0, z: 1000 },
133+
size: { x: 300, y: 50, z: 500 },
134134
visible: true
135135
},
136136
{
137-
position: { x: 237.2, y: 0, z: 217.7 },
138-
size: { x: 900.1, y: 5, z: 900.1 },
137+
position: { x: 500, y: 0, z: 600 },
138+
size: { x: 300, y: 50, z: 300 },
139139
visible: true
140140
}
141141
];
142142

143143
// Define nodes based on the SVG data
144144
const nodes = [
145145
{ id: 'S', type: NODE_TYPES.SOURCE, position: { x: 27, y: 0, z: 1728 } },
146-
{ id: 'T1', type: NODE_TYPES.TERMINAL, position: { x: 2106, y: 1, z: 704 } },
147-
{ id: 'S1', type: NODE_TYPES.STEINER, position: { x: 1620, y: 2, z: 704 } },
148-
{ id: 'T2', type: NODE_TYPES.TERMINAL, position: { x: 1620, y: 3, z: 320 } },
146+
{ id: 'T1', type: NODE_TYPES.TERMINAL, position: { x: 2106, y: 10, z: 704 } },
147+
{ id: 'S1', type: NODE_TYPES.STEINER, position: { x: 1620, y: 20, z: 704 } },
148+
{ id: 'T2', type: NODE_TYPES.TERMINAL, position: { x: 1620, y: 30, z: 320 } },
149149
{ id: 'T3', type: NODE_TYPES.TERMINAL, position: { x: 1863, y: 0, z: 1856 } },
150-
{ id: 'S2', type: NODE_TYPES.STEINER, position: { x: 1134, y: 1, z: 832 } },
151-
{ id: 'T4', type: NODE_TYPES.TERMINAL, position: { x: 1134, y: 2, z: 832 } },
152-
{ id: 'S3', type: NODE_TYPES.STEINER, position: { x: 1134, y: 3, z: 704 } },
150+
{ id: 'S2', type: NODE_TYPES.STEINER, position: { x: 1134, y: 10, z: 832 } },
151+
{ id: 'T4', type: NODE_TYPES.TERMINAL, position: { x: 1134, y: 20, z: 832 } },
152+
{ id: 'S3', type: NODE_TYPES.STEINER, position: { x: 1134, y: 30, z: 704 } },
153153
{ id: 'T5', type: NODE_TYPES.TERMINAL, position: { x: 648, y: 0, z: 192 } },
154-
{ id: 'S4', type: NODE_TYPES.STEINER, position: { x: 1134, y: 1, z: 1216 } },
155-
{ id: 'T6', type: NODE_TYPES.TERMINAL, position: { x: 1377, y: 2, z: 1216 } },
156-
{ id: 'S5', type: NODE_TYPES.STEINER, position: { x: 405, y: 3, z: 1344 } },
154+
{ id: 'S4', type: NODE_TYPES.STEINER, position: { x: 1134, y: 10, z: 1216 } },
155+
{ id: 'T6', type: NODE_TYPES.TERMINAL, position: { x: 1377, y: 20, z: 1216 } },
156+
{ id: 'S5', type: NODE_TYPES.STEINER, position: { x: 405, y: 30, z: 1344 } },
157157
{ id: 'T7', type: NODE_TYPES.TERMINAL, position: { x: 405, y: 0, z: 1344 } }
158158
];
159159

0 commit comments

Comments
 (0)