diff --git a/packages/abstract-3d/src/abstract-3d.ts b/packages/abstract-3d/src/abstract-3d.ts index 16884561..2b09918e 100644 --- a/packages/abstract-3d/src/abstract-3d.ts +++ b/packages/abstract-3d/src/abstract-3d.ts @@ -56,22 +56,16 @@ export type Mesh = { readonly geometry: Cylinder | Cone | Box | Line | Text | Polygon | Plane | Tube | Sphere | Shape; }; -// Refactor to THREE.MeshStandardMaterial | DXF export type Material = { - readonly type: MaterialType; readonly normal: string; - readonly hover?: string; - readonly selected?: string; - readonly dxf?: string; readonly opacity?: number; - readonly shininess?: number; + readonly metalness?: number; + readonly roughness?: number; readonly image?: | { readonly type: "HashImage"; readonly hash: string; readonly imageType?: string } | { readonly type: "UrlImage"; readonly url: string; readonly imageType?: string }; }; -export type MaterialType = "Phong" | "Lambert" | "Basic"; - export type Cylinder = { readonly type: "Cylinder"; readonly pos: Vec3; diff --git a/packages/abstract-3d/src/renderers/dxf/color.ts b/packages/abstract-3d/src/renderers/dxf/color.ts new file mode 100644 index 00000000..37bf4d80 --- /dev/null +++ b/packages/abstract-3d/src/renderers/dxf/color.ts @@ -0,0 +1 @@ +export const color = (_color: string): string => "8"; diff --git a/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-box.ts b/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-box.ts index 44a53d1b..5a33dfe6 100644 --- a/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-box.ts +++ b/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-box.ts @@ -1,4 +1,5 @@ import * as A3D from "../../../abstract-3d"; +import { color } from "../color"; import { dxf3DFACE } from "../dxf-encoding"; export function dxfBox(b: A3D.Box, m: A3D.Material, parentPos: A3D.Vec3, parentRot: A3D.Vec3): string { @@ -15,13 +16,13 @@ export function dxfBox(b: A3D.Box, m: A3D.Material, parentPos: A3D.Vec3, parentR const v6 = vec3tr3(half.x, -half.y, -half.z); const v7 = vec3tr3(half.x, half.y, -half.z); const v8 = vec3tr3(-half.x, half.y, -half.z); - + const mat = color(m.normal); return ( - dxf3DFACE(v1, v2, v3, v4, m.dxf) + // front - dxf3DFACE(v5, v6, v7, v8, m.dxf) + // Back - dxf3DFACE(v5, v1, v4, v8, m.dxf) + // Left - dxf3DFACE(v6, v2, v3, v7, m.dxf) + // Right - dxf3DFACE(v8, v7, v3, v4, m.dxf) + // Top - dxf3DFACE(v5, v6, v2, v1, m.dxf) // Bottom + dxf3DFACE(v1, v2, v3, v4, mat) + // front + dxf3DFACE(v5, v6, v7, v8, mat) + // Back + dxf3DFACE(v5, v1, v4, v8, mat) + // Left + dxf3DFACE(v6, v2, v3, v7, mat) + // Right + dxf3DFACE(v8, v7, v3, v4, mat) + // Top + dxf3DFACE(v5, v6, v2, v1, mat) // Bottom ); } diff --git a/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-cone.ts b/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-cone.ts index cee83a93..18a88e4f 100644 --- a/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-cone.ts +++ b/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-cone.ts @@ -1,4 +1,5 @@ import * as A3D from "../../../abstract-3d"; +import { color } from "../color"; import { dxf3DFACE } from "../dxf-encoding"; export function dxfCone(c: A3D.Cone, m: A3D.Material, sides: number, parentPos: A3D.Vec3, parentRot: A3D.Vec3): string { @@ -6,7 +7,7 @@ export function dxfCone(c: A3D.Cone, m: A3D.Material, sides: number, parentPos: const pos = A3D.vec3TransRot(c.pos, parentPos, parentRot); const rot = A3D.vec3RotCombine(parentRot, c.rot ?? A3D.vec3Zero); const vec3tr2 = (x: number, y: number, z: number): A3D.Vec3 => A3D.vec3TransRot(A3D.vec3(x, y, z), pos, rot); - + const mat = color(m.normal); const angleStep = (2 * Math.PI) / sides; let currentAngle = 0; @@ -21,8 +22,7 @@ export function dxfCone(c: A3D.Cone, m: A3D.Material, sides: number, parentPos: if (i !== 0) { const prevBot = botVec3Array[i - 1]!; - dxfString += - dxf3DFACE(botPos, prevBot, currBot, currBot, m.dxf) + dxf3DFACE(currBot, prevBot, topPos, topPos, m.dxf); + dxfString += dxf3DFACE(botPos, prevBot, currBot, currBot, mat) + dxf3DFACE(currBot, prevBot, topPos, topPos, mat); } currentAngle += angleStep; } diff --git a/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-cylinder.ts b/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-cylinder.ts index e1ec653e..73d41679 100644 --- a/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-cylinder.ts +++ b/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-cylinder.ts @@ -1,4 +1,5 @@ import * as A3D from "../../../abstract-3d"; +import { color } from "../color"; import { dxf3DFACE } from "../dxf-encoding"; export function dxfCylinder( @@ -12,7 +13,7 @@ export function dxfCylinder( const pos = A3D.vec3TransRot(c.pos, parentPos, parentRot); const rot = A3D.vec3RotCombine(parentRot, c.rot ?? A3D.vec3Zero); const vec3tr = (x: number, y: number, z: number): A3D.Vec3 => A3D.vec3TransRot(A3D.vec3(x, y, z), pos, rot); - + const mat = color(m.normal); const angleStep = (2 * Math.PI) / sides; let currentAngle = 0; @@ -34,9 +35,9 @@ export function dxfCylinder( const prevBot = botVec3Array[i - 1]!; const prevTop = topVec3Array[i - 1]!; dxfString += - dxf3DFACE(botPos, prevBot, currBot, currBot, m.dxf) + - dxf3DFACE(topPos, prevTop, currTop, currTop, m.dxf) + - dxf3DFACE(currBot, prevBot, prevTop, currTop, m.dxf); + dxf3DFACE(botPos, prevBot, currBot, currBot, mat) + + dxf3DFACE(topPos, prevTop, currTop, currTop, mat) + + dxf3DFACE(currBot, prevBot, prevTop, currTop, mat); } currentAngle += angleStep; } diff --git a/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-plane.ts b/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-plane.ts index 93224ede..1cb3d8a4 100644 --- a/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-plane.ts +++ b/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-plane.ts @@ -1,4 +1,5 @@ import * as A3D from "../../../abstract-3d"; +import { color } from "../color"; import { dxf3DFACE } from "../dxf-encoding"; export function dxfPlane(p: A3D.Plane, m: A3D.Material, parentPos: A3D.Vec3, parentRot: A3D.Vec3): string { @@ -11,6 +12,6 @@ export function dxfPlane(p: A3D.Plane, m: A3D.Material, parentPos: A3D.Vec3, par vec3tr(half.x, -half.y), vec3tr(half.x, half.y), vec3tr(-half.x, half.y), - m.dxf + color(m.normal) ); } diff --git a/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-polygon.ts b/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-polygon.ts index f6ece2c8..81287e0f 100644 --- a/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-polygon.ts +++ b/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-polygon.ts @@ -1,4 +1,5 @@ import * as A3D from "../../../abstract-3d"; +import { color } from "../color"; import { dxf3DFACE } from "../dxf-encoding"; const chunkSize = 4; @@ -11,7 +12,7 @@ export function dxfPolygon(p: A3D.Polygon, m: A3D.Material, parentPos: A3D.Vec3, let i = 0; if (points.length >= chunkSize) { for (i; i < points.length; i += chunkSize) { - polygonString += dxf3DFACE(points[i]!, points[i + 1]!, points[i + 2]!, points[i + 3]!, m.dxf); + polygonString += dxf3DFACE(points[i]!, points[i + 1]!, points[i + 2]!, points[i + 3]!, color(m.normal)); } } @@ -19,13 +20,13 @@ export function dxfPolygon(p: A3D.Polygon, m: A3D.Material, parentPos: A3D.Vec3, const lastArrayLength = points.length - i; switch (lastArrayLength) { case 1: - polygonString += dxf3DFACE(points[i - 2]!, points[i - 1]!, points[i]!, points[i]!, m.dxf); + polygonString += dxf3DFACE(points[i - 2]!, points[i - 1]!, points[i]!, points[i]!, color(m.normal)); break; case 2: - polygonString += dxf3DFACE(points[i - 1]!, points[i]!, points[i + 1]!, points[i + 1]!, m.dxf); + polygonString += dxf3DFACE(points[i - 1]!, points[i]!, points[i + 1]!, points[i + 1]!, color(m.normal)); break; case 3: - polygonString += dxf3DFACE(points[i]!, points[i + 1]!, points[i + 2]!, points[i + 2]!, m.dxf); + polygonString += dxf3DFACE(points[i]!, points[i + 1]!, points[i + 2]!, points[i + 2]!, color(m.normal)); break; default: break; diff --git a/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-shape.ts b/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-shape.ts index 263c32ff..4878f917 100644 --- a/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-shape.ts +++ b/packages/abstract-3d/src/renderers/dxf/dxf-geometries/dxf-shape.ts @@ -1,4 +1,5 @@ import * as A3D from "../../../abstract-3d"; +import { color } from "../color"; import { dxf3DFACE } from "../dxf-encoding"; const chunkSize = 4; @@ -8,10 +9,11 @@ export function dxfPolygon(s: A3D.Shape, m: A3D.Material, parentPos: A3D.Vec3, p const pos = A3D.vec3TransRot(s.pos, parentPos, parentRot); const rot = A3D.vec3RotCombine(parentRot, s.rot ?? A3D.vec3Zero); const points = s.points.map((p) => A3D.vec3TransRot(A3D.vec3(p.x, p.y, 0), pos, rot)); + const mat = color(m.normal); let i = 0; if (points.length >= chunkSize) { for (i; i < points.length; i += chunkSize) { - polygonString += dxf3DFACE(points[i]!, points[i + 1]!, points[i + 2]!, points[i + 3]!, m.dxf); + polygonString += dxf3DFACE(points[i]!, points[i + 1]!, points[i + 2]!, points[i + 3]!, mat); } } @@ -19,13 +21,13 @@ export function dxfPolygon(s: A3D.Shape, m: A3D.Material, parentPos: A3D.Vec3, p const lastArrayLength = points.length - i; switch (lastArrayLength) { case 1: - polygonString += dxf3DFACE(points[i - 2]!, points[i - 1]!, points[i]!, points[i]!, m.dxf); + polygonString += dxf3DFACE(points[i - 2]!, points[i - 1]!, points[i]!, points[i]!, mat); break; case 2: - polygonString += dxf3DFACE(points[i - 1]!, points[i]!, points[i + 1]!, points[i + 1]!, m.dxf); + polygonString += dxf3DFACE(points[i - 1]!, points[i]!, points[i + 1]!, points[i + 1]!, mat); break; case 3: - polygonString += dxf3DFACE(points[i]!, points[i + 1]!, points[i + 2]!, points[i + 2]!, m.dxf); + polygonString += dxf3DFACE(points[i]!, points[i + 1]!, points[i + 2]!, points[i + 2]!, mat); break; default: break; diff --git a/packages/abstract-3d/src/renderers/react/react-dimension.tsx b/packages/abstract-3d/src/renderers/react/react-dimension.tsx index 08f88e5b..8aefb29e 100644 --- a/packages/abstract-3d/src/renderers/react/react-dimension.tsx +++ b/packages/abstract-3d/src/renderers/react/react-dimension.tsx @@ -18,7 +18,7 @@ export const ReactDimensions = React.memo( readonly sceneCenter: A3d.Vec3 | undefined; }): JSX.Element => { const dimensionMaterial = React.useMemo( - () => (dimensions?.material ? : <>), + () => (dimensions?.material ? : <>), [] ); return ( diff --git a/packages/abstract-3d/src/renderers/react/react-group.tsx b/packages/abstract-3d/src/renderers/react/react-group.tsx index 4b80768e..fd1f2f73 100644 --- a/packages/abstract-3d/src/renderers/react/react-group.tsx +++ b/packages/abstract-3d/src/renderers/react/react-group.tsx @@ -121,6 +121,7 @@ export function ReactGroup({ material={m.material} id={id} selectedId={selectedId} + isText={m.geometry.type === "Text"} hoveredId={hoveredId || hoveredIdExternal} materialStateImages={materialStateImages} disabled={disabled} diff --git a/packages/abstract-3d/src/renderers/react/react-hotspot.tsx b/packages/abstract-3d/src/renderers/react/react-hotspot.tsx index 90f9236a..ea515eb9 100644 --- a/packages/abstract-3d/src/renderers/react/react-hotspot.tsx +++ b/packages/abstract-3d/src/renderers/react/react-hotspot.tsx @@ -101,7 +101,7 @@ export function ReactHotSpot({ })} > - + {hotSpotTexts && text && ( diff --git a/packages/abstract-3d/src/renderers/react/react-material.tsx b/packages/abstract-3d/src/renderers/react/react-material.tsx index eebf8f70..c7493ac0 100644 --- a/packages/abstract-3d/src/renderers/react/react-material.tsx +++ b/packages/abstract-3d/src/renderers/react/react-material.tsx @@ -2,6 +2,7 @@ import React from "react"; import { Color, DoubleSide, MaterialParameters, SRGBColorSpace, Texture, TextureLoader } from "three"; import { suspend } from "suspend-react"; import * as A3d from "../../abstract-3d"; +import { shade } from "../shared"; const decreasedOpacity = 0.2; @@ -16,6 +17,7 @@ export function ReactMaterial({ disabled, materialStateImages, state, + isText, }: { readonly material: A3d.Material; readonly id?: string; @@ -24,16 +26,24 @@ export function ReactMaterial({ readonly disabled?: boolean; readonly materialStateImages?: Record; readonly state?: MaterialState | undefined; + readonly isText: boolean; }): JSX.Element { const mat = !state || material.image?.type === "UrlImage" ? material : state === "Accept" - ? acceptMaterial + ? acceptMat : state === "Error" - ? errorMaterial - : warningMaterial; - const color = selectedId === id ? mat.selected : hoveredId === id ? mat.hover : mat.normal; + ? errorMar + : warningMat; + const color = + selectedId === id + ? hoveredId === id + ? shade(-0.4, selectMat.normal) + : selectMat.normal + : hoveredId === id + ? shade(-0.4, mat.normal) + : mat.normal; const opacity = material.opacity !== undefined ? material.opacity : materialDefaults.opacity!; if (material.image?.type === "UrlImage") { return ( @@ -44,51 +54,27 @@ export function ReactMaterial({ /> ); } - - switch (mat.type) { - case "Basic": - return ( - - ); - case "Phong": - return ( - - ); - // return ( - // - // ); - case "Lambert": - default: - return ( - - ); + if (isText) { + return ( + + ); } + return ( + + ); } function TextureMaterial({ @@ -131,29 +117,7 @@ const textureLoader = new TextureLoader(); const materialDefaults: MaterialParameters = { transparent: false, opacity: 1.0, depthWrite: true, depthTest: true }; -const acceptMaterial: A3d.Material = { - type: "Phong", - normal: "rgb(0,148,91)", - hover: "rgb(1,88,55)", - selected: "rgb(1,88,55)", - opacity: 1.0, - shininess: 50, -}; - -const errorMaterial: A3d.Material = { - type: "Phong", - normal: "#b82f3a", - hover: "#991c31", - selected: "#991c31", - opacity: 1.0, - shininess: 50, -}; - -const warningMaterial: A3d.Material = { - type: "Phong", - normal: "rgb(240, 197, 48)", - hover: "rgb(221, 181, 38)", - selected: "rgb(182, 147, 20)", - opacity: 1.0, - shininess: 50, -}; +const acceptMat: A3d.Material = { normal: "rgb(0,148,91)", opacity: 1.0, metalness: 0.5, roughness: 0.5 }; +const selectMat: A3d.Material = { normal: "rgb(14,82,184)", opacity: 1.0, metalness: 0.5, roughness: 0.5 }; +const errorMar: A3d.Material = { normal: "#b82f3a", opacity: 1.0, metalness: 0.5, roughness: 0.5 }; +const warningMat: A3d.Material = { normal: "rgb(240, 197, 48)", opacity: 1.0, metalness: 0.5, roughness: 0.5 }; diff --git a/packages/abstract-3d/src/renderers/shared.ts b/packages/abstract-3d/src/renderers/shared.ts index 8d3592e3..2e54da23 100644 --- a/packages/abstract-3d/src/renderers/shared.ts +++ b/packages/abstract-3d/src/renderers/shared.ts @@ -1,3 +1,4 @@ +/* eslint-disable @typescript-eslint/no-unused-expressions */ import { Vec3, View, @@ -56,8 +57,142 @@ export function parseRgb(color: string): { readonly r: number; readonly g: numbe return rgb; } -export function rgbGray(color: string): string { +export function parseColorString(s: string): { readonly r: number; readonly g: number; readonly b: number } { + if (s.startsWith("#")) { + if (s.length === 9) { + return { + // a: parseInt(s.slice(1, 3), 16), + r: parseInt(s.slice(3, 5), 16), + g: parseInt(s.slice(5, 7), 16), + b: parseInt(s.slice(7, 9), 16), + }; + } + return { r: parseInt(s.slice(1, 3), 16), g: parseInt(s.slice(3, 5), 16), b: parseInt(s.slice(5, 7), 16) }; + } + if (s.startsWith("rgb")) { + const [r, g, b, _a] = s.split("(")[1]?.split(")")[0]?.split(",") ?? []; + return { r: Number(r ?? 0), g: Number(g ?? 0), b: Number(b ?? 0) }; + } + if (s === "white") { + return white; + } + if (s === "black") { + return black; + } + return white; +} + +const white = { r: 255, g: 255, b: 255 }; +const black = { r: 0, g: 0, b: 0 }; + +export function rgbGrayScale(color: string): string { const parts = color.split("(")[1]?.slice(0, -1).split(","); const c = Number(parts?.[0] ?? 416) * 0.3 + Number(parts?.[1] ?? 212) * 0.587 + Number(parts?.[2] ?? 1100) * 0.114; return `rgb(${c},${c},${c})`; } + +/** + * This will take a HEX or RGB web color. pSBC can shade it darker or lighter, + * or blend it with a second color, and can also pass it right thru but convert + * from Hex to RGB (Hex2RGB) or RGB to Hex (RGB2Hex). + * All without you even knowing what color format you are using. + * + * @param {number} p - From 0 to 1 Percentage float (Required). + * @param {string} from - The starting color in HEX or RGB format. + * @param {string} [to] - The ending color in HEX or RGB format, optional. + * @returns {string|null} Either Hex or RGB color. Null if invalid color or percentage number. + */ + +export function shade(p: number, from: string, to?: string): string | undefined { + if ( + typeof p !== "number" || + p < -1 || + p > 1 || + typeof from !== "string" || + (from[0] !== "r" && from[0] !== "#") || + (to && typeof to !== "string") + ) { + return undefined; // ErrorCheck + } + + const sbcRip = (d: string): Record | null => { + const l = d.length; + const RGB: Record = {}; + + if (l > 9) { + const dArr = d.split(","); + if (dArr.length < 3 || dArr.length > 4) return null; // ErrorCheck + RGB[0] = i(dArr[0].split("(")[1]); + RGB[1] = i(dArr[1]); + RGB[2] = i(dArr[2]); + RGB[3] = dArr[3] ? parseFloat(dArr[3]) : -1; + } else { + if (l === 8 || l === 6 || l < 4) return null; // ErrorCheck + if (l < 6) { + d = "#" + d[1] + d[1] + d[2] + d[2] + d[3] + d[3] + (l > 4 ? String(d[4]) + d[4] : ""); // 3 or 4 digit + } + const dInt = i(d.slice(1), 16); + RGB[0] = (dInt >> 16) & 255; + RGB[1] = (dInt >> 8) & 255; + RGB[2] = dInt & 255; + RGB[3] = -1; + + if (l === 9 || l === 5) { + RGB[3] = r((RGB[2] / 255) * 10000) / 10000; + RGB[2] = RGB[1]; + RGB[1] = RGB[0]; + RGB[0] = (dInt >> 24) & 255; + } + } + return RGB; + }; + + const i = parseInt; + const r = Math.round; + + let h = from.length > 9; + h = typeof to === "string" ? (to.length > 9 ? true : to === "c" ? !h : false) : h; + const b = p < 0; + p = b ? p * -1 : p; + to = to && to !== "c" ? to : b ? "#000000" : "#FFFFFF"; + + const f = sbcRip(from); + const t = sbcRip(to); + if (!f || !t) { + return undefined; // ErrorCheck + } + + if (h) { + return ( + "rgb" + + (f[3] > -1 || t[3] > -1 ? "a(" : "(") + + r((t[0] - f[0]) * p + f[0]) + + "," + + r((t[1] - f[1]) * p + f[1]) + + "," + + r((t[2] - f[2]) * p + f[2]) + + (f[3] < 0 && t[3] < 0 + ? ")" + : "," + (f[3] > -1 && t[3] > -1 ? r(((t[3] - f[3]) * p + f[3]) * 10000) / 10000 : t[3] < 0 ? f[3] : t[3]) + ")") + ); + } + + return ( + "#" + + ( + 0x100000000 + + r((t[0] - f[0]) * p + f[0]) * 0x1000000 + + r((t[1] - f[1]) * p + f[1]) * 0x10000 + + r((t[2] - f[2]) * p + f[2]) * 0x100 + + (f[3] > -1 && t[3] > -1 + ? r(((t[3] - f[3]) * p + f[3]) * 255) + : t[3] > -1 + ? r(t[3] * 255) + : f[3] > -1 + ? r(f[3] * 255) + : 255) + ) + .toString(16) + .slice(1, f[3] > -1 || t[3] > -1 ? undefined : -2) + ); +} diff --git a/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-box.ts b/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-box.ts index b9b68861..8fe2ba8a 100644 --- a/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-box.ts +++ b/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-box.ts @@ -1,7 +1,7 @@ import * as A3D from "../../../abstract-3d"; import { gray, black, zElem, zOrderElement } from "./shared"; import { svgPolygon } from "../svg-encoding"; -import { rgbGray } from "../../shared"; +import { rgbGrayScale } from "../../shared"; export function box( b: A3D.Box, @@ -51,7 +51,7 @@ export function box( const [strokeColor, fill, strokeUse] = onlyStroke ? [grayScale ? gray : color, onlyStrokeFill, stroke] - : [black, grayScale ? rgbGray(color) : color, 0]; + : [black, grayScale ? rgbGrayScale(color) : color, 0]; return [ zElem(svgPolygon(frontBackPoints, fill, strokeColor, strokeUse), frontBackMean), diff --git a/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-cone.ts b/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-cone.ts index f05cfe5f..1acb6423 100644 --- a/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-cone.ts +++ b/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-cone.ts @@ -1,7 +1,7 @@ import * as A3D from "../../../abstract-3d"; import { gray, stBW, zElem, zOrderElement, transparent } from "./shared"; import { svgPolygon } from "../svg-encoding"; -import { rgbGray } from "../../shared"; +import { rgbGrayScale } from "../../shared"; export function cone( c: A3D.Cone, @@ -21,7 +21,7 @@ export function cone( const [stroke, fill] = onlyStroke ? [grayScale ? gray : color, onlyStrokeFill] - : [transparent, grayScale ? rgbGray(color) : color]; + : [transparent, grayScale ? rgbGrayScale(color) : color]; const zOrderComponents = Array(); const sides = 8; diff --git a/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-cylinder.ts b/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-cylinder.ts index 75d9d1ca..c5a0525c 100644 --- a/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-cylinder.ts +++ b/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-cylinder.ts @@ -1,7 +1,7 @@ import * as A3D from "../../../abstract-3d"; import { gray, stBW, transparent, zElem, zOrderElement } from "./shared"; import { svgPolygon } from "../svg-encoding"; -import { rgbGray } from "../../shared"; +import { rgbGrayScale } from "../../shared"; export function cylinder( c: A3D.Cylinder, @@ -21,7 +21,7 @@ export function cylinder( const [stroke, fill] = onlyStroke ? [grayScale ? gray : color, onlyStrokeFill] - : [transparent, grayScale ? rgbGray(color) : color]; + : [transparent, grayScale ? rgbGrayScale(color) : color]; const zOrderComponents = Array(); const sides = 8; diff --git a/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-line.ts b/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-line.ts index 4d4177e1..b38ae59f 100644 --- a/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-line.ts +++ b/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-line.ts @@ -1,7 +1,7 @@ import * as A3D from "../../../abstract-3d"; import { zElem, zOrderElement } from "./shared"; import { svgLine } from "../svg-encoding"; -import { rgbGray } from "../../shared"; +import { rgbGrayScale } from "../../shared"; export function line( l: A3D.Line, @@ -16,7 +16,7 @@ export function line( const v2 = A3D.vec3TransRot(l.end, parentPos, parentRot); return [ zElem( - svgLine(point(v1.x, v1.y), point(v2.x, v2.y), grayScale ? rgbGray(fill) : fill, l.thickness), + svgLine(point(v1.x, v1.y), point(v2.x, v2.y), grayScale ? rgbGrayScale(fill) : fill, l.thickness), A3D.vec3ZMean(v1, v2) ), ]; diff --git a/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-plane.ts b/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-plane.ts index 5f6b2a3a..da7bdeab 100644 --- a/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-plane.ts +++ b/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-plane.ts @@ -1,7 +1,7 @@ import * as A3D from "../../../abstract-3d"; import { gray, black, zElem, zOrderElement } from "./shared"; import { EmbededImage, svgImage, svgPolygon } from "../svg-encoding"; -import { rgbGray } from "../../shared"; +import { rgbGrayScale } from "../../shared"; export function plane( p: A3D.Plane, @@ -40,6 +40,6 @@ export function plane( const [strokeColor, fill, strokeThickness] = onlyStroke ? [grayScale ? gray : color, onlyStrokeFill, stroke] - : [black, grayScale ? rgbGray(color) : color, 0]; + : [black, grayScale ? rgbGrayScale(color) : color, 0]; return [zElem(svgPolygon(points, fill, strokeColor, strokeThickness), A3D.vec3ZMean(v1, v2, v3, v4))]; } diff --git a/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-polygon.ts b/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-polygon.ts index 051dd6c9..ceb718d1 100644 --- a/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-polygon.ts +++ b/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-polygon.ts @@ -1,7 +1,7 @@ import { Polygon, vec3ZMean, Vec3, Vec2, vec3TransRot, vec3RotCombine, vec3Zero } from "../../../abstract-3d"; import { gray, zElem, zOrderElement, transparent } from "./shared"; import { svgPolygon } from "../svg-encoding"; -import { rgbGray } from "../../shared"; +import { rgbGrayScale } from "../../shared"; export function polygon( p: Polygon, @@ -20,6 +20,6 @@ export function polygon( const points = rotatedPoints.map(({ x, y }) => point(x, y)); const [strokeColor, fill, strokeThickness] = onlyStroke ? [grayScale ? gray : color, onlyStrokeFill, stroke] - : [transparent, grayScale ? rgbGray(color) : color, 0]; + : [transparent, grayScale ? rgbGrayScale(color) : color, 0]; return [zElem(svgPolygon(points, fill, strokeColor, strokeThickness), vec3ZMean(...rotatedPoints))]; } diff --git a/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-shape.ts b/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-shape.ts index 51f3b7cc..68a4ed14 100644 --- a/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-shape.ts +++ b/packages/abstract-3d/src/renderers/svg/svg-geometries/svg-shape.ts @@ -1,7 +1,7 @@ import { vec3ZMean, Vec3, Vec2, vec3TransRot, vec3RotCombine, Shape, vec3, vec3Zero } from "../../../abstract-3d"; import { gray, zElem, zOrderElement, transparent } from "./shared"; import { svgPolygon } from "../svg-encoding"; -import { rgbGray } from "../../shared"; +import { rgbGrayScale } from "../../shared"; export function shape( s: Shape, @@ -20,6 +20,6 @@ export function shape( const points = rotatedPoints.map(({ x, y }) => point(x, y)); const [strokeColor, fill] = onlyStroke ? [grayScale ? gray : color, onlyStrokeFill] - : [transparent, grayScale ? rgbGray(color) : color]; + : [transparent, grayScale ? rgbGrayScale(color) : color]; return [zElem(svgPolygon(points, fill, strokeColor, 0), vec3ZMean(...rotatedPoints))]; } diff --git a/packages/abstract-visuals-example/src/app/abstract-3d-example.tsx b/packages/abstract-visuals-example/src/app/abstract-3d-example.tsx index fce614ec..3b2f9cab 100644 --- a/packages/abstract-visuals-example/src/app/abstract-3d-example.tsx +++ b/packages/abstract-visuals-example/src/app/abstract-3d-example.tsx @@ -1,26 +1,31 @@ import * as React from "react"; import FileSaver from "file-saver"; import * as A3D from "abstract-3d"; +import { systemair } from "./systemair"; +import { vortice } from "./vortice"; export function Abstract3DExample(): React.ReactNode { + const [selected, setSelected] = React.useState(undefined); return (
- -
-
-
- + /> */} +
+
+ setSelected(id)} + createGroupId={(g) => g.data?.id ?? ""} + scene={systemair} + orbitContolsProps={{ enableDamping: false, minDistance: 100, maxDistance: 10000, zoomSpeed: 1.5 }} + camera={camera} + /> +
+
+ setSelected(id)} + createGroupId={(g) => g.data?.id ?? ""} + scene={vortice} + orbitContolsProps={{ enableDamping: false, minDistance: 100, maxDistance: 10000, zoomSpeed: 1.5 }} + camera={camera} + /> +
); } -const scene2: A3D.Scene = { - center_deprecated: A3D.vec3(100, 100, 100), - size_deprecated: A3D.vec3(300, 300, 300), - groups: [ - { - pos: A3D.vec3(100, 100, 100), - meshes: [ - A3D.box( - A3D.vec3(100, 100, 100), - { type: "Phong", hover: "rgb(50,50,50)", normal: "rgb(150,150,150)" }, - A3D.vec3(0, 0, 0) - ), - ], - }, - ], -}; - -const scene3: A3D.Scene = { - center_deprecated: A3D.vec3(10, 10, 10), - size_deprecated: A3D.vec3(20, 20, 20), - groups: [ - { - pos: A3D.vec3(10, 10, 10), - meshes: [ - A3D.box( - A3D.vec3(10, 2, 10), - { type: "Phong", hover: "rgb(50,50,50)", normal: "rgb(150,150,150)" }, - A3D.vec3(0, -6, 0) - ), - A3D.box( - A3D.vec3(1, 10, 1), - { type: "Phong", hover: "rgb(50,50,50)", normal: "rgb(150,150,150)" }, - A3D.vec3(-4.5, 0, 4.5) - ), - A3D.box( - A3D.vec3(1, 10, 1), - { type: "Phong", hover: "rgb(50,50,50)", normal: "rgb(150,150,150)" }, - A3D.vec3(4.5, 0, 4.5) - ), - A3D.box( - A3D.vec3(1, 10, 1), - { type: "Phong", hover: "rgb(50,50,50)", normal: "rgb(150,150,150)" }, - A3D.vec3(-4.5, 0, -4.5) - ), - A3D.box( - A3D.vec3(1, 10, 1), - { type: "Phong", hover: "rgb(50,50,50)", normal: "rgb(150,150,150)" }, - A3D.vec3(4.5, 0, -4.5) - ), - A3D.box( - A3D.vec3(10, 2, 10), - { type: "Phong", hover: "rgb(50,50,50)", normal: "rgb(150,150,150)" }, - A3D.vec3(0, 6, 0) - ), - A3D.sphere(3, { type: "Phong", hover: "rgb(120,30,30)", normal: "rgb(150,50,50)" }, A3D.vec3(0, 0, 0)), - ], - }, - ], -}; - -const scene = { - center_deprecated: { - x: 50, - y: 425.00000000000006, - z: 31.5, - }, - size_deprecated: { - x: 2100, - y: 900.0000000000001, - z: 1013, - }, - hotSpots_deprecated: [], - groups: [ - { - meshes: [ - { - geometry: { - type: "Box", - pos: { - x: 0, - y: 225, - z: 0, - }, - rot: { - x: 0, - y: 0, - z: 0, - }, - size: { - x: 400, - y: 900, - z: 950, - }, - holes: [], - }, - material: { - type: 0, - normal: "rgb(43, 103, 119)", - hover: "rgb(23, 83, 99)", - selected: "rgb(14,82,184)", - dxf: "143", - opacity: 0.3, - shininess: 50, - }, - }, - { - geometry: { - type: "Plane", - pos: { - x: 0, - y: 250, - z: 538, - }, - rot: { - x: 0, - y: 0, - z: 0, - }, - size: { - x: 320, - y: 720, - z: 0, - }, - holes: [], - }, - material: { - type: 2, - normal: "rgb(255,255,255)", - hover: "rgb(205,205,205)", - selected: "rgb(99,152,231)", - dxf: "255", - opacity: 1, - shininess: 50, - image: { - type: "UrlImage", - url: "/promaster-blobs/df41aa33209fe7ea46c2c3ec16c89fe855675f4a?database_id=628c2d04-c86d-4b85-9193-099437a1b6a9&file=df41aa33209fe7ea46c2c3ec16c89fe855675f4a.svg", - imageType: "svg", - }, - }, - }, - ], - pos: { - x: 0, - y: 200, - z: 0, - }, - rot: { - x: 0, - y: 0, - z: 0, - }, - data: { - id: "GXC", - box: "supply", - }, - groups: [], - }, - { - meshes: [ - { - geometry: { - type: "Box", - pos: { - x: 0, - y: 0, - z: 0, - }, - rot: { - x: 0, - y: 0, - z: 0, - }, - size: { - x: 700, - y: 450, - z: 950, - }, - holes: [], - }, - material: { - type: 0, - normal: "rgb(43, 103, 119)", - hover: "rgb(23, 83, 99)", - selected: "rgb(14,82,184)", - dxf: "143", - opacity: 0.3, - shininess: 50, - }, - }, - { - geometry: { - type: "Plane", - pos: { - x: 0, - y: 0, - z: 538, - }, - rot: { - x: 0, - y: 0, - z: 0, - }, - size: { - x: 560, - y: 360, - z: 0, - }, - holes: [], - }, - material: { - type: 2, - normal: "rgb(255,255,255)", - hover: "rgb(205,205,205)", - selected: "rgb(99,152,231)", - dxf: "255", - opacity: 1, - shininess: 50, - image: { - type: "UrlImage", - url: "/promaster-blobs/a7c1b10782e66a7781b4d1e3be12208716a166c5?database_id=628c2d04-c86d-4b85-9193-099437a1b6a9&file=a7c1b10782e66a7781b4d1e3be12208716a166c5.svg", - imageType: "svg", - }, - }, - }, - ], - pos: { - x: 550, - y: 200, - z: 0, - }, - rot: { - x: 0, - y: 0, - z: 0, - }, - data: { - id: "VF_S_OUT", - box: "box", - }, - groups: [], - }, - { - meshes: [ - { - geometry: { - type: "Box", - pos: { - x: 0, - y: 0, - z: 0, - }, - rot: { - x: 0, - y: 0, - z: 0, - }, - size: { - x: 600, - y: 450, - z: 950, - }, - holes: [], - }, - material: { - type: 0, - normal: "rgb(43, 103, 119)", - hover: "rgb(23, 83, 99)", - selected: "rgb(14,82,184)", - dxf: "143", - opacity: 0.3, - shininess: 50, - }, - }, - { - geometry: { - type: "Plane", - pos: { - x: 0, - y: 0, - z: 538, - }, - rot: { - x: 0, - y: 0, - z: 0, - }, - size: { - x: 480, - y: 360, - z: 0, - }, - holes: [], - }, - material: { - type: 2, - normal: "rgb(255,255,255)", - hover: "rgb(205,205,205)", - selected: "rgb(99,152,231)", - dxf: "255", - opacity: 1, - shininess: 50, - image: { - type: "UrlImage", - url: "/promaster-blobs/50591c6cc90df9c8418bc8a17db06a8f84de5902?database_id=628c2d04-c86d-4b85-9193-099437a1b6a9&file=50591c6cc90df9c8418bc8a17db06a8f84de5902.svg", - imageType: "svg", - }, - }, - }, - ], - pos: { - x: -500, - y: 200, - z: 0, - }, - rot: { - x: 0, - y: 0, - z: 0, - }, - data: { - id: "F_S_IN", - box: "box", - }, - groups: [], - }, - { - meshes: [ - { - geometry: { - type: "Box", - pos: { - x: 0, - y: 0, - z: 0, - }, - rot: { - x: 0, - y: 0, - z: 0, - }, - size: { - x: 700, - y: 450, - z: 950, - }, - holes: [], - }, - material: { - type: 0, - normal: "rgb(43, 103, 119)", - hover: "rgb(23, 83, 99)", - selected: "rgb(14,82,184)", - dxf: "143", - opacity: 0.3, - shininess: 50, - }, - }, - { - geometry: { - type: "Plane", - pos: { - x: 0, - y: 0, - z: -538, - }, - rot: { - x: 0, - y: 3.141592653589793, - z: 3.141592653589793, - }, - size: { - x: 560, - y: 360, - z: 0, - }, - holes: [], - }, - material: { - type: 2, - normal: "rgb(255,255,255)", - hover: "rgb(205,205,205)", - selected: "rgb(99,152,231)", - dxf: "255", - opacity: 1, - shininess: 50, - image: { - type: "UrlImage", - url: "/promaster-blobs/a7c1b10782e66a7781b4d1e3be12208716a166c5?database_id=628c2d04-c86d-4b85-9193-099437a1b6a9&file=a7c1b10782e66a7781b4d1e3be12208716a166c5.svg", - imageType: "svg", - }, - }, - }, - ], - pos: { - x: -550, - y: 650, - z: 0, - }, - rot: { - x: -3.141592653589793, - y: 0, - z: -3.141592653589793, - }, - data: { - id: "VF_E_OUT", - box: "box", - }, - groups: [], - }, - { - meshes: [ - { - geometry: { - type: "Box", - pos: { - x: 0, - y: 0, - z: 0, - }, - rot: { - x: 0, - y: 0, - z: 0, - }, - size: { - x: 600, - y: 450, - z: 950, - }, - holes: [], - }, - material: { - type: 0, - normal: "rgb(43, 103, 119)", - hover: "rgb(23, 83, 99)", - selected: "rgb(14,82,184)", - dxf: "143", - opacity: 0.3, - shininess: 50, - }, - }, - { - geometry: { - type: "Plane", - pos: { - x: 0, - y: 0, - z: -538, - }, - rot: { - x: 0, - y: 3.141592653589793, - z: 3.141592653589793, - }, - size: { - x: 480, - y: 360, - z: 0, - }, - holes: [], - }, - material: { - type: 2, - normal: "rgb(255,255,255)", - hover: "rgb(205,205,205)", - selected: "rgb(99,152,231)", - dxf: "255", - opacity: 1, - shininess: 50, - image: { - type: "UrlImage", - url: "/promaster-blobs/50591c6cc90df9c8418bc8a17db06a8f84de5902?database_id=628c2d04-c86d-4b85-9193-099437a1b6a9&file=50591c6cc90df9c8418bc8a17db06a8f84de5902.svg", - imageType: "svg", - }, - }, - }, - ], - pos: { - x: 500, - y: 650, - z: 0, - }, - rot: { - x: -3.141592653589793, - y: 0, - z: -3.141592653589793, - }, - data: { - id: "F_E_IN", - box: "box", - }, - groups: [], - }, - { - meshes: [ - { - geometry: { - type: "Box", - pos: { - x: 0, - y: 0, - z: 0, - }, - rot: { - x: 0, - y: 0, - z: 0, - }, - size: { - x: 200, - y: 450, - z: 950, - }, - holes: [], - }, - material: { - type: 0, - normal: "rgb(43, 103, 119)", - hover: "rgb(23, 83, 99)", - selected: "rgb(14,82,184)", - dxf: "143", - opacity: 0.3, - shininess: 50, - }, - }, - { - geometry: { - type: "Plane", - pos: { - x: 0, - y: 0, - z: 538, - }, - rot: { - x: 0, - y: 0, - z: 0, - }, - size: { - x: 160, - y: 360, - z: 0, - }, - holes: [], - }, - material: { - type: 2, - normal: "rgb(255,255,255)", - hover: "rgb(205,205,205)", - selected: "rgb(99,152,231)", - dxf: "255", - opacity: 1, - shininess: 50, - image: { - type: "UrlImage", - url: "/promaster-blobs/d8219af5ff598004f4ccaf4e863df14a1b3cd920?database_id=628c2d04-c86d-4b85-9193-099437a1b6a9&file=d8219af5ff598004f4ccaf4e863df14a1b3cd920.svg", - imageType: "svg", - }, - }, - }, - ], - pos: { - x: 1000, - y: 200, - z: 0, - }, - rot: { - x: 0, - y: 0, - z: 0, - }, - data: { - id: "H", - box: "box", - }, - groups: [], - }, - { - meshes: [ - { - geometry: { - type: "Box", - pos: { - x: 0, - y: 0, - z: 0, - }, - rot: { - x: 0, - y: 0, - z: 0, - }, - size: { - x: 200, - y: 450, - z: 950, - }, - holes: [], - }, - material: { - type: 0, - normal: "rgb(43, 103, 119)", - hover: "rgb(23, 83, 99)", - selected: "rgb(14,82,184)", - dxf: "143", - opacity: 0.3, - shininess: 50, - }, - }, - { - geometry: { - type: "Plane", - pos: { - x: 0, - y: 0, - z: 538, - }, - rot: { - x: 0, - y: 0, - z: 0, - }, - size: { - x: 160, - y: 360, - z: 0, - }, - holes: [], - }, - material: { - type: 2, - normal: "rgb(255,255,255)", - hover: "rgb(205,205,205)", - selected: "rgb(99,152,231)", - dxf: "255", - opacity: 1, - shininess: 50, - image: { - type: "UrlImage", - url: "/promaster-blobs/19f403f93ecf0ab397f6a6dae401010aa774cb84?database_id=628c2d04-c86d-4b85-9193-099437a1b6a9&file=19f403f93ecf0ab397f6a6dae401010aa774cb84.svg", - imageType: "svg", - }, - }, - }, - ], - pos: { - x: -900, - y: 200, - z: 0, - }, - rot: { - x: 0, - y: 0, - z: 0, - }, - data: { - id: "JS_S_IN", - box: "box", - }, - groups: [], - }, - { - meshes: [ - { - geometry: { - type: "Box", - pos: { - x: 0, - y: 0, - z: 0, - }, - rot: { - x: 0, - y: 0, - z: 0, - }, - size: { - x: 200, - y: 450, - z: 950, - }, - holes: [], - }, - material: { - type: 0, - normal: "rgb(43, 103, 119)", - hover: "rgb(23, 83, 99)", - selected: "rgb(14,82,184)", - dxf: "143", - opacity: 0.3, - shininess: 50, - }, - }, - { - geometry: { - type: "Plane", - pos: { - x: 0, - y: 0, - z: -538, - }, - rot: { - x: 0, - y: 3.141592653589793, - z: 3.141592653589793, - }, - size: { - x: 160, - y: 360, - z: 0, - }, - holes: [], - }, - material: { - type: 2, - normal: "rgb(255,255,255)", - hover: "rgb(205,205,205)", - selected: "rgb(99,152,231)", - dxf: "255", - opacity: 1, - shininess: 50, - image: { - type: "UrlImage", - url: "/promaster-blobs/19f403f93ecf0ab397f6a6dae401010aa774cb84?database_id=628c2d04-c86d-4b85-9193-099437a1b6a9&file=19f403f93ecf0ab397f6a6dae401010aa774cb84.svg", - imageType: "svg", - }, - }, - }, - ], - pos: { - x: 900, - y: 650, - z: 0, - }, - rot: { - x: -3.141592653589793, - y: 0, - z: -3.141592653589793, - }, - data: { - id: "JS_E_IN", - box: "box", - }, - groups: [], - }, - ], - dimensions_deprecated: { - dimensions: [], - material: { - type: 2, - normal: "rgb(65,65,65)", - hover: "rgb(65,65,65)", - selected: "rgb(65,65,65)", - dxf: "8", - opacity: 1, - shininess: 50, - }, - bounds: { - front: { - min: { - x: 0, - y: 0, - }, - max: { - x: 0, - y: 0, - }, - }, - back: { - min: { - x: 0, - y: 0, - }, - max: { - x: 0, - y: 0, - }, - }, - left: { - min: { - x: 0, - y: 0, - }, - max: { - x: 0, - y: 0, - }, - }, - right: { - min: { - x: 0, - y: 0, - }, - max: { - x: 0, - y: 0, - }, - }, - top: { - min: { - x: 0, - y: 0, - }, - max: { - x: 0, - y: 0, - }, - }, - bottom: { - min: { - x: 0, - y: 0, - }, - max: { - x: 0, - y: 0, - }, - }, - threeD: { - min: { - x: 0, - y: 0, - z: 0, - }, - max: { - x: 0, - y: 0, - z: 0, - }, - }, - }, - }, - rotation_deprecated: { - x: 0, - y: 0, - z: 0, - }, - data: {}, -} as unknown as A3D.Scene; +const camera: A3D.Camera = { type: "Perspective", near: 100, far: 19000, fov: 60 }; diff --git a/packages/abstract-visuals-example/src/app/systemair.ts b/packages/abstract-visuals-example/src/app/systemair.ts new file mode 100644 index 00000000..17159213 --- /dev/null +++ b/packages/abstract-visuals-example/src/app/systemair.ts @@ -0,0 +1,17436 @@ +import { Scene } from "abstract-3d"; + +/* eslint-disable max-lines */ +export const systemair = { + center_deprecated: { + x: -41, + y: 0, + z: 0, + }, + size_deprecated: { + x: 3612, + y: 1778, + z: 1488, + }, + hotSpots_deprecated: [ + { + id: "23561548-1663-4136-8c8e-0e9268d2ca02_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: -1182, + y: -200, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 420, + z: 500, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "da5af71a-b06c-438b-a13b-0a6b08a88983_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: -1141, + y: -250, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 420, + z: 920, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "90c19a34-78e7-4b8f-9073-fbc02b876505_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: -941, + y: -250, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 420, + z: 920, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "37136322-d2f9-488e-9767-193c91cdb405_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: -341, + y: -250, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 420, + z: 920, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "61678c63-b795-474c-8b6b-ca25f423262d_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: 1100, + y: 300, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 420, + z: 500, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "dd989da6-3867-482b-adb3-bb54c4bd87bc_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: 1059, + y: 250, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 420, + z: 920, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "807a7727-2d85-4ace-9dd1-c238700bb8e2_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: 659, + y: 250, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 420, + z: 920, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "1b46a081-a1d2-447e-8977-173e66dfa3f6_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: 59, + y: 250, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 420, + z: 920, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "ae3b9ab6-fd8f-451a-be2c-19e863ffbdcd_supply", + mesh: { + geometry: { + type: "Box", + pos: { + x: 59, + y: -250, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 420, + z: 920, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "ae3b9ab6-fd8f-451a-be2c-19e863ffbdcd_exhaust", + mesh: { + geometry: { + type: "Box", + pos: { + x: -341, + y: 250, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 420, + z: 920, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "7c0e5003-4c27-4436-9acf-30644ebf725a_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: 759, + y: -250, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 420, + z: 920, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "6f2af123-b5de-4725-abc5-e084c1ccb67d_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: 1059, + y: -300, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 420, + z: 920, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "cee7d2ce-d0ff-4a3f-be66-cde88b088d80_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: 1100, + y: -300, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 450, + z: 470, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "be0885b4-3498-4897-804f-0f2b9a1eeb7c_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: -1141, + y: 200, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 420, + z: 920, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "ce8ae2ad-29d3-481c-8e63-2ed26b619bc0_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: -1182, + y: 200, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 450, + z: 470, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + ], + groups: [ + { + meshes: [], + pos: { + x: -41, + y: -600, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "3b3c0b3e-a57e-4657-9a2e-4ed5446d22db", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 57, + z: 506, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 2200, + y: 4, + z: 62, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 477, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 2200, + y: 118, + z: 4, + }, + holes: [ + { + type: "RoundHole", + pos: { + x: -733.3333333333333, + y: 0, + }, + radius: 20, + }, + { + type: "RoundHole", + pos: { + x: -366.66666666666663, + y: 0, + }, + radius: 20, + }, + { + type: "RoundHole", + pos: { + x: 0, + y: 0, + }, + radius: 20, + }, + { + type: "RoundHole", + pos: { + x: 366.66666666666674, + y: 0, + }, + radius: 20, + }, + { + type: "RoundHole", + pos: { + x: 733.3333333333335, + y: 0, + }, + radius: 20, + }, + ], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -57, + z: 506, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 2200, + y: 4, + z: 62, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 51.5, + z: 539, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 2200, + y: 15, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -51.5, + z: 539, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 2200, + y: 15, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -2.4492935982947064e-16, + y: 57, + z: -506, + }, + rot: { + x: -3.141592653589793, + y: 1.2246467991473532e-16, + z: -3.141592653589793, + }, + size: { + x: 2200, + y: 4, + z: 62, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -3.796405077356795e-15, + y: 0, + z: -477, + }, + rot: { + x: -3.141592653589793, + y: 1.2246467991473532e-16, + z: -3.141592653589793, + }, + size: { + x: 2200, + y: 118, + z: 4, + }, + holes: [ + { + type: "RoundHole", + pos: { + x: -733.3333333333333, + y: 0, + }, + radius: 20, + }, + { + type: "RoundHole", + pos: { + x: -366.66666666666663, + y: 0, + }, + radius: 20, + }, + { + type: "RoundHole", + pos: { + x: 0, + y: 0, + }, + radius: 20, + }, + { + type: "RoundHole", + pos: { + x: 366.66666666666674, + y: 0, + }, + radius: 20, + }, + { + type: "RoundHole", + pos: { + x: 733.3333333333335, + y: 0, + }, + radius: 20, + }, + ], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -2.4492935982947064e-16, + y: -57, + z: -506, + }, + rot: { + x: -3.141592653589793, + y: 1.2246467991473532e-16, + z: -3.141592653589793, + }, + size: { + x: 2200, + y: 4, + z: 62, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 3.796405077356795e-15, + y: 51.5, + z: -539, + }, + rot: { + x: -3.141592653589793, + y: 1.2246467991473532e-16, + z: -3.141592653589793, + }, + size: { + x: 2200, + y: 15, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 3.796405077356795e-15, + y: -51.5, + z: -539, + }, + rot: { + x: -3.141592653589793, + y: 1.2246467991473532e-16, + z: -3.141592653589793, + }, + size: { + x: 2200, + y: 15, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 1118.5, + y: 57, + z: -4.440892098500626e-16, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 1082, + y: 4, + z: 37, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 1102, + y: 0, + z: -3.552713678800501e-15, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 1082, + y: 118, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 1118.5, + y: -57, + z: -4.440892098500626e-16, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 1082, + y: 4, + z: 37, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 1139, + y: 51.5, + z: 3.552713678800501e-15, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 1082, + y: 15, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 1139, + y: -51.5, + z: 3.552713678800501e-15, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 1082, + y: 15, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -1118.5, + y: 57, + z: -4.440892098500626e-16, + }, + rot: { + x: 0, + y: -1.5707963267948966, + z: 0, + }, + size: { + x: 1082, + y: 4, + z: 37, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -1102, + y: 0, + z: -3.552713678800501e-15, + }, + rot: { + x: 0, + y: -1.5707963267948966, + z: 0, + }, + size: { + x: 1082, + y: 118, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -1118.5, + y: -57, + z: -4.440892098500626e-16, + }, + rot: { + x: 0, + y: -1.5707963267948966, + z: 0, + }, + size: { + x: 1082, + y: 4, + z: 37, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -1139, + y: 51.5, + z: 3.552713678800501e-15, + }, + rot: { + x: 0, + y: -1.5707963267948966, + z: 0, + }, + size: { + x: 1082, + y: 15, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -1139, + y: -51.5, + z: 3.552713678800501e-15, + }, + rot: { + x: 0, + y: -1.5707963267948966, + z: 0, + }, + size: { + x: 1082, + y: 15, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -382.33333333333337, + y: 57, + z: -4.440892098500626e-16, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 950, + y: 4, + z: 37, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -398.83333333333337, + y: 0, + z: -3.552713678800501e-15, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 950, + y: 118, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -382.33333333333337, + y: -57, + z: -4.440892098500626e-16, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 950, + y: 4, + z: 37, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -361.83333333333337, + y: 51.5, + z: 3.552713678800501e-15, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 950, + y: 15, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -361.83333333333337, + y: -51.5, + z: 3.552713678800501e-15, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 950, + y: 15, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 378.33333333333326, + y: 57, + z: -4.440892098500626e-16, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 950, + y: 4, + z: 37, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 361.83333333333326, + y: 0, + z: -3.552713678800501e-15, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 950, + y: 118, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 378.33333333333326, + y: -57, + z: -4.440892098500626e-16, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 950, + y: 4, + z: 37, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 398.83333333333326, + y: 51.5, + z: 3.552713678800501e-15, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 950, + y: 15, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 398.83333333333326, + y: -51.5, + z: 3.552713678800501e-15, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 950, + y: 15, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 24, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 950, + z: 44, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(150, 150, 150)", + hover: "rgb(110, 110, 110)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 259, + y: -475, + z: 0, + }, + rot: { + x: 1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "8bbcb539-87ea-41a9-ab6e-db110fadef4e", + box: "", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 24, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 950, + z: 44, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(150, 150, 150)", + hover: "rgb(110, 110, 110)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -441, + y: -475, + z: 0, + }, + rot: { + x: 1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "abc89fe7-cf71-4066-a037-f47fd4294b3e", + box: "", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 24, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 950, + z: 44, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(150, 150, 150)", + hover: "rgb(110, 110, 110)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 259, + y: 475, + z: 0, + }, + rot: { + x: -1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "c46e7dd1-5b3f-44a7-8c5b-ab3b15164fdf", + box: "", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 24, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 950, + z: 44, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(150, 150, 150)", + hover: "rgb(110, 110, 110)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -441, + y: 475, + z: 0, + }, + rot: { + x: -1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "14218100-df0e-420d-878c-5dcc78c86c7f", + box: "", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 24, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 950, + z: 44, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(150, 150, 150)", + hover: "rgb(110, 110, 110)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -341, + y: 0, + z: -475, + }, + rot: { + x: -3.141592653589793, + y: 1.2246467991473532e-16, + z: -3.141592653589793, + }, + data: { + id: "2f5bee38-fe52-4cfc-9070-0cb104daa4fc", + box: "", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 24, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 950, + z: 44, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(150, 150, 150)", + hover: "rgb(110, 110, 110)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 359, + y: 0, + z: -475, + }, + rot: { + x: -3.141592653589793, + y: 1.2246467991473532e-16, + z: -3.141592653589793, + }, + data: { + id: "a1925080-44e3-4246-b999-4aa8f2c4889c", + box: "", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 24, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 950, + z: 44, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(150, 150, 150)", + hover: "rgb(110, 110, 110)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 859, + y: 0, + z: 475, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "6a4fe4af-f19e-48a7-8e11-351f4a6238c3", + box: "", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 24, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 950, + z: 44, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(150, 150, 150)", + hover: "rgb(110, 110, 110)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 59, + y: 0, + z: 475, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "b4cbfc0a-b0a3-4cb7-8a58-ad9026674d7a", + box: "", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 24, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 950, + z: 44, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(150, 150, 150)", + hover: "rgb(110, 110, 110)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -341, + y: 0, + z: 475, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "ec3872f3-6f9b-4705-a99c-545adaae6b14", + box: "", + }, + groups: [], + }, + { + meshes: [], + pos: { + x: 659, + y: -505, + z: 0, + }, + rot: { + x: 1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "6bcbdff1-f899-44d2-99c4-c39f4a6182c7", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 800, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 800, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 397, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -397, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 17, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 800, + y: 1000, + z: 26, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 748, + y: 948, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -91, + y: -505, + z: 0, + }, + rot: { + x: 1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "d083a0cf-d9d0-4d11-bafb-137858b7ce6c", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 700, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 700, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 347, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -347, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 17, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 700, + y: 1000, + z: 26, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 648, + y: 948, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -791, + y: -505, + z: 0, + }, + rot: { + x: 1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "f23771d9-1a53-48d6-a122-6c103a552407", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 700, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 700, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 347, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -347, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 17, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 700, + y: 1000, + z: 26, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 648, + y: 948, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: 659, + y: 505, + z: 0, + }, + rot: { + x: -1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "2f8d65e5-a98e-4646-9598-24ea8e426c9a", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 800, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 800, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 397, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -397, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 17, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 800, + y: 1000, + z: 26, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 748, + y: 948, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -91, + y: 505, + z: 0, + }, + rot: { + x: -1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "2b748afb-615f-4dcb-afd6-4d6b3e978cd7", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 700, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 700, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 347, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -347, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 17, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 700, + y: 1000, + z: 26, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 648, + y: 948, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -791, + y: 505, + z: 0, + }, + rot: { + x: -1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "28315f5f-2d9c-4332-a81d-2396ae1b62bf", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 700, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 700, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 347, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -347, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 17, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 700, + y: 1000, + z: 26, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 648, + y: 948, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1000, + y: 950, + z: 50, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 559, + y: 5, + z: 0, + }, + rot: { + x: -1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "b3ef34aa-6901-4dac-b058-476fc7e2f6fc", + box: "", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 900, + y: 950, + z: 50, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -691, + y: 5, + z: 0, + }, + rot: { + x: -1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "4bc7eae7-23dd-4124-928e-eb9abb42bd10", + box: "", + }, + groups: [], + }, + { + meshes: [], + pos: { + x: -741, + y: 0, + z: -505, + }, + rot: { + x: -3.141592653589793, + y: 1.2246467991473532e-16, + z: -3.141592653589793, + }, + data: { + id: "81f2981e-6ee7-48b3-bc40-2028250c4ca6", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 800, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 800, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 397, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -397, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 17, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 800, + y: 1000, + z: 26, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 748, + y: 948, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: 9, + y: 0, + z: -505, + }, + rot: { + x: -3.141592653589793, + y: 1.2246467991473532e-16, + z: -3.141592653589793, + }, + data: { + id: "621b77ff-bd19-4d28-8ae6-92dfd33343b0", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 700, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 700, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 347, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -347, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 17, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 700, + y: 1000, + z: 26, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 648, + y: 948, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: 709, + y: 0, + z: -505, + }, + rot: { + x: -3.141592653589793, + y: 1.2246467991473532e-16, + z: -3.141592653589793, + }, + data: { + id: "1d13a5f9-6d87-48c7-ba69-1131f5cd2248", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 700, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 700, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 347, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -347, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 17, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 700, + y: 1000, + z: 26, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 648, + y: 948, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: 959, + y: 0, + z: 505, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "fdd7edc4-de8d-4f14-a65b-ce38a3db6dc4", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 200, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 200, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 97, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -97, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 17, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 200, + y: 1000, + z: 26, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 148, + y: 948, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: 459, + y: 0, + z: 505, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "0b64e41c-47c0-46e2-b8e8-472787c79666", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 800, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 800, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 397, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -397, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 17, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 800, + y: 1000, + z: 26, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 748, + y: 948, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: 32.5, + z: 0, + }, + radius: 12.5, + length: 34, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 11.9, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 25, + y: 65, + z: 10.2, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: -32.5, + z: 11.9, + }, + radius: 12.5, + length: 10.2, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: -365, + y: 420, + z: 47, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: 32.5, + z: 0, + }, + radius: 12.5, + length: 34, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 11.9, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 25, + y: 65, + z: 10.2, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: -32.5, + z: 11.9, + }, + radius: 12.5, + length: 10.2, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: -365, + y: -420, + z: 47, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: -20, + y: 0, + z: 0, + }, + radius: 2.5, + length: 65, + rot: { + x: 0, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 3, + y: 0, + z: -1, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 42, + y: 65, + z: 3, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 376.5, + y: 432, + z: 32.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: -20, + y: 0, + z: 0, + }, + radius: 2.5, + length: 65, + rot: { + x: 0, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 3, + y: 0, + z: -1, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 42, + y: 65, + z: 3, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 376.5, + y: -410, + z: 32.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -141, + y: 0, + z: 505, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "0e7f2e22-d012-4b1b-8286-cbaa3d2e4da7", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 400, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 400, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 197, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -197, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 17, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 400, + y: 1000, + z: 26, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 348, + y: 948, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: 32.5, + z: 0, + }, + radius: 12.5, + length: 34, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 11.9, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 25, + y: 65, + z: 10.2, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: -32.5, + z: 11.9, + }, + radius: 12.5, + length: 10.2, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: -165, + y: 420, + z: 47, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: 32.5, + z: 0, + }, + radius: 12.5, + length: 34, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 11.9, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 25, + y: 65, + z: 10.2, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: -32.5, + z: 11.9, + }, + radius: 12.5, + length: 10.2, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: -165, + y: -420, + z: 47, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: -20, + y: 0, + z: 0, + }, + radius: 2.5, + length: 65, + rot: { + x: 0, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 3, + y: 0, + z: -1, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 42, + y: 65, + z: 3, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 176.5, + y: 432, + z: 32.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: -20, + y: 0, + z: 0, + }, + radius: 2.5, + length: 65, + rot: { + x: 0, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 3, + y: 0, + z: -1, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 42, + y: 65, + z: 3, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 176.5, + y: -410, + z: 32.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -741, + y: 0, + z: 505, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "d1e1682a-2c3a-4091-b72a-2e2c27ccfe91", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 800, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -497, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 800, + y: 6, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 397, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -397, + y: 0, + z: 31, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 6, + y: 988, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(72,132,131)", + hover: "rgb(42,102,101)", + selected: "rgb(42,102,101)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 17, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 800, + y: 1000, + z: 26, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 748, + y: 948, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(108,108,112)", + hover: "rgb(68,68,72)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: 32.5, + z: 0, + }, + radius: 12.5, + length: 34, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 11.9, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 25, + y: 65, + z: 10.2, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: -32.5, + z: 11.9, + }, + radius: 12.5, + length: 10.2, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 365, + y: 420, + z: 47, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: 32.5, + z: 0, + }, + radius: 12.5, + length: 34, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 11.9, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 25, + y: 65, + z: 10.2, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: -32.5, + z: 11.9, + }, + radius: 12.5, + length: 10.2, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 365, + y: -420, + z: 47, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: -20, + y: 0, + z: 0, + }, + radius: 2.5, + length: 65, + rot: { + x: 0, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 3, + y: 0, + z: -1, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 42, + y: 65, + z: 3, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: -376.5, + y: 432, + z: 32.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: -20, + y: 0, + z: 0, + }, + radius: 2.5, + length: 65, + rot: { + x: 0, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 3, + y: 0, + z: -1, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 42, + y: 65, + z: 3, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(68,68,72)", + hover: "rgb(23,23,28)", + selected: "rgb(23,23,28)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: -376.5, + y: -410, + z: 32.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: 1079.5, + y: -508, + z: 0, + }, + rot: { + x: 1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "3b054888-c9f2-40d8-9fbb-2b3ea63bb2ed", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 0, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 954, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -10, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 954, + z: 46, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10.5, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: 1079.5, + y: 508, + z: 0, + }, + rot: { + x: -1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "2dbd66ba-4ee6-4fe0-9221-d516ebeb4667", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 0, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 954, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -10, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 954, + z: 46, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10.5, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: 1079.5, + y: 0, + z: -508, + }, + rot: { + x: -3.141592653589793, + y: 1.2246467991473532e-16, + z: -1.2246467991473532e-16, + }, + data: { + id: "db7bd9c7-e9a2-4848-9629-976de4f81787", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 0, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 954, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -10, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 954, + z: 46, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10.5, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 13, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 66, + y: 40, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 0, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 66, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 13, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 40, + z: 66, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -10, + y: -10, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 46, + z: 46, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10.5, + y: 508, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 13, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 66, + y: 40, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 0, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 66, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 13, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 40, + z: 66, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -10, + y: -10, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 46, + z: 46, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10.5, + y: -508, + z: -3.552713678800501e-15, + }, + rot: { + x: 1.5707963267948963, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: 1079.5, + y: 0, + z: 508, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "a69b4ad8-aaa9-4d58-8008-b519a564a8df", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 0, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 954, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -10, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 954, + z: 46, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10.5, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 13, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 66, + y: 40, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 0, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 66, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 13, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 40, + z: 66, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -10, + y: -10, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 46, + z: 46, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10.5, + y: 508, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 13, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 66, + y: 40, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 0, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 66, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 13, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 40, + z: 66, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -10, + y: -10, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 46, + z: 46, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10.5, + y: -508, + z: -3.552713678800501e-15, + }, + rot: { + x: 1.5707963267948963, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -1161.5, + y: -508, + z: 0, + }, + rot: { + x: 1.5707963267948963, + y: 0, + z: 3.141592653589793, + }, + data: { + id: "8b241ab5-2ff1-49d1-b7e1-6fa0f70a26ed", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 0, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 954, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -10, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 954, + z: 46, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10.5, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -1161.5, + y: 508, + z: 0, + }, + rot: { + x: -1.5707963267948963, + y: 0, + z: 3.141592653589793, + }, + data: { + id: "ef2c538e-8993-4308-9de3-c07039bbced9", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 0, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 954, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -10, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 954, + z: 46, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10.5, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -1161.5, + y: 0, + z: -508, + }, + rot: { + x: -3.141592653589793, + y: 0, + z: 3.141592653589793, + }, + data: { + id: "00b13404-7f77-4e38-bb63-e62eea451e82", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 0, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 954, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -10, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 954, + z: 46, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10.5, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 13, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 66, + y: 40, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 0, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 66, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 13, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 40, + z: 66, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -10, + y: -10, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 46, + z: 46, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10.5, + y: 508, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 13, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 66, + y: 40, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 0, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 66, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 13, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 40, + z: 66, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -10, + y: -10, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 46, + z: 46, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10.5, + y: -508, + z: -3.552713678800501e-15, + }, + rot: { + x: 1.5707963267948963, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -1161.5, + y: 0, + z: 508, + }, + rot: { + x: 0, + y: 0, + z: 3.141592653589793, + }, + data: { + id: "4777f4df-72c1-4d41-abdd-7250b59ef796", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 0, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 954, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -10, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 954, + z: 46, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10.5, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 13, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 66, + y: 40, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 0, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 66, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 13, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 40, + z: 66, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -10, + y: -10, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 46, + z: 46, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10.5, + y: 508, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 13, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 66, + y: 40, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 0, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 66, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 13, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 40, + z: 66, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -10, + y: -10, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 46, + z: 46, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(53,53,58)", + hover: "rgb(23,23,28)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10.5, + y: -508, + z: -3.552713678800501e-15, + }, + rot: { + x: 1.5707963267948963, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -41, + y: -508, + z: -508, + }, + rot: { + x: 1.5707963267948963, + y: 0, + z: -1.5707963267948963, + }, + data: { + id: "76fe63f1-fbd0-4bdf-b200-f6fe761cbcb0", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 0, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 2154, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -10, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 2154, + z: 46, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -41, + y: -508, + z: 508, + }, + rot: { + x: 1.5707963267948963, + y: 0, + z: 1.5707963267948963, + }, + data: { + id: "935f5207-8e95-4938-8926-4c8244035d2e", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 0, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 2154, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -10, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 2154, + z: 46, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -41, + y: 508, + z: -508, + }, + rot: { + x: -1.5707963267948963, + y: 0, + z: 1.5707963267948963, + }, + data: { + id: "78c206b7-7053-46fb-afab-85c8fad2e555", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 0, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 2154, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -10, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 2154, + z: 46, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -41, + y: 508, + z: 508, + }, + rot: { + x: -1.5707963267948963, + y: 0, + z: -1.5707963267948963, + }, + data: { + id: "7c51995d-adee-4e0c-a574-01de0dbbe116", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 13, + y: 0, + z: 13, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 2154, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -10, + y: 0, + z: -10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 46, + y: 2154, + z: 46, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(73,73,77)", + hover: "rgb(38,38,42)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -1582, + y: -200, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "23561548-1663-4136-8c8e-0e9268d2ca02", + box: "box", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: -45, + y: 0, + z: 0, + }, + radius: 30.800000000000004, + length: 81, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(66,137,122)", + hover: "rgb(16,87,72)", + selected: "rgb(14,82,184)", + dxf: "122", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: 45, + y: 0, + z: 0, + }, + radius: 55, + length: 99.00000000000001, + rot: { + x: 0, + y: 0, + z: -1.5707963267948966, + }, + }, + material: { + type: "Lambert", + normal: "rgb(66,137,122)", + hover: "rgb(16,87,72)", + selected: "rgb(14,82,184)", + dxf: "122", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 538, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 180, + y: 180, + z: 0, + }, + holes: [], + }, + material: { + type: "Basic", + normal: "rgb(255,255,255)", + hover: "rgb(205,205,205)", + selected: "rgb(99,152,231)", + dxf: "255", + opacity: 1, + shininess: 50, + image: { + type: "UrlImage", + url: "/promaster-blobs/3b1d8658bda7de75d985095d2251ae09f096bbf8?database_id=628c2d04-c86d-4b85-9193-099437a1b6a9", + imageType: "jpeg", + }, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -5, + z: 310, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 65, + y: 200, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: 25, + z: 380, + }, + radius: 10, + length: 110, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(125,125,0)", + hover: "rgb(85,85,0)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + ], + pos: { + x: -1041, + y: -250, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "90c19a34-78e7-4b8f-9073-fbc02b876505", + box: "box", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 147.5, + z: 0, + }, + rot: { + x: 1.5707963267948966, + y: 0.47951929199259613, + z: 1.5707963267948966, + }, + size: { + x: 770, + y: 140.8900280360537, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,170)", + hover: "rgb(130,130,130)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 42.5, + z: 0, + }, + rot: { + x: 1.5707963267948966, + y: -0.47951929199259613, + z: 1.5707963267948966, + }, + size: { + x: 770, + y: 140.8900280360537, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,170)", + hover: "rgb(130,130,130)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -62.5, + z: 0, + }, + rot: { + x: 1.5707963267948966, + y: 0.47951929199259613, + z: 1.5707963267948966, + }, + size: { + x: 770, + y: 140.8900280360537, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,170)", + hover: "rgb(130,130,130)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -167.5, + z: 0, + }, + rot: { + x: 1.5707963267948966, + y: -0.47951929199259613, + z: 1.5707963267948966, + }, + size: { + x: 770, + y: 140.8900280360537, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,170)", + hover: "rgb(130,130,130)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -60, + y: -210, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 5, + y: 20, + z: 790, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -60, + y: 210, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 5, + y: 20, + z: 790, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -60, + y: 0, + z: -385, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 5, + y: 400, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -60, + y: 0, + z: 385, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 5, + y: 400, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -212.5, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 125, + y: 5, + z: 780, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 212.5, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 125, + y: 5, + z: 780, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -387.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 125, + y: 420, + z: 5, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 387.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 125, + y: 420, + z: 5, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 60, + y: -210, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 5, + y: 20, + z: 790, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 60, + y: 210, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 5, + y: 20, + z: 790, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 60, + y: 0, + z: -385, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 5, + y: 400, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 60, + y: 0, + z: 385, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 5, + y: 400, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + ], + pos: { + x: 0, + y: -5, + z: -80, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 538, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 180, + y: 180, + z: 0, + }, + holes: [], + }, + material: { + type: "Basic", + normal: "rgb(255,255,255)", + hover: "rgb(205,205,205)", + selected: "rgb(99,152,231)", + dxf: "255", + opacity: 1, + shininess: 50, + image: { + type: "UrlImage", + url: "/promaster-blobs/bd146d50aa33cef078add39f89cbd6b96184448a?database_id=628c2d04-c86d-4b85-9193-099437a1b6a9", + imageType: "jpeg", + }, + }, + }, + ], + pos: { + x: -641, + y: -250, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "37136322-d2f9-488e-9767-193c91cdb405", + box: "box", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: -250, + y: -186, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 20, + z: 792, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -250, + y: 186, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 20, + z: 792, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -250, + y: 0, + z: -386, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 352, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -250, + y: 0, + z: 386, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 352, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -352.5, + }, + rot: { + x: 0, + y: 3.0514529674865667, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -305.5, + }, + rot: { + x: 0, + y: 0.0901396861032262, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: 176, + z: -376, + }, + { + x: 260, + y: 176, + z: -329, + }, + { + x: -250, + y: 176, + z: -282, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: -176, + z: -376, + }, + { + x: 260, + y: -176, + z: -329, + }, + { + x: -250, + y: -176, + z: -282, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -258.5, + }, + rot: { + x: 0, + y: 3.0514529674865667, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -211.5, + }, + rot: { + x: 0, + y: 0.0901396861032262, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: 176, + z: -282, + }, + { + x: 260, + y: 176, + z: -235, + }, + { + x: -250, + y: 176, + z: -188, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: -176, + z: -282, + }, + { + x: 260, + y: -176, + z: -235, + }, + { + x: -250, + y: -176, + z: -188, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -164.5, + }, + rot: { + x: 0, + y: 3.0514529674865667, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -117.5, + }, + rot: { + x: 0, + y: 0.0901396861032262, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: 176, + z: -188, + }, + { + x: 260, + y: 176, + z: -141, + }, + { + x: -250, + y: 176, + z: -94, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: -176, + z: -188, + }, + { + x: 260, + y: -176, + z: -141, + }, + { + x: -250, + y: -176, + z: -94, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -70.5, + }, + rot: { + x: 0, + y: 3.0514529674865667, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -23.5, + }, + rot: { + x: 0, + y: 0.0901396861032262, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: 176, + z: -94, + }, + { + x: 260, + y: 176, + z: -47, + }, + { + x: -250, + y: 176, + z: 0, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: -176, + z: -94, + }, + { + x: 260, + y: -176, + z: -47, + }, + { + x: -250, + y: -176, + z: 0, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 23.5, + }, + rot: { + x: 0, + y: 3.0514529674865667, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 70.5, + }, + rot: { + x: 0, + y: 0.0901396861032262, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: 176, + z: 0, + }, + { + x: 260, + y: 176, + z: 47, + }, + { + x: -250, + y: 176, + z: 94, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: -176, + z: 0, + }, + { + x: 260, + y: -176, + z: 47, + }, + { + x: -250, + y: -176, + z: 94, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 117.5, + }, + rot: { + x: 0, + y: 3.0514529674865667, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 164.5, + }, + rot: { + x: 0, + y: 0.0901396861032262, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: 176, + z: 94, + }, + { + x: 260, + y: 176, + z: 141, + }, + { + x: -250, + y: 176, + z: 188, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: -176, + z: 94, + }, + { + x: 260, + y: -176, + z: 141, + }, + { + x: -250, + y: -176, + z: 188, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 211.5, + }, + rot: { + x: 0, + y: 3.0514529674865667, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 258.5, + }, + rot: { + x: 0, + y: 0.0901396861032262, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: 176, + z: 188, + }, + { + x: 260, + y: 176, + z: 235, + }, + { + x: -250, + y: 176, + z: 282, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: -176, + z: 188, + }, + { + x: 260, + y: -176, + z: 235, + }, + { + x: -250, + y: -176, + z: 282, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 305.5, + }, + rot: { + x: 0, + y: 3.0514529674865667, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 352.5, + }, + rot: { + x: 0, + y: 0.0901396861032262, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: 176, + z: 282, + }, + { + x: 260, + y: 176, + z: 329, + }, + { + x: -250, + y: 176, + z: 376, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: -176, + z: 282, + }, + { + x: 260, + y: -176, + z: 329, + }, + { + x: -250, + y: -176, + z: 376, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + ], + pos: { + x: -10, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: 1500, + y: 300, + z: 0, + }, + rot: { + x: -3.141592653589793, + y: 0, + z: -3.141592653589793, + }, + data: { + id: "61678c63-b795-474c-8b6b-ca25f423262d", + box: "box", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: -45, + y: 0, + z: 0, + }, + radius: 30.800000000000004, + length: 81, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(200,172,85)", + hover: "rgb(140,122,25)", + selected: "rgb(14,82,184)", + dxf: "40", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: 45, + y: 0, + z: 0, + }, + radius: 55, + length: 99.00000000000001, + rot: { + x: 0, + y: 0, + z: -1.5707963267948966, + }, + }, + material: { + type: "Lambert", + normal: "rgb(200,172,85)", + hover: "rgb(140,122,25)", + selected: "rgb(14,82,184)", + dxf: "40", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -538, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 180, + y: 180, + z: 0, + }, + holes: [], + }, + material: { + type: "Basic", + normal: "rgb(255,255,255)", + hover: "rgb(205,205,205)", + selected: "rgb(99,152,231)", + dxf: "255", + opacity: 1, + shininess: 50, + image: { + type: "UrlImage", + url: "/promaster-blobs/3b1d8658bda7de75d985095d2251ae09f096bbf8?database_id=628c2d04-c86d-4b85-9193-099437a1b6a9", + imageType: "jpeg", + }, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -310, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 65, + y: 200, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: 30, + z: -380, + }, + radius: 10, + length: 110, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(125,125,0)", + hover: "rgb(85,85,0)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + ], + pos: { + x: 759, + y: 250, + z: 0, + }, + rot: { + x: -3.141592653589793, + y: 0, + z: -3.141592653589793, + }, + data: { + id: "807a7727-2d85-4ace-9dd1-c238700bb8e2", + box: "box", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 147.5, + z: 0, + }, + rot: { + x: 1.5707963267948966, + y: 0.47951929199259613, + z: 1.5707963267948966, + }, + size: { + x: 770, + y: 140.8900280360537, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,170)", + hover: "rgb(130,130,130)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 42.5, + z: 0, + }, + rot: { + x: 1.5707963267948966, + y: -0.47951929199259613, + z: 1.5707963267948966, + }, + size: { + x: 770, + y: 140.8900280360537, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,170)", + hover: "rgb(130,130,130)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -62.5, + z: 0, + }, + rot: { + x: 1.5707963267948966, + y: 0.47951929199259613, + z: 1.5707963267948966, + }, + size: { + x: 770, + y: 140.8900280360537, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,170)", + hover: "rgb(130,130,130)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -167.5, + z: 0, + }, + rot: { + x: 1.5707963267948966, + y: -0.47951929199259613, + z: 1.5707963267948966, + }, + size: { + x: 770, + y: 140.8900280360537, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(170,170,170)", + hover: "rgb(130,130,130)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -60, + y: -210, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 5, + y: 20, + z: 790, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -60, + y: 210, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 5, + y: 20, + z: 790, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -60, + y: 0, + z: -385, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 5, + y: 400, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -60, + y: 0, + z: 385, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 5, + y: 400, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -212.5, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 125, + y: 5, + z: 780, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 212.5, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 125, + y: 5, + z: 780, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -387.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 125, + y: 420, + z: 5, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 387.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 125, + y: 420, + z: 5, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 60, + y: -210, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 5, + y: 20, + z: 790, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 60, + y: 210, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 5, + y: 20, + z: 790, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 60, + y: 0, + z: -385, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 5, + y: 400, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 60, + y: 0, + z: 385, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 5, + y: 400, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 70, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 80, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -538, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 180, + y: 180, + z: 0, + }, + holes: [], + }, + material: { + type: "Basic", + normal: "rgb(255,255,255)", + hover: "rgb(205,205,205)", + selected: "rgb(99,152,231)", + dxf: "255", + opacity: 1, + shininess: 50, + image: { + type: "UrlImage", + url: "/promaster-blobs/bd146d50aa33cef078add39f89cbd6b96184448a?database_id=628c2d04-c86d-4b85-9193-099437a1b6a9", + imageType: "jpeg", + }, + }, + }, + ], + pos: { + x: 359, + y: 250, + z: 0, + }, + rot: { + x: -3.141592653589793, + y: 0, + z: -3.141592653589793, + }, + data: { + id: "1b46a081-a1d2-447e-8977-173e66dfa3f6", + box: "box", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: -250, + y: -186, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 20, + z: 792, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -250, + y: 186, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 20, + z: 792, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -250, + y: 0, + z: -386, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 352, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -250, + y: 0, + z: 386, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 352, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -352.5, + }, + rot: { + x: 0, + y: 3.0514529674865667, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -305.5, + }, + rot: { + x: 0, + y: 0.0901396861032262, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: 176, + z: -376, + }, + { + x: 260, + y: 176, + z: -329, + }, + { + x: -250, + y: 176, + z: -282, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: -176, + z: -376, + }, + { + x: 260, + y: -176, + z: -329, + }, + { + x: -250, + y: -176, + z: -282, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -258.5, + }, + rot: { + x: 0, + y: 3.0514529674865667, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -211.5, + }, + rot: { + x: 0, + y: 0.0901396861032262, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: 176, + z: -282, + }, + { + x: 260, + y: 176, + z: -235, + }, + { + x: -250, + y: 176, + z: -188, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: -176, + z: -282, + }, + { + x: 260, + y: -176, + z: -235, + }, + { + x: -250, + y: -176, + z: -188, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -164.5, + }, + rot: { + x: 0, + y: 3.0514529674865667, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -117.5, + }, + rot: { + x: 0, + y: 0.0901396861032262, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: 176, + z: -188, + }, + { + x: 260, + y: 176, + z: -141, + }, + { + x: -250, + y: 176, + z: -94, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: -176, + z: -188, + }, + { + x: 260, + y: -176, + z: -141, + }, + { + x: -250, + y: -176, + z: -94, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -70.5, + }, + rot: { + x: 0, + y: 3.0514529674865667, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -23.5, + }, + rot: { + x: 0, + y: 0.0901396861032262, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: 176, + z: -94, + }, + { + x: 260, + y: 176, + z: -47, + }, + { + x: -250, + y: 176, + z: 0, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: -176, + z: -94, + }, + { + x: 260, + y: -176, + z: -47, + }, + { + x: -250, + y: -176, + z: 0, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 23.5, + }, + rot: { + x: 0, + y: 3.0514529674865667, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 70.5, + }, + rot: { + x: 0, + y: 0.0901396861032262, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: 176, + z: 0, + }, + { + x: 260, + y: 176, + z: 47, + }, + { + x: -250, + y: 176, + z: 94, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: -176, + z: 0, + }, + { + x: 260, + y: -176, + z: 47, + }, + { + x: -250, + y: -176, + z: 94, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 117.5, + }, + rot: { + x: 0, + y: 3.0514529674865667, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 164.5, + }, + rot: { + x: 0, + y: 0.0901396861032262, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: 176, + z: 94, + }, + { + x: 260, + y: 176, + z: 141, + }, + { + x: -250, + y: 176, + z: 188, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: -176, + z: 94, + }, + { + x: 260, + y: -176, + z: 141, + }, + { + x: -250, + y: -176, + z: 188, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 211.5, + }, + rot: { + x: 0, + y: 3.0514529674865667, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 258.5, + }, + rot: { + x: 0, + y: 0.0901396861032262, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: 176, + z: 188, + }, + { + x: 260, + y: 176, + z: 235, + }, + { + x: -250, + y: 176, + z: 282, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: -176, + z: 188, + }, + { + x: 260, + y: -176, + z: 235, + }, + { + x: -250, + y: -176, + z: 282, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(255,105,180)", + hover: "rgb(225,75,150)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 305.5, + }, + rot: { + x: 0, + y: 3.0514529674865667, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 352.5, + }, + rot: { + x: 0, + y: 0.0901396861032262, + z: 0, + }, + size: { + x: 522.1197180723976, + y: 352, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: 176, + z: 282, + }, + { + x: 260, + y: 176, + z: 329, + }, + { + x: -250, + y: 176, + z: 376, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -250, + y: -176, + z: 282, + }, + { + x: 260, + y: -176, + z: 329, + }, + { + x: -250, + y: -176, + z: 376, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(245,95,170)", + hover: "rgb(215,65,140)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + ], + pos: { + x: -10, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 250, + z: 538, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 180, + y: 180, + z: 0, + }, + holes: [], + }, + material: { + type: "Basic", + normal: "rgb(255,255,255)", + hover: "rgb(205,205,205)", + selected: "rgb(99,152,231)", + dxf: "255", + opacity: 1, + shininess: 50, + image: { + type: "UrlImage", + url: "/promaster-blobs/b2e7eec358198b07819182915e6e9d3b1276f1ed?database_id=628c2d04-c86d-4b85-9193-099437a1b6a9", + imageType: "jpeg", + }, + }, + }, + ], + pos: { + x: -141, + y: -250, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "ae3b9ab6-fd8f-451a-be2c-19e863ffbdcd", + box: "supply", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: 0, + z: 0, + }, + radius: 475, + length: 200, + rot: { + x: 1.5707963267948966, + y: 0, + z: 1.5707963267948966, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(150, 150, 150)", + hover: "rgb(110, 110, 110)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 50, + y: 250, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 538, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 180, + y: 180, + z: 0, + }, + holes: [], + }, + material: { + type: "Basic", + normal: "rgb(255,255,255)", + hover: "rgb(205,205,205)", + selected: "rgb(99,152,231)", + dxf: "255", + opacity: 1, + shininess: 50, + image: { + type: "UrlImage", + url: "/promaster-blobs/4b89d06f6aee7921c6623d80eeb1b6bade31579d?database_id=628c2d04-c86d-4b85-9193-099437a1b6a9", + imageType: "jpeg", + }, + }, + }, + ], + pos: { + x: 409, + y: -250, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "7c0e5003-4c27-4436-9acf-30644ebf725a", + box: "box", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: -174, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 950, + y: 450, + z: 2, + }, + holes: [ + { + type: "RoundHole", + pos: { + x: 0, + y: 0, + }, + radius: 120.83640584965713, + }, + ], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 25, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 123.56691001234918, + z: 123.56691001234918, + }, + rot: { + x: 0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 264, + y: 23, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -123.56691001234918, + z: 123.56691001234918, + }, + rot: { + x: 0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 264, + y: 23, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 123.56691001234918, + z: -123.56691001234918, + }, + rot: { + x: 0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 264, + y: 23, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -123.56691001234918, + z: -123.56691001234918, + }, + rot: { + x: 0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 264, + y: 23, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 143.5, + y: 0, + z: 0, + }, + rot: { + x: 0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 23, + y: 372.5, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 143.5, + y: 0, + z: 0, + }, + rot: { + x: -0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 23, + y: 372.5, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: 140, + y: 0, + z: 0, + }, + radius: 0, + length: 70, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + subId: "fan", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 2.5, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 16, + y: 5, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(70, 70,70)", + hover: "rgb(30, 30, 30)", + selected: "rgb(30, 30, 30)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -2.5, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 16, + y: 5, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(70, 70,70)", + hover: "rgb(30, 30, 30)", + selected: "rgb(30, 30, 30)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 2.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 16, + y: -10, + z: 5, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(70, 70,70)", + hover: "rgb(30, 30, 30)", + selected: "rgb(30, 30, 30)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -2.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 16, + y: -10, + z: 5, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(70, 70,70)", + hover: "rgb(30, 30, 30)", + selected: "rgb(30, 30, 30)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 20.5, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 359.15000000000003, + y: 359.15000000000003, + z: 25, + }, + holes: [ + { + type: "RoundHole", + pos: { + x: 0, + y: 0, + }, + radius: 120.83640584965713, + }, + ], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -165, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + subId: "partition", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: 110, + y: 0, + z: 0, + }, + radius: 163.25, + length: 17, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: -110, + y: 0, + z: 0, + }, + radius: 163.25, + length: 17, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + holes: [ + { + type: "RoundHole", + pos: { + x: 0, + y: 0, + }, + radius: 120.83640584965713, + }, + ], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 84.4715188138638, + z: 105.92393425471407, + }, + rot: { + x: -0.14959965017094246, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 97.95, + y: 203, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -30.147536019247006, + z: 132.08498556113838, + }, + rot: { + x: 0.7479982508547127, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 97.95, + y: 203, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -122.06488133220248, + z: 58.78334869734165, + }, + rot: { + x: 1.645596151880368, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 97.95, + y: 203, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -122.06488133220249, + z: -58.78334869734162, + }, + rot: { + x: 2.5431940529060233, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 97.95, + y: 203, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -30.14753601924704, + z: -132.08498556113838, + }, + rot: { + x: 3.4407919539316785, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 97.95, + y: 203, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 84.47151881386377, + z: -105.92393425471408, + }, + rot: { + x: 4.338389854957334, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 97.95, + y: 203, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 135.48179707517144, + z: -3.318346982616799e-14, + }, + rot: { + x: 5.235987755982989, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 97.95, + y: 203, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -13.5, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + subId: "impeller", + }, + groups: [], + }, + ], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 538, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 180, + y: 180, + z: 0, + }, + holes: [], + }, + material: { + type: "Basic", + normal: "rgb(255,255,255)", + hover: "rgb(205,205,205)", + selected: "rgb(99,152,231)", + dxf: "255", + opacity: 1, + shininess: 50, + image: { + type: "UrlImage", + url: "/promaster-blobs/ca38bd912d9e3568c51a8ef3b1e85d683a1a1526?database_id=628c2d04-c86d-4b85-9193-099437a1b6a9", + imageType: "jpeg", + }, + }, + }, + ], + pos: { + x: 959, + y: -250, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "6f2af123-b5de-4725-abc5-e084c1ccb67d", + box: "box", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -225, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 100, + y: 0, + z: 950, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(160,166,174)", + hover: "rgb(130,136,144)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 225, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 100, + y: 0, + z: 950, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(160,166,174)", + hover: "rgb(130,136,144)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -475, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 100, + y: 450, + z: 0, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(160,166,174)", + hover: "rgb(130,136,144)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 475, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 100, + y: 450, + z: 0, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(160,166,174)", + hover: "rgb(130,136,144)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 80, + y: 450, + z: 950, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(110,116,124)", + hover: "rgb(190,130,130)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: 17.5, + y: 0, + z: 492.5, + }, + radius: 12.5, + length: 400, + rot: { + x: 0, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(168,88,53)", + hover: "rgb(117,47,7)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: 17.5, + y: -182.5, + z: 580, + }, + radius: 12.5, + length: 150, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(168,88,53)", + hover: "rgb(117,47,7)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: -17.5, + y: 0, + z: 492.5, + }, + radius: 12.5, + length: 400, + rot: { + x: 0, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(168,88,53)", + hover: "rgb(117,47,7)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: -17.5, + y: 182.5, + z: 580, + }, + radius: 12.5, + length: 150, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(168,88,53)", + hover: "rgb(117,47,7)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -50, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: 1500, + y: -300, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "1a1142c9-83ab-4bf8-9b58-706b1d96d3ff", + box: "box", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: -45, + y: 0, + z: 0, + }, + radius: 30.800000000000004, + length: 81, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(18, 99,119)", + hover: "rgb(0,59,79)", + selected: "rgb(14,82,184)", + dxf: "146", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: 45, + y: 0, + z: 0, + }, + radius: 55, + length: 99.00000000000001, + rot: { + x: 0, + y: 0, + z: -1.5707963267948966, + }, + }, + material: { + type: "Lambert", + normal: "rgb(18, 99,119)", + hover: "rgb(0,59,79)", + selected: "rgb(14,82,184)", + dxf: "146", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -538, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 180, + y: 180, + z: 0, + }, + holes: [], + }, + material: { + type: "Basic", + normal: "rgb(255,255,255)", + hover: "rgb(205,205,205)", + selected: "rgb(99,152,231)", + dxf: "255", + opacity: 1, + shininess: 50, + image: { + type: "UrlImage", + url: "/promaster-blobs/4b89d06f6aee7921c6623d80eeb1b6bade31579d?database_id=628c2d04-c86d-4b85-9193-099437a1b6a9", + imageType: "jpeg", + }, + }, + }, + ], + pos: { + x: -791, + y: 250, + z: 0, + }, + rot: { + x: -3.141592653589793, + y: 0, + z: -3.141592653589793, + }, + data: { + id: "be0885b4-3498-4897-804f-0f2b9a1eeb7c", + box: "box", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: -174, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 950, + y: 450, + z: 2, + }, + holes: [ + { + type: "RoundHole", + pos: { + x: 0, + y: 0, + }, + radius: 120.83640584965713, + }, + ], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 25, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 123.56691001234918, + z: 123.56691001234918, + }, + rot: { + x: 0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 264, + y: 23, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -123.56691001234918, + z: 123.56691001234918, + }, + rot: { + x: 0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 264, + y: 23, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 123.56691001234918, + z: -123.56691001234918, + }, + rot: { + x: 0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 264, + y: 23, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -123.56691001234918, + z: -123.56691001234918, + }, + rot: { + x: 0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 264, + y: 23, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 143.5, + y: 0, + z: 0, + }, + rot: { + x: 0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 23, + y: 372.5, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 143.5, + y: 0, + z: 0, + }, + rot: { + x: -0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 23, + y: 372.5, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: 140, + y: 0, + z: 0, + }, + radius: 0, + length: 70, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + subId: "fan", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 2.5, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 16, + y: 5, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(70, 70,70)", + hover: "rgb(30, 30, 30)", + selected: "rgb(30, 30, 30)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -2.5, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 16, + y: 5, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(70, 70,70)", + hover: "rgb(30, 30, 30)", + selected: "rgb(30, 30, 30)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 2.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 16, + y: -10, + z: 5, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(70, 70,70)", + hover: "rgb(30, 30, 30)", + selected: "rgb(30, 30, 30)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -2.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 16, + y: -10, + z: 5, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(70, 70,70)", + hover: "rgb(30, 30, 30)", + selected: "rgb(30, 30, 30)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 20.5, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 359.15000000000003, + y: 359.15000000000003, + z: 25, + }, + holes: [ + { + type: "RoundHole", + pos: { + x: 0, + y: 0, + }, + radius: 120.83640584965713, + }, + ], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -165, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + subId: "partition", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: 110, + y: 0, + z: 0, + }, + radius: 163.25, + length: 17, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: -110, + y: 0, + z: 0, + }, + radius: 163.25, + length: 17, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + holes: [ + { + type: "RoundHole", + pos: { + x: 0, + y: 0, + }, + radius: 120.83640584965713, + }, + ], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 84.4715188138638, + z: 105.92393425471407, + }, + rot: { + x: -0.14959965017094246, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 97.95, + y: 203, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -30.147536019247006, + z: 132.08498556113838, + }, + rot: { + x: 0.7479982508547127, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 97.95, + y: 203, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -122.06488133220248, + z: 58.78334869734165, + }, + rot: { + x: 1.645596151880368, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 97.95, + y: 203, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -122.06488133220249, + z: -58.78334869734162, + }, + rot: { + x: 2.5431940529060233, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 97.95, + y: 203, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -30.14753601924704, + z: -132.08498556113838, + }, + rot: { + x: 3.4407919539316785, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 97.95, + y: 203, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 84.47151881386377, + z: -105.92393425471408, + }, + rot: { + x: 4.338389854957334, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 97.95, + y: 203, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 135.48179707517144, + z: -3.318346982616799e-14, + }, + rot: { + x: 5.235987755982989, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 97.95, + y: 203, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -13.5, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + subId: "impeller", + }, + groups: [], + }, + ], + }, + ], + }, + { + meshes: [], + pos: { + x: -1582, + y: 200, + z: 0, + }, + rot: { + x: -3.141592653589793, + y: 0, + z: -3.141592653589793, + }, + data: { + id: "fae6110e-6517-4134-8420-0e7bf5ef1d48", + box: "box", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: -45, + y: 0, + z: 0, + }, + radius: 30.800000000000004, + length: 81, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(189,0,94)", + hover: "rgb(130,32,42)", + selected: "rgb(14,82,184)", + dxf: "232", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: 45, + y: 0, + z: 0, + }, + radius: 55, + length: 99.00000000000001, + rot: { + x: 0, + y: 0, + z: -1.5707963267948966, + }, + }, + material: { + type: "Lambert", + normal: "rgb(189,0,94)", + hover: "rgb(130,32,42)", + selected: "rgb(14,82,184)", + dxf: "232", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + ], + dimensions_deprecated: { + dimensions: [ + { + views: ["front"], + pos: { + x: 959, + y: -769, + z: 541, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + meshes: [ + { + geometry: { + type: "Line", + start: { + x: -100, + y: -18, + z: 0, + }, + end: { + x: -100, + y: 110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 100, + y: -18, + z: 0, + }, + end: { + x: 100, + y: 110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Text", + pos: { + x: 0, + y: 0, + z: 0, + }, + text: "200", + fontSize: 44, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: -60, + y: 0, + z: 0, + }, + end: { + x: -45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 60, + y: 0, + z: 0, + }, + end: { + x: 45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: -80, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: 80, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: -1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + }, + { + views: ["front"], + pos: { + x: 459, + y: -769, + z: 541, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + meshes: [ + { + geometry: { + type: "Line", + start: { + x: -400, + y: -18, + z: 0, + }, + end: { + x: -400, + y: 110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 400, + y: -18, + z: 0, + }, + end: { + x: 400, + y: 110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Text", + pos: { + x: 0, + y: 0, + z: 0, + }, + text: "800", + fontSize: 44, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: -360, + y: 0, + z: 0, + }, + end: { + x: -45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 360, + y: 0, + z: 0, + }, + end: { + x: 45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: -380, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: 380, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: -1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + }, + { + views: ["front"], + pos: { + x: -141, + y: -769, + z: 541, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + meshes: [ + { + geometry: { + type: "Line", + start: { + x: -200, + y: -18, + z: 0, + }, + end: { + x: -200, + y: 110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 200, + y: -18, + z: 0, + }, + end: { + x: 200, + y: 110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Text", + pos: { + x: 0, + y: 0, + z: 0, + }, + text: "400", + fontSize: 44, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: -160, + y: 0, + z: 0, + }, + end: { + x: -45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 160, + y: 0, + z: 0, + }, + end: { + x: 45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: -180, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: 180, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: -1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + }, + { + views: ["front"], + pos: { + x: -741, + y: -769, + z: 541, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + meshes: [ + { + geometry: { + type: "Line", + start: { + x: -400, + y: -18, + z: 0, + }, + end: { + x: -400, + y: 110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 400, + y: -18, + z: 0, + }, + end: { + x: 400, + y: 110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Text", + pos: { + x: 0, + y: 0, + z: 0, + }, + text: "800", + fontSize: 44, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: -360, + y: 0, + z: 0, + }, + end: { + x: -45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 360, + y: 0, + z: 0, + }, + end: { + x: 45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: -380, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: 380, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: -1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + }, + { + views: ["front"], + pos: { + x: -41, + y: -879, + z: 541, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + meshes: [ + { + geometry: { + type: "Line", + start: { + x: -1141, + y: -18, + z: 0, + }, + end: { + x: -1141, + y: 220, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 1141, + y: -18, + z: 0, + }, + end: { + x: 1141, + y: 220, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Text", + pos: { + x: 0, + y: 0, + z: 0, + }, + text: "2282", + fontSize: 44, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: -1101, + y: 0, + z: 0, + }, + end: { + x: -60, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 1101, + y: 0, + z: 0, + }, + end: { + x: 60, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: -1121, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: 1121, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: -1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + }, + { + views: ["back"], + pos: { + x: -741, + y: -769, + z: -541, + }, + rot: { + x: 0, + y: -3.141592653589793, + z: 0, + }, + meshes: [ + { + geometry: { + type: "Line", + start: { + x: -400, + y: -18, + z: 0, + }, + end: { + x: -400, + y: 110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 400, + y: -18, + z: 0, + }, + end: { + x: 400, + y: 110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Text", + pos: { + x: 0, + y: 0, + z: 0, + }, + text: "800", + fontSize: 44, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: -360, + y: 0, + z: 0, + }, + end: { + x: -45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 360, + y: 0, + z: 0, + }, + end: { + x: 45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: -380, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: 380, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: -1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + }, + { + views: ["back"], + pos: { + x: 9, + y: -769, + z: -541, + }, + rot: { + x: 0, + y: -3.141592653589793, + z: 0, + }, + meshes: [ + { + geometry: { + type: "Line", + start: { + x: -350, + y: -18, + z: 0, + }, + end: { + x: -350, + y: 110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 350, + y: -18, + z: 0, + }, + end: { + x: 350, + y: 110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Text", + pos: { + x: 0, + y: 0, + z: 0, + }, + text: "700", + fontSize: 44, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: -310, + y: 0, + z: 0, + }, + end: { + x: -45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 310, + y: 0, + z: 0, + }, + end: { + x: 45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: -330, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: 330, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: -1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + }, + { + views: ["back"], + pos: { + x: 709, + y: -769, + z: -541, + }, + rot: { + x: 0, + y: -3.141592653589793, + z: 0, + }, + meshes: [ + { + geometry: { + type: "Line", + start: { + x: -350, + y: -18, + z: 0, + }, + end: { + x: -350, + y: 110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 350, + y: -18, + z: 0, + }, + end: { + x: 350, + y: 110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Text", + pos: { + x: 0, + y: 0, + z: 0, + }, + text: "700", + fontSize: 44, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: -310, + y: 0, + z: 0, + }, + end: { + x: -45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 310, + y: 0, + z: 0, + }, + end: { + x: 45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: -330, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: 330, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: -1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + }, + { + views: ["front"], + pos: { + x: -1292, + y: 0, + z: 541, + }, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + meshes: [ + { + geometry: { + type: "Line", + start: { + x: -541, + y: 18, + z: 0, + }, + end: { + x: -541, + y: -110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 541, + y: 18, + z: 0, + }, + end: { + x: 541, + y: -110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Text", + pos: { + x: 0, + y: 0, + z: 0, + }, + text: "1082", + fontSize: 44, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: -501, + y: 0, + z: 0, + }, + end: { + x: -60, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 501, + y: 0, + z: 0, + }, + end: { + x: 60, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: -521, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: 521, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: -1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + }, + { + views: ["front"], + pos: { + x: -1292, + y: -600, + z: 541, + }, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + meshes: [ + { + geometry: { + type: "Line", + start: { + x: -59, + y: 18, + z: 0, + }, + end: { + x: -59, + y: -110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 59, + y: 18, + z: 0, + }, + end: { + x: 59, + y: -110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Text", + pos: { + x: 0, + y: 0, + z: 0, + }, + text: "118", + fontSize: 44, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + }, + { + views: ["top", "front"], + pos: { + x: 659, + y: 541, + z: -651, + }, + rot: { + x: -1.5707963267948966, + y: 0, + z: 0, + }, + meshes: [ + { + geometry: { + type: "Line", + start: { + x: -400, + y: 18, + z: 0, + }, + end: { + x: -400, + y: -110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 400, + y: 18, + z: 0, + }, + end: { + x: 400, + y: -110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Text", + pos: { + x: 0, + y: 0, + z: 0, + }, + text: "800", + fontSize: 44, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: -360, + y: 0, + z: 0, + }, + end: { + x: -45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 360, + y: 0, + z: 0, + }, + end: { + x: 45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: -380, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: 380, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: -1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + }, + { + views: ["top", "front"], + pos: { + x: -91, + y: 541, + z: -651, + }, + rot: { + x: -1.5707963267948966, + y: 0, + z: 0, + }, + meshes: [ + { + geometry: { + type: "Line", + start: { + x: -350, + y: 18, + z: 0, + }, + end: { + x: -350, + y: -110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 350, + y: 18, + z: 0, + }, + end: { + x: 350, + y: -110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Text", + pos: { + x: 0, + y: 0, + z: 0, + }, + text: "700", + fontSize: 44, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: -310, + y: 0, + z: 0, + }, + end: { + x: -45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 310, + y: 0, + z: 0, + }, + end: { + x: 45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: -330, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: 330, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: -1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + }, + { + views: ["top", "front"], + pos: { + x: -791, + y: 541, + z: -651, + }, + rot: { + x: -1.5707963267948966, + y: 0, + z: 0, + }, + meshes: [ + { + geometry: { + type: "Line", + start: { + x: -350, + y: 18, + z: 0, + }, + end: { + x: -350, + y: -110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 350, + y: 18, + z: 0, + }, + end: { + x: 350, + y: -110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Text", + pos: { + x: 0, + y: 0, + z: 0, + }, + text: "700", + fontSize: 44, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: -310, + y: 0, + z: 0, + }, + end: { + x: -45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 310, + y: 0, + z: 0, + }, + end: { + x: 45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: -330, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: 330, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: -1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + }, + { + views: ["bottom", "front"], + pos: { + x: 659, + y: -541, + z: -651, + }, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + meshes: [ + { + geometry: { + type: "Line", + start: { + x: -400, + y: -18, + z: 0, + }, + end: { + x: -400, + y: 110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 400, + y: -18, + z: 0, + }, + end: { + x: 400, + y: 110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Text", + pos: { + x: 0, + y: 0, + z: 0, + }, + text: "800", + fontSize: 44, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: -360, + y: 0, + z: 0, + }, + end: { + x: -45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 360, + y: 0, + z: 0, + }, + end: { + x: 45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: -380, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: 380, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: -1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + }, + { + views: ["bottom", "front"], + pos: { + x: -91, + y: -541, + z: -651, + }, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + meshes: [ + { + geometry: { + type: "Line", + start: { + x: -350, + y: -18, + z: 0, + }, + end: { + x: -350, + y: 110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 350, + y: -18, + z: 0, + }, + end: { + x: 350, + y: 110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Text", + pos: { + x: 0, + y: 0, + z: 0, + }, + text: "700", + fontSize: 44, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: -310, + y: 0, + z: 0, + }, + end: { + x: -45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 310, + y: 0, + z: 0, + }, + end: { + x: 45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: -330, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: 330, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: -1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + }, + { + views: ["bottom", "front"], + pos: { + x: -791, + y: -541, + z: -651, + }, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + meshes: [ + { + geometry: { + type: "Line", + start: { + x: -350, + y: -18, + z: 0, + }, + end: { + x: -350, + y: 110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 350, + y: -18, + z: 0, + }, + end: { + x: 350, + y: 110, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Text", + pos: { + x: 0, + y: 0, + z: 0, + }, + text: "700", + fontSize: 44, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: -310, + y: 0, + z: 0, + }, + end: { + x: -45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Line", + start: { + x: 310, + y: 0, + z: 0, + }, + end: { + x: 45, + y: 0, + z: 0, + }, + thickness: 0.5, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: -330, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: 330, + y: 0, + z: 0, + }, + radius: 10, + length: 40, + rot: { + x: 0, + y: 0, + z: -1.5707963267948966, + }, + }, + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + }, + ], + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + bounds: { + front: { + min: { + x: 350, + y: 460, + }, + max: { + x: 0, + y: 0, + }, + }, + back: { + min: { + x: 0, + y: 350, + }, + max: { + x: 0, + y: 0, + }, + }, + left: { + min: { + x: 0, + y: 0, + }, + max: { + x: 0, + y: 0, + }, + }, + right: { + min: { + x: 0, + y: 0, + }, + max: { + x: 0, + y: 0, + }, + }, + top: { + min: { + x: 0, + y: 0, + }, + max: { + x: 0, + y: 350, + }, + }, + bottom: { + min: { + x: 0, + y: 350, + }, + max: { + x: 0, + y: 0, + }, + }, + threeD: { + min: { + x: 350, + y: 460, + z: 350, + }, + max: { + x: 0, + y: 0, + z: 0, + }, + }, + }, + }, + rotation_deprecated: { + x: 0, + y: 0, + z: 0, + }, + data: {}, +} as unknown as Scene; diff --git a/packages/abstract-visuals-example/src/app/vortice.ts b/packages/abstract-visuals-example/src/app/vortice.ts new file mode 100644 index 00000000..26f85f63 --- /dev/null +++ b/packages/abstract-visuals-example/src/app/vortice.ts @@ -0,0 +1,14988 @@ +/* eslint-disable max-lines */ +import { Scene } from "abstract-3d"; + +export const vortice: Scene = { + center_deprecated: { + x: 30, + y: -3.67394039744206e-15, + z: -4.499279347985573e-31, + }, + size_deprecated: { + x: 3540, + y: 1650, + z: 1478, + }, + hotSpots_deprecated: [ + { + id: "b7949b78-d662-455c-832c-66c4545d2c8f_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: 1100, + y: 340, + z: 60, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 500, + z: 500, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "c12052ef-edf9-4f08-bb3d-ed6e6fc01ad1_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: 1070, + y: 340, + z: 60, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 510, + z: 1050, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "8957a44c-2333-4116-9d1a-bafff4f7a79b_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: 470, + y: 340, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 600, + z: 1280, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "09ed768c-a6ee-4d90-8616-126c64e88b9a_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: 170, + y: 340, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 600, + z: 1280, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "324b810d-7695-48d6-b2f3-1ad8b10436b6_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: -1160, + y: -340, + z: 60, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 500, + z: 500, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "24cfda23-e51e-4414-9292-74fb61fc626a_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: -1130, + y: -340, + z: 60, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 510, + z: 1050, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "eed084d9-a331-441e-8bf1-7615a97bf4ce_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: -380, + y: -340, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 600, + z: 1280, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "93917533-31be-4b97-87cd-724458a7e19e_supply", + mesh: { + geometry: { + type: "Box", + pos: { + x: 170, + y: -340, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 600, + z: 1280, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "93917533-31be-4b97-87cd-724458a7e19e_exhaust", + mesh: { + geometry: { + type: "Box", + pos: { + x: -380, + y: 340, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 600, + z: 1280, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "247adaf8-5cb1-485b-af2e-76d5a6b3fdae_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: -1130, + y: 340, + z: 60, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 480, + z: 1020, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "c749d884-a9e6-4e23-87a9-72abedfadfe8_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: -1160, + y: 340, + z: 60, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 470, + z: 470, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "ff2f492f-07d1-4f2d-9dda-aa9f7a49a1ff_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: 770, + y: -340, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 600, + z: 1280, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "024792b8-9ac3-4430-8d68-8438bb441476_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: 1070, + y: -340, + z: 60, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 480, + z: 1020, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + { + id: "3d805ddb-24ca-4ca1-83ef-3016595f8b39_outlet", + mesh: { + geometry: { + type: "Box", + pos: { + x: 1100, + y: -340, + z: 60, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 470, + z: 470, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(0,148,91)", + hover: "rgb(1,88,55)", + selected: "rgb(1,88,55)", + dxf: "0", + opacity: 1, + shininess: 50, + }, + }, + disp: { + x: 25, + y: 0, + z: 0, + }, + }, + ], + groups: [ + { + meshes: [], + pos: { + x: -30, + y: -765, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "ea63c0fa-5c9f-4afa-8b3e-1b2ca00be006", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 58, + z: 688, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 2260, + y: 4, + z: 26, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "8", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 677, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 2260, + y: 120, + z: 4, + }, + holes: [ + { + type: "RoundHole", + pos: { + x: -1000, + y: 0, + }, + radius: 30, + }, + { + type: "RoundHole", + pos: { + x: -334, + y: 0, + }, + radius: 30, + }, + { + type: "RoundHole", + pos: { + x: 333, + y: 0, + }, + radius: 30, + }, + { + type: "RoundHole", + pos: { + x: 1000, + y: 0, + }, + radius: 30, + }, + ], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "8", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -58, + z: 688, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 2260, + y: 4, + z: 26, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "8", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 52.5, + z: 703, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 2260, + y: 15, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "8", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -52.5, + z: 703, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 2260, + y: 15, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "8", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -2.4492935982947064e-16, + y: 58, + z: -688, + }, + rot: { + x: -3.141592653589793, + y: 1.2246467991473532e-16, + z: -3.141592653589793, + }, + size: { + x: 2260, + y: 4, + z: 26, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "8", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -1.592040838891559e-15, + y: 0, + z: -677, + }, + rot: { + x: -3.141592653589793, + y: 1.2246467991473532e-16, + z: -3.141592653589793, + }, + size: { + x: 2260, + y: 120, + z: 4, + }, + holes: [ + { + type: "RoundHole", + pos: { + x: -1000, + y: 0, + }, + radius: 30, + }, + { + type: "RoundHole", + pos: { + x: -334, + y: 0, + }, + radius: 30, + }, + { + type: "RoundHole", + pos: { + x: 333, + y: 0, + }, + radius: 30, + }, + { + type: "RoundHole", + pos: { + x: 1000, + y: 0, + }, + radius: 30, + }, + ], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "8", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -2.4492935982947064e-16, + y: -58, + z: -688, + }, + rot: { + x: -3.141592653589793, + y: 1.2246467991473532e-16, + z: -3.141592653589793, + }, + size: { + x: 2260, + y: 4, + z: 26, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "8", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 1.592040838891559e-15, + y: 52.5, + z: -703, + }, + rot: { + x: -3.141592653589793, + y: 1.2246467991473532e-16, + z: -3.141592653589793, + }, + size: { + x: 2260, + y: 15, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "8", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 1.592040838891559e-15, + y: -52.5, + z: -703, + }, + rot: { + x: -3.141592653589793, + y: 1.2246467991473532e-16, + z: -3.141592653589793, + }, + size: { + x: 2260, + y: 15, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "8", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 1113, + y: 58, + z: -4.440892098500626e-16, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 1350, + y: 4, + z: 26, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "8", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 1102, + y: 0, + z: -1.7763568394002505e-15, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 1350, + y: 120, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "8", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 1113, + y: -58, + z: -4.440892098500626e-16, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 1350, + y: 4, + z: 26, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "8", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 1128, + y: 52.5, + z: 1.7763568394002505e-15, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 1350, + y: 15, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "8", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 1128, + y: -52.5, + z: 1.7763568394002505e-15, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 1350, + y: 15, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "8", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -1113, + y: 58, + z: -4.440892098500626e-16, + }, + rot: { + x: 0, + y: -1.5707963267948966, + z: 0, + }, + size: { + x: 1350, + y: 4, + z: 26, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "8", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -1102, + y: 0, + z: -1.7763568394002505e-15, + }, + rot: { + x: 0, + y: -1.5707963267948966, + z: 0, + }, + size: { + x: 1350, + y: 120, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "8", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -1113, + y: -58, + z: -4.440892098500626e-16, + }, + rot: { + x: 0, + y: -1.5707963267948966, + z: 0, + }, + size: { + x: 1350, + y: 4, + z: 26, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "8", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -1128, + y: 52.5, + z: 1.7763568394002505e-15, + }, + rot: { + x: 0, + y: -1.5707963267948966, + z: 0, + }, + size: { + x: 1350, + y: 15, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "8", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -1128, + y: -52.5, + z: 1.7763568394002505e-15, + }, + rot: { + x: 0, + y: -1.5707963267948966, + z: 0, + }, + size: { + x: 1350, + y: 15, + z: 4, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "8", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 20, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 1350, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -30, + y: -655, + z: 0, + }, + rot: { + x: 1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "d3314b14-2fa8-46f1-8c85-6d2ebb7f5083", + box: "", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 20, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 1350, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -30, + y: 655, + z: 0, + }, + rot: { + x: -1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "5be41e2c-c001-4313-acfe-2159f1ca2f38", + box: "", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 20, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 1350, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -380, + y: 0, + z: -655, + }, + rot: { + x: -3.141592653589793, + y: 1.2246467991473532e-16, + z: -3.141592653589793, + }, + data: { + id: "6bfd37d3-dc91-4472-ba5f-61e618ec2002", + box: "", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 20, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 1350, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 170, + y: 0, + z: -655, + }, + rot: { + x: -3.141592653589793, + y: 1.2246467991473532e-16, + z: -3.141592653589793, + }, + data: { + id: "fd128944-16b2-43a4-b173-cef08b2c5a94", + box: "", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 20, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 40, + y: 1350, + z: 40, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -30, + y: 0, + z: 655, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "38b97bc6-54ca-4bd2-b575-29cbf82a59a3", + box: "", + }, + groups: [], + }, + { + meshes: [], + pos: { + x: 1095, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + data: { + id: "1441452b-6b8c-4a54-8292-a66e7c4d6364", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 674.5, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1350, + y: 1, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -674.5, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1350, + y: 1, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 674.5, + y: 0, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1, + y: 1348, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -674.5, + y: 0, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1, + y: 1348, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1350, + y: 1350, + z: 30, + }, + holes: [ + { + type: "SquareHole", + pos: { + x: -60, + y: 340, + }, + size: { + x: 1050, + y: 510, + }, + }, + { + type: "SquareHole", + pos: { + x: -60, + y: -340, + }, + size: { + x: 1050, + y: 510, + }, + }, + ], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1310, + y: 1310, + z: 20, + }, + holes: [ + { + type: "SquareHole", + pos: { + x: -60, + y: 340, + }, + size: { + x: 1050, + y: 510, + }, + }, + { + type: "SquareHole", + pos: { + x: -60, + y: -340, + }, + size: { + x: 1050, + y: 510, + }, + }, + ], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: -20, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -1155, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: -1.5707963267948966, + z: 0, + }, + data: { + id: "14126609-db1e-4173-92bc-3807b646df4f", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 674.5, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1350, + y: 1, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -674.5, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1350, + y: 1, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 674.5, + y: 0, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1, + y: 1348, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -674.5, + y: 0, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1, + y: 1348, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1350, + y: 1350, + z: 30, + }, + holes: [ + { + type: "SquareHole", + pos: { + x: 60, + y: 340, + }, + size: { + x: 1050, + y: 510, + }, + }, + { + type: "SquareHole", + pos: { + x: 60, + y: -340, + }, + size: { + x: 1050, + y: 510, + }, + }, + ], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1310, + y: 1310, + z: 20, + }, + holes: [ + { + type: "SquareHole", + pos: { + x: 60, + y: 340, + }, + size: { + x: 1050, + y: 510, + }, + }, + { + type: "SquareHole", + pos: { + x: 60, + y: -340, + }, + size: { + x: 1050, + y: 510, + }, + }, + ], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: -20, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: 520, + y: -680, + z: 0, + }, + rot: { + x: 1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "367a694f-9ae6-4f1b-8c9b-d1595f85452b", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 674.5, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1100, + y: 1, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -674.5, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1100, + y: 1, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 549.5, + y: 0, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1, + y: 1348, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -549.5, + y: 0, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1, + y: 1348, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1100, + y: 1350, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1060, + y: 1310, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -580, + y: -680, + z: 0, + }, + rot: { + x: 1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "ae8dec79-4342-49c3-91d8-639cde95dec7", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 674.5, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1100, + y: 1, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -674.5, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1100, + y: 1, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 549.5, + y: 0, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1, + y: 1348, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -549.5, + y: 0, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1, + y: 1348, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1100, + y: 1350, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1060, + y: 1310, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: 520, + y: 680, + z: 0, + }, + rot: { + x: -1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "e247d8e9-ec95-4fdc-8435-28da8f564488", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 674.5, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1100, + y: 1, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -674.5, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1100, + y: 1, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 549.5, + y: 0, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1, + y: 1348, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -549.5, + y: 0, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1, + y: 1348, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1100, + y: 1350, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1060, + y: 1310, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -580, + y: 680, + z: 0, + }, + rot: { + x: -1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "d4b0e798-fb72-4217-bca2-bb4eabee3cd1", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 674.5, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1100, + y: 1, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -674.5, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1100, + y: 1, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 549.5, + y: 0, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1, + y: 1348, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -549.5, + y: 0, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1, + y: 1348, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1100, + y: 1350, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1060, + y: 1310, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -25, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 900, + y: 1230, + z: 50, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "8", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 620, + y: 25, + z: 0, + }, + rot: { + x: -1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "4996afe1-c1d3-4cb3-b72c-6d81708ba88d", + box: "", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -25, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 750, + y: 1230, + z: 50, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(180,180,185)", + hover: "rgb(140,140,140)", + selected: "rgb(14,82,184)", + dxf: "8", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -755, + y: 25, + z: 0, + }, + rot: { + x: -1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "495a43d6-d10d-44f1-a2f9-82c5661ebffb", + box: "", + }, + groups: [], + }, + { + meshes: [], + pos: { + x: -755, + y: 0, + z: -680, + }, + rot: { + x: -3.141592653589793, + y: 1.2246467991473532e-16, + z: -3.141592653589793, + }, + data: { + id: "33c82c04-eb00-4d5b-9b93-c0ef436e52a7", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 674.5, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 750, + y: 1, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -674.5, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 750, + y: 1, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 374.5, + y: 0, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1, + y: 1348, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -374.5, + y: 0, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1, + y: 1348, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 750, + y: 1350, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 710, + y: 1310, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: 35, + z: 0, + }, + radius: 12.5, + length: 34, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 11.9, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 25, + y: 70, + z: 10.2, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: -35, + z: 11.9, + }, + radius: 12.5, + length: 10.2, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: -340, + y: 595, + z: 42, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: 35, + z: 0, + }, + radius: 12.5, + length: 34, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 11.9, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 25, + y: 70, + z: 10.2, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: -35, + z: 11.9, + }, + radius: 12.5, + length: 10.2, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: -340, + y: -595, + z: 42, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: -19, + y: 0, + z: 0, + }, + radius: 4, + length: 56, + rot: { + x: 0, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 3.75, + y: 0, + z: -1, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 37.5, + y: 56, + z: 8, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -19, + y: 0, + z: -3.25, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 7, + y: 70, + z: 1.5, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 360, + y: 620, + z: 29, + }, + rot: { + x: 0, + y: 0, + z: 3.141592653589793, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: -19, + y: 0, + z: 0, + }, + radius: 4, + length: 56, + rot: { + x: 0, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 3.75, + y: 0, + z: -1, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 37.5, + y: 56, + z: 8, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -19, + y: 0, + z: -3.25, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 7, + y: 70, + z: 1.5, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 360, + y: -590, + z: 29, + }, + rot: { + x: 0, + y: 0, + z: 3.141592653589793, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: -19, + y: 0, + z: 0, + }, + radius: 4, + length: 56, + rot: { + x: 0, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 3.75, + y: 0, + z: -1, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 37.5, + y: 56, + z: 8, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -19, + y: 0, + z: -3.25, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 7, + y: 70, + z: 1.5, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 360, + y: 0, + z: 29, + }, + rot: { + x: 0, + y: 0, + z: 3.141592653589793, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -105, + y: 0, + z: -680, + }, + rot: { + x: -3.141592653589793, + y: 1.2246467991473532e-16, + z: -3.141592653589793, + }, + data: { + id: "98792006-907f-4982-9e88-770270b70001", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 674.5, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 550, + y: 1, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -674.5, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 550, + y: 1, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 274.5, + y: 0, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1, + y: 1348, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -274.5, + y: 0, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1, + y: 1348, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 550, + y: 1350, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 510, + y: 1310, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: 620, + y: 0, + z: -680, + }, + rot: { + x: -3.141592653589793, + y: 1.2246467991473532e-16, + z: -3.141592653589793, + }, + data: { + id: "aab1fba2-616b-4f86-bef3-86a70b46f904", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 674.5, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 900, + y: 1, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -674.5, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 900, + y: 1, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 449.5, + y: 0, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1, + y: 1348, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -449.5, + y: 0, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1, + y: 1348, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 900, + y: 1350, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 860, + y: 1310, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: 35, + z: 0, + }, + radius: 12.5, + length: 34, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 11.9, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 25, + y: 70, + z: 10.2, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: -35, + z: 11.9, + }, + radius: 12.5, + length: 10.2, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 415, + y: 595, + z: 42, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: 35, + z: 0, + }, + radius: 12.5, + length: 34, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 11.9, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 25, + y: 70, + z: 10.2, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: -35, + z: 11.9, + }, + radius: 12.5, + length: 10.2, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 415, + y: -595, + z: 42, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: -19, + y: 0, + z: 0, + }, + radius: 4, + length: 56, + rot: { + x: 0, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 3.75, + y: 0, + z: -1, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 37.5, + y: 56, + z: 8, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -19, + y: 0, + z: -3.25, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 7, + y: 70, + z: 1.5, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: -435, + y: 620, + z: 29, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: -19, + y: 0, + z: 0, + }, + radius: 4, + length: 56, + rot: { + x: 0, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 3.75, + y: 0, + z: -1, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 37.5, + y: 56, + z: 8, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -19, + y: 0, + z: -3.25, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 7, + y: 70, + z: 1.5, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: -435, + y: -590, + z: 29, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: -19, + y: 0, + z: 0, + }, + radius: 4, + length: 56, + rot: { + x: 0, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 3.75, + y: 0, + z: -1, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 37.5, + y: 56, + z: 8, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -19, + y: 0, + z: -3.25, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 7, + y: 70, + z: 1.5, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(60,60,60)", + hover: "rgb(60,60,60)", + selected: "rgb(60,60,60)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: -435, + y: 0, + z: 29, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: 520, + y: 0, + z: 680, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "882c2fa9-0fcf-4f0a-9228-5538497cff58", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 674.5, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1100, + y: 1, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -674.5, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1100, + y: 1, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 549.5, + y: 0, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1, + y: 1348, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -549.5, + y: 0, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1, + y: 1348, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1100, + y: 1350, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1060, + y: 1310, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -580, + y: 0, + z: 680, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "47181dcf-a59e-4bf5-bc85-86b81e08612c", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 674.5, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1100, + y: 1, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -674.5, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1100, + y: 1, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 549.5, + y: 0, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1, + y: 1348, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -549.5, + y: 0, + z: 26, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1, + y: 1348, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(20,20,20)", + hover: "rgb(20,20,20)", + selected: "rgb(20,20,20)", + dxf: "134", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1100, + y: 1350, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 1060, + y: 1310, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: 1085, + y: -680, + z: 0, + }, + rot: { + x: 1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "0f8bc0fa-b5dc-4397-b538-167b77beff8d", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 1310, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -15, + y: 0, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 1310, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: 1085, + y: 680, + z: 0, + }, + rot: { + x: -1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "a2bbe116-5ef4-4fc8-8bc7-e5247c17e8d2", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 1310, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -15, + y: 0, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 1310, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: 1085, + y: 0, + z: -680, + }, + rot: { + x: -3.141592653589793, + y: 1.2246467991473532e-16, + z: -1.2246467991473532e-16, + }, + data: { + id: "8dee96dd-f7d0-43ef-a1ac-1ba7fb47c426", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 1310, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -15, + y: 0, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 1310, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: 1085, + y: 0, + z: 680, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "063126e9-6a83-4781-885c-fda3de92584c", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 1310, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -15, + y: 0, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 1310, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -1145, + y: -680, + z: 0, + }, + rot: { + x: 1.5707963267948963, + y: 0, + z: 3.141592653589793, + }, + data: { + id: "0f3eb9b6-16b9-4baf-8d75-8070e6ba8168", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 1310, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -15, + y: 0, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 1310, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -1145, + y: 680, + z: 0, + }, + rot: { + x: -1.5707963267948963, + y: 0, + z: 3.141592653589793, + }, + data: { + id: "31e389e8-dd8a-4b0a-8924-1ba8a8321549", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 1310, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -15, + y: 0, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 1310, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -1145, + y: 0, + z: -680, + }, + rot: { + x: -3.141592653589793, + y: 0, + z: 3.141592653589793, + }, + data: { + id: "7b4b2182-13fc-4ce5-94a4-55d03b4b735b", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 1310, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -15, + y: 0, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 1310, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -1145, + y: 0, + z: 680, + }, + rot: { + x: 0, + y: 0, + z: 3.141592653589793, + }, + data: { + id: "dab5d49f-e0cc-40cc-9ce8-f5aef9db5dfa", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 1310, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -15, + y: 0, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 1310, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -10, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -30, + y: -680, + z: -680, + }, + rot: { + x: 1.5707963267948963, + y: 0, + z: -1.5707963267948963, + }, + data: { + id: "2641d617-6127-4dc4-b809-bc91e4345ea9", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 2160, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -15, + y: 0, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 2160, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -30, + y: -680, + z: 680, + }, + rot: { + x: 1.5707963267948963, + y: 0, + z: 1.5707963267948963, + }, + data: { + id: "d5c868d4-1237-4719-a91b-b1a19d5d7605", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 2160, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -15, + y: 0, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 2160, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -30, + y: 680, + z: -680, + }, + rot: { + x: -1.5707963267948963, + y: 0, + z: 1.5707963267948963, + }, + data: { + id: "46ffbcf4-83ab-4680-bcc4-481d1f8b9e36", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 2160, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -15, + y: 0, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 2160, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -30, + y: 680, + z: 680, + }, + rot: { + x: -1.5707963267948963, + y: 0, + z: -1.5707963267948963, + }, + data: { + id: "ff59781f-f8ed-44e0-9fe0-ce93d087cb3a", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 2160, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -15, + y: 0, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 2160, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(190,190,190)", + hover: "rgb(125,125,135)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: 1095, + y: -680, + z: -680, + }, + rot: { + x: 3.141592653589793, + y: 0, + z: 0, + }, + data: { + id: "897e3612-6f5b-41b4-be17-0f3d0d8e6e76", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 10, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 50, + y: 30, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 50, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 10, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 30, + z: 50, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -15, + y: -15, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 20, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + ], + pos: { + x: -20, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: 1095, + y: -680, + z: 680, + }, + rot: { + x: 1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "38ccaa7b-675d-4f7f-a66c-bc42166c21c3", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 10, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 50, + y: 30, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 50, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 10, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 30, + z: 50, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -15, + y: -15, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 20, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + ], + pos: { + x: -20, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: 1095, + y: 680, + z: -680, + }, + rot: { + x: -1.5707963267948963, + y: 0, + z: 0, + }, + data: { + id: "8914322f-9cb7-438e-a08e-ff6b9efc14e6", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 10, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 50, + y: 30, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 50, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 10, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 30, + z: 50, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -15, + y: -15, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 20, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + ], + pos: { + x: -20, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: 1095, + y: 680, + z: 680, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "8c9e80c5-ca5b-49be-8241-845e25a040ae", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 10, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 50, + y: 30, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 50, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 10, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 30, + z: 50, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -15, + y: -15, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 20, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + ], + pos: { + x: -20, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -1155, + y: -680, + z: -680, + }, + rot: { + x: 1.5707963267948963, + y: 0, + z: 3.141592653589793, + }, + data: { + id: "cc05dc2e-cd36-4d54-a589-f3f1a8aee30d", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 10, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 50, + y: 30, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 50, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 10, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 30, + z: 50, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -15, + y: -15, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 20, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + ], + pos: { + x: -20, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -1155, + y: -680, + z: 680, + }, + rot: { + x: 0, + y: 0, + z: 3.141592653589793, + }, + data: { + id: "499bd71e-cc78-4013-aa3a-e9c32c849c0c", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 10, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 50, + y: 30, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 50, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 10, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 30, + z: 50, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -15, + y: -15, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 20, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + ], + pos: { + x: -20, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -1155, + y: 680, + z: -680, + }, + rot: { + x: -3.141592653589793, + y: 1.2246467991473532e-16, + z: -3.141592653589793, + }, + data: { + id: "5323df74-2a67-4ed6-8f35-4e6c04266e51", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 10, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 50, + y: 30, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 50, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 10, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 30, + z: 50, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -15, + y: -15, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 20, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + ], + pos: { + x: -20, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [], + pos: { + x: -1155, + y: 680, + z: 680, + }, + rot: { + x: -1.5707963267948963, + y: 0, + z: 3.141592653589793, + }, + data: { + id: "4eb59bbf-02bb-4461-b00f-9ff040b88df2", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 10, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 50, + y: 30, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 0, + z: 10, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 50, + z: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 10, + y: 10, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 30, + y: 30, + z: 50, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -15, + y: -15, + z: -15, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 20, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 70, + }, + }, + ], + pos: { + x: -20, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Text", + pos: { + x: -240, + y: 0, + z: 0, + }, + text: "", + fontSize: 44, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Phong", + normal: "rgb(90,90,90)", + hover: "rgb(55,55,55)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 1500, + y: 340, + z: 60, + }, + rot: { + x: -3.141592653589793, + y: 0, + z: -3.141592653589793, + }, + data: { + id: "b7949b78-d662-455c-832c-66c4545d2c8f", + box: "box", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: -45, + y: 0, + z: 0, + }, + radius: 30.800000000000004, + length: 81, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(200,172,85)", + hover: "rgb(140,122,25)", + selected: "rgb(14,82,184)", + dxf: "40", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: 45, + y: 0, + z: 0, + }, + radius: 55, + length: 99.00000000000001, + rot: { + x: 0, + y: 0, + z: -1.5707963267948966, + }, + }, + material: { + type: "Lambert", + normal: "rgb(200,172,85)", + hover: "rgb(140,122,25)", + selected: "rgb(14,82,184)", + dxf: "40", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 28, + y: 510, + z: 1050, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(255,255,255)", + hover: "rgb(255,255,255)", + selected: "rgb(255,255,255)", + dxf: "255", + opacity: 0, + shininess: 0, + }, + }, + ], + pos: { + x: 1085, + y: 340, + z: 60, + }, + rot: { + x: -3.141592653589793, + y: 0, + z: -3.141592653589793, + }, + data: { + id: "c12052ef-edf9-4f08-bb3d-ed6e6fc01ad1", + box: "box", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -279.5, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 29, + y: 51, + z: 1150, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 279.5, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 29, + y: 51, + z: 1150, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -549.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 29, + y: 508, + z: 51, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 549.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 29, + y: 508, + z: 51, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 449, + y: 629, + z: 1309, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(43, 103, 119)", + hover: "rgb(3, 43, 79)", + selected: "rgb(14,82,184)", + dxf: "143", + opacity: 0.06, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 706, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 200, + y: 200, + z: 0, + }, + holes: [], + }, + material: { + type: "Basic", + normal: "rgb(255,255,255)", + hover: "rgb(205,205,205)", + selected: "rgb(99,152,231)", + dxf: "255", + opacity: 1, + shininess: 50, + image: { + type: "UrlImage", + url: "/promaster-blobs/bd146d50aa33cef078add39f89cbd6b96184448a?database_id=dc3fafd0-349f-4282-9ccd-2e98381db9c2", + imageType: "jpeg", + }, + }, + }, + ], + pos: { + x: 695, + y: 340, + z: 0, + }, + rot: { + x: -3.141592653589793, + y: 0, + z: -3.141592653589793, + }, + data: { + id: "8957a44c-2333-4116-9d1a-bafff4f7a79b", + box: "box", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: -136, + y: -305, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 20, + z: 1310, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -136, + y: 305, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 20, + z: 1310, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -136, + y: 0, + z: -645, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 590, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -136, + y: 0, + z: 645, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 590, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -610.5769230769231, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -561.7307692307693, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: -635, + }, + { + x: 146, + y: 295, + z: -586.1538461538462, + }, + { + x: -136, + y: 295, + z: -537.3076923076924, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: -635, + }, + { + x: 146, + y: -295, + z: -586.1538461538462, + }, + { + x: -136, + y: -295, + z: -537.3076923076924, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -512.8846153846154, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -464.03846153846155, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: -537.3076923076923, + }, + { + x: 146, + y: 295, + z: -488.46153846153845, + }, + { + x: -136, + y: 295, + z: -439.6153846153846, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: -537.3076923076923, + }, + { + x: 146, + y: -295, + z: -488.46153846153845, + }, + { + x: -136, + y: -295, + z: -439.6153846153846, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -415.1923076923077, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -366.34615384615387, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: -439.61538461538464, + }, + { + x: 146, + y: 295, + z: -390.7692307692308, + }, + { + x: -136, + y: 295, + z: -341.9230769230769, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: -439.61538461538464, + }, + { + x: 146, + y: -295, + z: -390.7692307692308, + }, + { + x: -136, + y: -295, + z: -341.9230769230769, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -317.5, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -268.6538461538462, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: -341.92307692307696, + }, + { + x: 146, + y: 295, + z: -293.0769230769231, + }, + { + x: -136, + y: 295, + z: -244.23076923076925, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: -341.92307692307696, + }, + { + x: 146, + y: -295, + z: -293.0769230769231, + }, + { + x: -136, + y: -295, + z: -244.23076923076925, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -219.8076923076923, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -170.96153846153842, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: -244.2307692307692, + }, + { + x: 146, + y: 295, + z: -195.38461538461536, + }, + { + x: -136, + y: 295, + z: -146.53846153846152, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: -244.2307692307692, + }, + { + x: 146, + y: -295, + z: -195.38461538461536, + }, + { + x: -136, + y: -295, + z: -146.53846153846152, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -122.11538461538466, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -73.26923076923082, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: -146.53846153846158, + }, + { + x: 146, + y: 295, + z: -97.69230769230774, + }, + { + x: -136, + y: 295, + z: -48.84615384615389, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: -146.53846153846158, + }, + { + x: 146, + y: -295, + z: -97.69230769230774, + }, + { + x: -136, + y: -295, + z: -48.84615384615389, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -24.423076923076923, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 24.423076923076923, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: -48.84615384615385, + }, + { + x: 146, + y: 295, + z: 0, + }, + { + x: -136, + y: 295, + z: 48.84615384615385, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: -48.84615384615385, + }, + { + x: 146, + y: -295, + z: 0, + }, + { + x: -136, + y: -295, + z: 48.84615384615385, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 73.26923076923082, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 122.11538461538466, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: 48.84615384615389, + }, + { + x: 146, + y: 295, + z: 97.69230769230774, + }, + { + x: -136, + y: 295, + z: 146.53846153846158, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: 48.84615384615389, + }, + { + x: 146, + y: -295, + z: 97.69230769230774, + }, + { + x: -136, + y: -295, + z: 146.53846153846158, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 170.96153846153842, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 219.8076923076923, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: 146.53846153846152, + }, + { + x: 146, + y: 295, + z: 195.38461538461536, + }, + { + x: -136, + y: 295, + z: 244.2307692307692, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: 146.53846153846152, + }, + { + x: 146, + y: -295, + z: 195.38461538461536, + }, + { + x: -136, + y: -295, + z: 244.2307692307692, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 268.6538461538462, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 317.5, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: 244.23076923076925, + }, + { + x: 146, + y: 295, + z: 293.0769230769231, + }, + { + x: -136, + y: 295, + z: 341.92307692307696, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: 244.23076923076925, + }, + { + x: 146, + y: -295, + z: 293.0769230769231, + }, + { + x: -136, + y: -295, + z: 341.92307692307696, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 366.3461538461538, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 415.1923076923076, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: 341.92307692307685, + }, + { + x: 146, + y: 295, + z: 390.7692307692307, + }, + { + x: -136, + y: 295, + z: 439.6153846153846, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: 341.92307692307685, + }, + { + x: 146, + y: -295, + z: 390.7692307692307, + }, + { + x: -136, + y: -295, + z: 439.6153846153846, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 464.03846153846166, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 512.8846153846155, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: 439.6153846153847, + }, + { + x: 146, + y: 295, + z: 488.46153846153857, + }, + { + x: -136, + y: 295, + z: 537.3076923076924, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: 439.6153846153847, + }, + { + x: 146, + y: -295, + z: 488.46153846153857, + }, + { + x: -136, + y: -295, + z: 537.3076923076924, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 561.7307692307693, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 610.5769230769231, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: 537.3076923076924, + }, + { + x: 146, + y: 295, + z: 586.1538461538462, + }, + { + x: -136, + y: 295, + z: 635, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: 537.3076923076924, + }, + { + x: 146, + y: -295, + z: 586.1538461538462, + }, + { + x: -136, + y: -295, + z: 635, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + ], + pos: { + x: 1, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 299, + y: 630, + z: 1310, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(43, 103, 119)", + hover: "rgb(3, 43, 79)", + selected: "rgb(14,82,184)", + dxf: "143", + opacity: 0.06, + shininess: 50, + }, + }, + ], + pos: { + x: 320, + y: 340, + z: 0, + }, + rot: { + x: -3.141592653589793, + y: 0, + z: -3.141592653589793, + }, + data: { + id: "09ed768c-a6ee-4d90-8616-126c64e88b9a", + box: "box", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 75, + y: 0, + z: 508, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 450, + y: 630, + z: 300, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(255,255,158)", + hover: "rgb(225,225,128)", + selected: "rgb(195,195,188)", + dxf: "252", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 706, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 200, + y: 200, + z: 0, + }, + holes: [], + }, + material: { + type: "Basic", + normal: "rgb(255,255,255)", + hover: "rgb(205,205,205)", + selected: "rgb(99,152,231)", + dxf: "255", + opacity: 1, + shininess: 50, + image: { + type: "UrlImage", + url: "/promaster-blobs/5af4bc8be4376efdaec4aff76680fbec403bc280?database_id=dc3fafd0-349f-4282-9ccd-2e98381db9c2", + imageType: "jpeg", + }, + }, + }, + ], + pos: { + x: 320, + y: 340, + z: 0, + }, + rot: { + x: -3.141592653589793, + y: 0, + z: -3.141592653589793, + }, + data: { + id: "3ea2c0e8-c72b-4787-99b4-caf68b772cf8", + box: "", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Text", + pos: { + x: -240, + y: 0, + z: 0, + }, + text: "", + fontSize: 44, + rot: { + x: 0, + y: 3.141592653589793, + z: 0, + }, + }, + material: { + type: "Phong", + normal: "rgb(90,90,90)", + hover: "rgb(55,55,55)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: -1560, + y: -340, + z: 60, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "324b810d-7695-48d6-b2f3-1ad8b10436b6", + box: "box", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: -45, + y: 0, + z: 0, + }, + radius: 30.800000000000004, + length: 81, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(66,137,122)", + hover: "rgb(16,87,72)", + selected: "rgb(14,82,184)", + dxf: "122", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: 45, + y: 0, + z: 0, + }, + radius: 55, + length: 99.00000000000001, + rot: { + x: 0, + y: 0, + z: -1.5707963267948966, + }, + }, + material: { + type: "Lambert", + normal: "rgb(66,137,122)", + hover: "rgb(16,87,72)", + selected: "rgb(14,82,184)", + dxf: "122", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 28, + y: 510, + z: 1050, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(255,255,255)", + hover: "rgb(255,255,255)", + selected: "rgb(255,255,255)", + dxf: "255", + opacity: 0, + shininess: 0, + }, + }, + ], + pos: { + x: -1145, + y: -340, + z: 60, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "24cfda23-e51e-4414-9292-74fb61fc626a", + box: "box", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -279.5, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 29, + y: 51, + z: 1150, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 279.5, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 29, + y: 51, + z: 1150, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -549.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 29, + y: 508, + z: 51, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 549.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 29, + y: 508, + z: 51, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 749, + y: 629, + z: 1309, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(43, 103, 119)", + hover: "rgb(3, 43, 79)", + selected: "rgb(14,82,184)", + dxf: "143", + opacity: 0.06, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -706, + }, + rot: { + x: 0, + y: 3.141592653589793, + z: 3.141592653589793, + }, + size: { + x: 200, + y: 200, + z: 0, + }, + holes: [], + }, + material: { + type: "Basic", + normal: "rgb(255,255,255)", + hover: "rgb(205,205,205)", + selected: "rgb(99,152,231)", + dxf: "255", + opacity: 1, + shininess: 50, + image: { + type: "UrlImage", + url: "/promaster-blobs/bd146d50aa33cef078add39f89cbd6b96184448a?database_id=dc3fafd0-349f-4282-9ccd-2e98381db9c2", + imageType: "jpeg", + }, + }, + }, + ], + pos: { + x: -755, + y: -340, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "eed084d9-a331-441e-8bf1-7615a97bf4ce", + box: "box", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: -136, + y: -305, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 20, + z: 1310, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -136, + y: 305, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 20, + z: 1310, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -136, + y: 0, + z: -645, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 590, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: -136, + y: 0, + z: 645, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 20, + y: 590, + z: 20, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(120,120,120)", + hover: "rgb(90,90,90)", + selected: "rgb(14,82,184)", + dxf: "1", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -610.5769230769231, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -561.7307692307693, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: -635, + }, + { + x: 146, + y: 295, + z: -586.1538461538462, + }, + { + x: -136, + y: 295, + z: -537.3076923076924, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: -635, + }, + { + x: 146, + y: -295, + z: -586.1538461538462, + }, + { + x: -136, + y: -295, + z: -537.3076923076924, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -512.8846153846154, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -464.03846153846155, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: -537.3076923076923, + }, + { + x: 146, + y: 295, + z: -488.46153846153845, + }, + { + x: -136, + y: 295, + z: -439.6153846153846, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: -537.3076923076923, + }, + { + x: 146, + y: -295, + z: -488.46153846153845, + }, + { + x: -136, + y: -295, + z: -439.6153846153846, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -415.1923076923077, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -366.34615384615387, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: -439.61538461538464, + }, + { + x: 146, + y: 295, + z: -390.7692307692308, + }, + { + x: -136, + y: 295, + z: -341.9230769230769, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: -439.61538461538464, + }, + { + x: 146, + y: -295, + z: -390.7692307692308, + }, + { + x: -136, + y: -295, + z: -341.9230769230769, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -317.5, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -268.6538461538462, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: -341.92307692307696, + }, + { + x: 146, + y: 295, + z: -293.0769230769231, + }, + { + x: -136, + y: 295, + z: -244.23076923076925, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: -341.92307692307696, + }, + { + x: 146, + y: -295, + z: -293.0769230769231, + }, + { + x: -136, + y: -295, + z: -244.23076923076925, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -219.8076923076923, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -170.96153846153842, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: -244.2307692307692, + }, + { + x: 146, + y: 295, + z: -195.38461538461536, + }, + { + x: -136, + y: 295, + z: -146.53846153846152, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: -244.2307692307692, + }, + { + x: 146, + y: -295, + z: -195.38461538461536, + }, + { + x: -136, + y: -295, + z: -146.53846153846152, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -122.11538461538466, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -73.26923076923082, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: -146.53846153846158, + }, + { + x: 146, + y: 295, + z: -97.69230769230774, + }, + { + x: -136, + y: 295, + z: -48.84615384615389, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: -146.53846153846158, + }, + { + x: 146, + y: -295, + z: -97.69230769230774, + }, + { + x: -136, + y: -295, + z: -48.84615384615389, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -24.423076923076923, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 24.423076923076923, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: -48.84615384615385, + }, + { + x: 146, + y: 295, + z: 0, + }, + { + x: -136, + y: 295, + z: 48.84615384615385, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: -48.84615384615385, + }, + { + x: 146, + y: -295, + z: 0, + }, + { + x: -136, + y: -295, + z: 48.84615384615385, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 73.26923076923082, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 122.11538461538466, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: 48.84615384615389, + }, + { + x: 146, + y: 295, + z: 97.69230769230774, + }, + { + x: -136, + y: 295, + z: 146.53846153846158, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: 48.84615384615389, + }, + { + x: 146, + y: -295, + z: 97.69230769230774, + }, + { + x: -136, + y: -295, + z: 146.53846153846158, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 170.96153846153842, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 219.8076923076923, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: 146.53846153846152, + }, + { + x: 146, + y: 295, + z: 195.38461538461536, + }, + { + x: -136, + y: 295, + z: 244.2307692307692, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: 146.53846153846152, + }, + { + x: 146, + y: -295, + z: 195.38461538461536, + }, + { + x: -136, + y: -295, + z: 244.2307692307692, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 268.6538461538462, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 317.5, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: 244.23076923076925, + }, + { + x: 146, + y: 295, + z: 293.0769230769231, + }, + { + x: -136, + y: 295, + z: 341.92307692307696, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: 244.23076923076925, + }, + { + x: 146, + y: -295, + z: 293.0769230769231, + }, + { + x: -136, + y: -295, + z: 341.92307692307696, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 366.3461538461538, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 415.1923076923076, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: 341.92307692307685, + }, + { + x: 146, + y: 295, + z: 390.7692307692307, + }, + { + x: -136, + y: 295, + z: 439.6153846153846, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: 341.92307692307685, + }, + { + x: 146, + y: -295, + z: 390.7692307692307, + }, + { + x: -136, + y: -295, + z: 439.6153846153846, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 464.03846153846166, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 512.8846153846155, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: 439.6153846153847, + }, + { + x: 146, + y: 295, + z: 488.46153846153857, + }, + { + x: -136, + y: 295, + z: 537.3076923076924, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: 439.6153846153847, + }, + { + x: 146, + y: -295, + z: 488.46153846153857, + }, + { + x: -136, + y: -295, + z: 537.3076923076924, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(44,146,132)", + hover: "rgb(14,116,102)", + selected: "rgb(4,106,92)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 561.7307692307693, + }, + rot: { + x: 0, + y: 2.97584596676373, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 610.5769230769231, + }, + rot: { + x: 0, + y: 0.16574668682606286, + z: 0, + }, + size: { + x: 296.05733692236396, + y: 590, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: 295, + z: 537.3076923076924, + }, + { + x: 146, + y: 295, + z: 586.1538461538462, + }, + { + x: -136, + y: 295, + z: 635, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Polygon", + points: [ + { + x: -136, + y: -295, + z: 537.3076923076924, + }, + { + x: 146, + y: -295, + z: 586.1538461538462, + }, + { + x: -136, + y: -295, + z: 635, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Lambert", + normal: "rgb(54,156,142)", + hover: "rgb(24,126,112)", + selected: "rgb(14,116,102)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + ], + pos: { + x: -149, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 550, + y: 630, + z: 1310, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(43, 103, 119)", + hover: "rgb(3, 43, 79)", + selected: "rgb(14,82,184)", + dxf: "143", + opacity: 0.06, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 340, + z: -706, + }, + rot: { + x: 0, + y: 3.141592653589793, + z: 3.141592653589793, + }, + size: { + x: 200, + y: 200, + z: 0, + }, + holes: [], + }, + material: { + type: "Basic", + normal: "rgb(255,255,255)", + hover: "rgb(205,205,205)", + selected: "rgb(99,152,231)", + dxf: "255", + opacity: 1, + shininess: 50, + image: { + type: "UrlImage", + url: "/promaster-blobs/b2e7eec358198b07819182915e6e9d3b1276f1ed?database_id=dc3fafd0-349f-4282-9ccd-2e98381db9c2", + imageType: "jpeg", + }, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: 340, + z: 0, + }, + radius: 655, + length: 200, + rot: { + x: 1.5707963267948966, + y: 0, + z: 1.5707963267948966, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(150, 150, 150)", + hover: "rgb(110, 110, 110)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -105, + y: -340, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "93917533-31be-4b97-87cd-724458a7e19e", + box: "supply", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 550, + y: 630, + z: 1310, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(43, 103, 119)", + hover: "rgb(3, 43, 79)", + selected: "rgb(14,82,184)", + dxf: "143", + opacity: 0.06, + shininess: 50, + }, + }, + ], + pos: { + x: -105, + y: 340, + z: 0, + }, + rot: { + x: -3.141592653589793, + y: 0, + z: -3.141592653589793, + }, + data: { + id: "93917533-31be-4b97-87cd-724458a7e19e", + box: "extract", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 749, + y: 629, + z: 1309, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(43, 103, 119)", + hover: "rgb(3, 43, 79)", + selected: "rgb(14,82,184)", + dxf: "143", + opacity: 0.06, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 706, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 200, + y: 200, + z: 0, + }, + holes: [], + }, + material: { + type: "Basic", + normal: "rgb(255,255,255)", + hover: "rgb(205,205,205)", + selected: "rgb(99,152,231)", + dxf: "255", + opacity: 1, + shininess: 50, + image: { + type: "UrlImage", + url: "/promaster-blobs/4b89d06f6aee7921c6623d80eeb1b6bade31579d?database_id=dc3fafd0-349f-4282-9ccd-2e98381db9c2", + imageType: "jpeg", + }, + }, + }, + ], + pos: { + x: -755, + y: 340, + z: 0, + }, + rot: { + x: -3.141592653589793, + y: 0, + z: -3.141592653589793, + }, + data: { + id: "247adaf8-5cb1-485b-af2e-76d5a6b3fdae", + box: "box", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: -149, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 1310, + y: 630, + z: 2, + }, + holes: [ + { + type: "RoundHole", + pos: { + x: 0, + y: 0, + }, + radius: 122.13174251267029, + }, + ], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 124.80434687942565, + z: 124.80434687942565, + }, + rot: { + x: 0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 214, + y: 23, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -124.80434687942565, + z: 124.80434687942565, + }, + rot: { + x: 0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 214, + y: 23, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 124.80434687942565, + z: -124.80434687942565, + }, + rot: { + x: 0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 214, + y: 23, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -124.80434687942565, + z: -124.80434687942565, + }, + rot: { + x: 0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 214, + y: 23, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 118.5, + y: 0, + z: 0, + }, + rot: { + x: 0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 23, + y: 376, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 118.5, + y: 0, + z: 0, + }, + rot: { + x: -0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 23, + y: 376, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: 120, + y: 0, + z: 0, + }, + radius: 0, + length: 60, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + subId: "fan", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 2.5, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 16, + y: 5, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(70, 70,70)", + hover: "rgb(30, 30, 30)", + selected: "rgb(30, 30, 30)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -2.5, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 16, + y: 5, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(70, 70,70)", + hover: "rgb(30, 30, 30)", + selected: "rgb(30, 30, 30)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 2.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 16, + y: -10, + z: 5, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(70, 70,70)", + hover: "rgb(30, 30, 30)", + selected: "rgb(30, 30, 30)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -2.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 16, + y: -10, + z: 5, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(70, 70,70)", + hover: "rgb(30, 30, 30)", + selected: "rgb(30, 30, 30)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 20.5, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 363.00000000000006, + y: 363.00000000000006, + z: 25, + }, + holes: [ + { + type: "RoundHole", + pos: { + x: 0, + y: 0, + }, + radius: 122.13174251267029, + }, + ], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -140, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + subId: "partition", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: 90, + y: 0, + z: 0, + }, + radius: 165, + length: 17, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: -90, + y: 0, + z: 0, + }, + radius: 165, + length: 17, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + holes: [ + { + type: "RoundHole", + pos: { + x: 0, + y: 0, + }, + radius: 122.13174251267029, + }, + ], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 85.3770327980859, + z: 107.05941287612754, + }, + rot: { + x: -0.14959965017094246, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 99, + y: 163, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -30.47071021853449, + z: 133.5009042424982, + }, + rot: { + x: 0.7479982508547127, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 99, + y: 163, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -123.37338695138381, + z: 59.413491792106406, + }, + rot: { + x: 1.645596151880368, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 99, + y: 163, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -123.37338695138382, + z: -59.41349179210638, + }, + rot: { + x: 2.5431940529060233, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 99, + y: 163, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -30.470710218534524, + z: -133.5009042424982, + }, + rot: { + x: 3.4407919539316785, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 99, + y: 163, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 85.37703279808588, + z: -107.05941287612755, + }, + rot: { + x: 4.338389854957334, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 99, + y: 163, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 136.93412874366484, + z: -3.3539188491992146e-14, + }, + rot: { + x: 5.235987755982989, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 99, + y: 163, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -8.5, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + subId: "impeller", + }, + groups: [], + }, + ], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 28, + y: 510, + z: 1050, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(255,255,255)", + hover: "rgb(255,255,255)", + selected: "rgb(255,255,255)", + dxf: "255", + opacity: 0, + shininess: 0, + }, + }, + ], + pos: { + x: -1145, + y: 340, + z: 60, + }, + rot: { + x: -3.141592653589793, + y: 0, + z: -3.141592653589793, + }, + data: { + id: "c749d884-a9e6-4e23-87a9-72abedfadfe8", + box: "box", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -279.5, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 29, + y: 51, + z: 1150, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 279.5, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 29, + y: 51, + z: 1150, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -549.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 29, + y: 508, + z: 51, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 549.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 29, + y: 508, + z: 51, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Text", + pos: { + x: 240, + y: 0, + z: 0, + }, + text: "", + fontSize: 44, + rot: { + x: 0, + y: 0, + z: 0, + }, + }, + material: { + type: "Phong", + normal: "rgb(90,90,90)", + hover: "rgb(55,55,55)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: -1560, + y: 340, + z: 60, + }, + rot: { + x: -3.141592653589793, + y: 0, + z: -3.141592653589793, + }, + data: { + id: "308a08d0-2a03-41f2-b4de-b3ad4f359e55", + box: "box", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: -45, + y: 0, + z: 0, + }, + radius: 30.800000000000004, + length: 81, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(189,0,94)", + hover: "rgb(130,32,42)", + selected: "rgb(14,82,184)", + dxf: "232", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: 45, + y: 0, + z: 0, + }, + radius: 55, + length: 99.00000000000001, + rot: { + x: 0, + y: 0, + z: -1.5707963267948966, + }, + }, + material: { + type: "Lambert", + normal: "rgb(189,0,94)", + hover: "rgb(130,32,42)", + selected: "rgb(14,82,184)", + dxf: "232", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 599, + y: 629, + z: 1309, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(43, 103, 119)", + hover: "rgb(3, 43, 79)", + selected: "rgb(14,82,184)", + dxf: "143", + opacity: 0.06, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -706, + }, + rot: { + x: 0, + y: 3.141592653589793, + z: 3.141592653589793, + }, + size: { + x: 200, + y: 200, + z: 0, + }, + holes: [], + }, + material: { + type: "Basic", + normal: "rgb(255,255,255)", + hover: "rgb(205,205,205)", + selected: "rgb(99,152,231)", + dxf: "255", + opacity: 1, + shininess: 50, + image: { + type: "UrlImage", + url: "/promaster-blobs/4b89d06f6aee7921c6623d80eeb1b6bade31579d?database_id=dc3fafd0-349f-4282-9ccd-2e98381db9c2", + imageType: "jpeg", + }, + }, + }, + ], + pos: { + x: 470, + y: -340, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "ff2f492f-07d1-4f2d-9dda-aa9f7a49a1ff", + box: "box", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: -149, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 1310, + y: 630, + z: 2, + }, + holes: [ + { + type: "RoundHole", + pos: { + x: 0, + y: 0, + }, + radius: 122.13174251267029, + }, + ], + }, + material: { + type: "Phong", + normal: "rgb(170,170,180)", + hover: "rgb(130,130,140)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 124.80434687942565, + z: 124.80434687942565, + }, + rot: { + x: 0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 214, + y: 23, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -124.80434687942565, + z: 124.80434687942565, + }, + rot: { + x: 0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 214, + y: 23, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 124.80434687942565, + z: -124.80434687942565, + }, + rot: { + x: 0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 214, + y: 23, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -124.80434687942565, + z: -124.80434687942565, + }, + rot: { + x: 0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 214, + y: 23, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 118.5, + y: 0, + z: 0, + }, + rot: { + x: 0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 23, + y: 376, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 118.5, + y: 0, + z: 0, + }, + rot: { + x: -0.7853981633974483, + y: 0, + z: 0, + }, + size: { + x: 23, + y: 376, + z: 23, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: 120, + y: 0, + z: 0, + }, + radius: 0, + length: 60, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + subId: "fan", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 2.5, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 16, + y: 5, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(70, 70,70)", + hover: "rgb(30, 30, 30)", + selected: "rgb(30, 30, 30)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -2.5, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 16, + y: 5, + z: 0, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(70, 70,70)", + hover: "rgb(30, 30, 30)", + selected: "rgb(30, 30, 30)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 2.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 16, + y: -10, + z: 5, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(70, 70,70)", + hover: "rgb(30, 30, 30)", + selected: "rgb(30, 30, 30)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -2.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 16, + y: -10, + z: 5, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(70, 70,70)", + hover: "rgb(30, 30, 30)", + selected: "rgb(30, 30, 30)", + dxf: "1", + opacity: 1, + shininess: 0, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 20.5, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 363.00000000000006, + y: 363.00000000000006, + z: 25, + }, + holes: [ + { + type: "RoundHole", + pos: { + x: 0, + y: 0, + }, + radius: 122.13174251267029, + }, + ], + }, + material: { + type: "Phong", + normal: "rgb(130, 130, 130)", + hover: "rgb(100, 100, 100)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -140, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + subId: "partition", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: 90, + y: 0, + z: 0, + }, + radius: 165, + length: 17, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Cylinder", + pos: { + x: -90, + y: 0, + z: 0, + }, + radius: 165, + length: 17, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + holes: [ + { + type: "RoundHole", + pos: { + x: 0, + y: 0, + }, + radius: 122.13174251267029, + }, + ], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 85.3770327980859, + z: 107.05941287612754, + }, + rot: { + x: -0.14959965017094246, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 99, + y: 163, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -30.47071021853449, + z: 133.5009042424982, + }, + rot: { + x: 0.7479982508547127, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 99, + y: 163, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -123.37338695138381, + z: 59.413491792106406, + }, + rot: { + x: 1.645596151880368, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 99, + y: 163, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -123.37338695138382, + z: -59.41349179210638, + }, + rot: { + x: 2.5431940529060233, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 99, + y: 163, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -30.470710218534524, + z: -133.5009042424982, + }, + rot: { + x: 3.4407919539316785, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 99, + y: 163, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 85.37703279808588, + z: -107.05941287612755, + }, + rot: { + x: 4.338389854957334, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 99, + y: 163, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 136.93412874366484, + z: -3.3539188491992146e-14, + }, + rot: { + x: 5.235987755982989, + y: 0.01, + z: 1.5707963267948966, + }, + size: { + x: 99, + y: 163, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(22,65,148)", + hover: "rgb(12,55,138)", + selected: "rgb(14,82,184)", + dxf: "0", + opacity: 1, + shininess: 100, + }, + }, + ], + pos: { + x: -8.5, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + subId: "impeller", + }, + groups: [], + }, + ], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 299, + y: 630, + z: 1310, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(43, 103, 119)", + hover: "rgb(3, 43, 79)", + selected: "rgb(14,82,184)", + dxf: "143", + opacity: 0.06, + shininess: 50, + }, + }, + ], + pos: { + x: 920, + y: -340, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "024792b8-9ac3-4430-8d68-8438bb441476", + box: "box", + }, + groups: [], + }, + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: 0, + y: -390, + z: -605, + }, + radius: 16.5, + length: 150, + rot: { + x: 0, + y: 0, + z: 0, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(90,90,90)", + hover: "rgb(55,55,55)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 920, + y: -340, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "88cf90c4-12e5-4d58-8254-dcc62adfaf1b", + box: "", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: -15, + z: 0, + }, + rot: { + x: 1.5707963267948966, + y: 0, + z: 0, + }, + size: { + x: 300, + y: 1310, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(90,90,90)", + hover: "rgb(55,55,55)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: 655, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 300, + y: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(90,90,90)", + hover: "rgb(55,55,55)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 0, + y: 0, + z: -655, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 300, + y: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(90,90,90)", + hover: "rgb(55,55,55)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: 150, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 1310, + y: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(90,90,90)", + hover: "rgb(55,55,55)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Plane", + pos: { + x: -150, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 1.5707963267948966, + z: 0, + }, + size: { + x: 1310, + y: 30, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(90,90,90)", + hover: "rgb(55,55,55)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: -298, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 28, + y: 510, + z: 1050, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(255,255,255)", + hover: "rgb(255,255,255)", + selected: "rgb(255,255,255)", + dxf: "255", + opacity: 0, + shininess: 0, + }, + }, + ], + pos: { + x: 1085, + y: -340, + z: 60, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "3d805ddb-24ca-4ca1-83ef-3016595f8b39", + box: "box", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Box", + pos: { + x: 0, + y: -279.5, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 29, + y: 51, + z: 1150, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 279.5, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 29, + y: 51, + z: 1150, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: -549.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 29, + y: 508, + z: 51, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Box", + pos: { + x: 0, + y: 0, + z: 549.5, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + size: { + x: 29, + y: 508, + z: 51, + }, + holes: [], + }, + material: { + type: "Phong", + normal: "rgb(230,230,230)", + hover: "rgb(230,230,230)", + selected: "rgb(14,82,184)", + dxf: "255", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + { + meshes: [ + { + geometry: { + type: "Text", + pos: { + x: 240, + y: 0, + z: 0, + }, + text: "", + fontSize: 44, + rot: { + x: 0, + y: 3.141592653589793, + z: 0, + }, + }, + material: { + type: "Phong", + normal: "rgb(90,90,90)", + hover: "rgb(55,55,55)", + selected: "rgb(14,82,184)", + dxf: "252", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 1500, + y: -340, + z: 60, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: { + id: "3c82466d-8c27-4f6e-802f-35a7af55a046", + box: "box", + }, + groups: [ + { + meshes: [ + { + geometry: { + type: "Cylinder", + pos: { + x: -45, + y: 0, + z: 0, + }, + radius: 30.800000000000004, + length: 81, + rot: { + x: 0, + y: 0, + z: 1.5707963267948966, + }, + holes: [], + }, + material: { + type: "Lambert", + normal: "rgb(18, 99,119)", + hover: "rgb(14,82,184)", + selected: "rgb(14,82,184)", + dxf: "146", + opacity: 1, + shininess: 50, + }, + }, + { + geometry: { + type: "Cone", + pos: { + x: 45, + y: 0, + z: 0, + }, + radius: 55, + length: 99.00000000000001, + rot: { + x: 0, + y: 0, + z: -1.5707963267948966, + }, + }, + material: { + type: "Lambert", + normal: "rgb(18, 99,119)", + hover: "rgb(14,82,184)", + selected: "rgb(14,82,184)", + dxf: "146", + opacity: 1, + shininess: 50, + }, + }, + ], + pos: { + x: 0, + y: 0, + z: 0, + }, + rot: { + x: 0, + y: 0, + z: 0, + }, + data: {}, + groups: [], + }, + ], + }, + ], + dimensions_deprecated: { + dimensions: [], + material: { + type: "Basic", + normal: "rgb(225,225,225)", + hover: "rgb(225,225,225)", + selected: "rgb(225,225,225)", + dxf: "8", + opacity: 1, + shininess: 50, + }, + bounds: { + front: { + min: { + x: 0, + y: 0, + }, + max: { + x: 0, + y: 0, + }, + }, + back: { + min: { + x: 0, + y: 0, + }, + max: { + x: 0, + y: 0, + }, + }, + left: { + min: { + x: 0, + y: 0, + }, + max: { + x: 0, + y: 0, + }, + }, + right: { + min: { + x: 0, + y: 0, + }, + max: { + x: 0, + y: 0, + }, + }, + top: { + min: { + x: 0, + y: 0, + }, + max: { + x: 0, + y: 0, + }, + }, + bottom: { + min: { + x: 0, + y: 0, + }, + max: { + x: 0, + y: 0, + }, + }, + threeD: { + min: { + x: 0, + y: 0, + z: 0, + }, + max: { + x: 0, + y: 0, + z: 0, + }, + }, + }, + }, + rotation_deprecated: { + x: -3.141592653589793, + y: 0, + z: -3.141592653589793, + }, + data: {}, +} as unknown as Scene;