commit 04cb7558d00d43ffc1652f88e17107426450351d Author: lixiang <504331699@qq.com> Date: Thu Aug 7 17:35:47 2025 +0800 feat:初步实现 自测验证种 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..55b3403 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.tgz +node_modules/* +*.yaml +dist/* \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..81638bc --- /dev/null +++ b/README.md @@ -0,0 +1,111 @@ +# @mes-processors/libs + +这是一个用于处理MES(制造执行系统)相关工作流的处理器类库。 + +## 安装 + +在内网环境下执行以下脚本进行安装 + +```sh +pnpm add http://gitea.cf/MES-FE/mes-packages/releases/download/0.1/mes-processors-libs-0.1.0.tgz +``` + +> [!CAUTION] +> 在安装库之前,请确认以下信息: +> +> - 该库发布于内网gitea仓库的release中,所以你需要提前在gitea中进行登录,并确保你有该仓库的访问权限。 +> - 库的版本需要手动进行控制,注意上述链接中的版本信息,在安装前需要主动修改版本号,请前往来确认最新版本。 + +## 使用 + +该库提供了MES/iMES公用的处理器,并已配置为导出项,请参考以下Typescript代码进行使用: + +```ts +// 引入矩形优化处理器 +import { RectLayoutProcConfig } from 'cut-abstractions'; +import { RectLayoutProc } from '@mes-processors/libs'; + +// 实例化处理器 +const proc = new RectLayoutProc(); +// 构建上下文f proc.exec>[0] = { + input: testObj, + params: new RectLayoutProcConfig() +}; +// 异步执行 +const ctx: Parameters [!NOTE] +> 发布前记得更改版本号 + +### 约定 + +**目录** + +``` +src +├── modules 项目模块分组 +├── processors 处理器 +└── utils 公用的工具类 +``` + +**导出和打包** + +- 编写的处理器请在`src/index.ts`中进行导出 +- 编写的工具类请在`src/utils/index.ts`中进行导出 +- 在打包时项目仅会对`src/index.ts`进行打包,工具类相关模块不会进行打包 +- 关于打包相关明细请自行查看相关文件 + - [package.json](package.json) + - [vite.config.ts](vite.config.ts) + +> [!WARNING] +> 在该工作区中编写模块时,禁止使用绝对路径进行导入,禁止在`tsconfig.json`或`vite.config.ts`中添加"@"别名,所有导入语句请使用相对路径进行引入,否则会因monorepo内部导入混乱导致模块解析失败。 + +### 测试 + +项目使用[Vitest](http://vitest.dev/)作为单元测试框架,若要对TS文件编写单元测试,请在文件的同目录下创建`<文件名>.test.ts`文件,并遵循Vitest规范编写单元测试。 + +要执行单元测试,请运行下面的命令: +```sh +pnpm test +``` diff --git a/package.json b/package.json new file mode 100644 index 0000000..4f848c5 --- /dev/null +++ b/package.json @@ -0,0 +1,38 @@ +{ + "name": "@imes-modelprocesspoints/libs", + "version": "0.1.0", + "description": "", + "type": "module", + "scripts": { + "build": "vite build", + "test": "vitest", + "check": "tsc --noEmit --skipLibCheck -p tsconfig.app.json" + }, + "files": [ + "dist", + "package.json", + "src", + "tsconfig.json", + "tsconfig.app.json", + "tsconfig.node.json" + ], + "exports": { + ".": "./src/index.ts", + "./utils": "./src/utils/index.ts" + }, + "dependencies": { + "cut-abstractions": "http://gitea.cf/MES-FE/cut-abstractions/releases/download/0.2/cut-abstractions-0.2.1.tgz" + }, + "devDependencies": { + "@types/node": "^24.0.10", + "typescript": "~5.8.3", + "vite": "^7.0.0", + "vite-plugin-dts": "^4.5.4", + "vite-plugin-node-polyfills": "^0.24.0", + "vite-plugin-resolve": "^2.5.2", + "vitest": "^3.2.4" + }, + "keywords": [], + "author": "", + "license": "ISC" +} \ No newline at end of file diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..e74444e --- /dev/null +++ b/src/index.ts @@ -0,0 +1,8 @@ +/** + * @package @mes-cutpoint/libs + * @author LX + * @description 工作流处理器类库,在这个文件中使用导出时,不要在路径中使用'@',否则模块无法加载 + */ + +// CutOrder +export * from "./processors/cutPoint/CutPoint"; \ No newline at end of file diff --git a/src/modules/cutPoint/ArrayExt.ts b/src/modules/cutPoint/ArrayExt.ts new file mode 100644 index 0000000..7cfba7b --- /dev/null +++ b/src/modules/cutPoint/ArrayExt.ts @@ -0,0 +1,375 @@ +export class List extends Array +{ + /** 返回符合条件的第一个元素 */ + first(fn: (item: Item) => boolean): Item | null + { + if (this.length == 0) + return null + for (const item of this) + { + if (fn(item)) + return item + } + return null + } + + /** 返回符合条件的最后一元素 */ + last(fn: (t: Item) => boolean): Item | null + { + if (this.length == 0) + return null + for (let i = this.length - 1; i >= 0; i--) + { + if (fn(this[i])) + return this[i] + } + return null + } + + /** 最大值 */ + max(fn: (item: Item) => T): T + { + let maxV: T + for (const i of this) + { + let v = fn(i) + if (maxV == null) + { + maxV = fn(i) + } + else + { + if (v > maxV) + { + maxV = v + } + } + } + return maxV + } + + /** 最小值 */ + min(fn: (item: Item) => T): T + { + let minV: T + for (const i of this) + { + let v = fn(i) + if (minV == null) + { + minV = fn(i) + } + else + { + if (v < minV) + { + minV = v + } + } + } + return minV + } + + /** 累加 */ + sum(fn: (item: Item) => number): number + { + let v: number = 0 + for (const t of this) + { + v = v + fn(t) + } + return v + } + + /** 平均值 */ + avg(fn: (item: Item) => number): number + { + if (this.length == 0) + return 0 + let sum = this.sum(fn) + return sum / this.length + } + + /** 满足条件的元素数量 */ + count(fn: (item: Item) => number): number + { + if (this.length == 0) + return 0 + let c = 0 + for (const item of this) + { + if (fn(item)) + c = c + 1 + } + return c + } + + FindMax(fn: (item: Item) => T): Item + { + return this.reduce((a: Item, b: Item): Item => fn(a) > fn(b) ? a : b) + } +} + +export class ArrayExt +{ + /** 返回满足条件的元素数量 */ + static count(list: Item[], fn: (item: Item) => boolean): number + { + if (list.length == 0) + return 0 + let c = 0 + for (const item of list) + { + if (fn(item)) + c = c + 1 + } + return c + } + + /** 移除 */ + static remove(list: Item[], obj: Item) + { + let index = list.findIndex(t => t == obj) + if (index == -1) + return + list.splice(index, 1) + } + + /** 返回符合条件的第一个元素 */ + static first(list: Item[], fn: (item: Item) => boolean, orderFn1: (item: Item) => number = null, orderFn2: (item: Item) => number = null): Item + { + if (list.length == 0) + return null + if (orderFn1 == null) + { + for (const item of list) + { + if (fn(item)) + return item + } + return null + } + + let minValue1: number + let minValue2: number + let minItem: Item + for (const item of list) + { + if (fn(item) == false) + continue + let v1 = orderFn1(item) + let v2 = orderFn2 != null ? orderFn2(item) : 0 + if (minValue1 == null || v1 < minValue1 || (v1 == minValue1 && v2 < minValue2)) + { + minValue1 = v1 + minValue2 = v2 + minItem = item + } + } + return minItem + } + + /** 返回符合条件的最后一元素 */ + static last(list: Item[], fn: (t: Item) => boolean, orderFn1: (item: Item) => number = null, orderFn2: (item: Item) => number = null): Item + { + if (list.length == 0) + return null + if (orderFn1 == null) + { + for (let i = list.length - 1; i >= 0; i--) + { + if (fn(list[i])) + return list[i] + } + return null + } + + // + let maxValue1: number + let maxValue2: number + let maxItem: Item + for (const item of list) + { + if (fn(item) == false) + continue + let v1 = orderFn1(item) + let v2 = orderFn2 ? orderFn2(item) : 0 + if (maxValue1 == null || v1 > maxValue1 || (v1 == maxValue1 && v2 > maxValue2)) + { + maxValue1 = v1 + maxValue2 = v2 + maxItem = item + } + } + return maxItem + } + + /** 取最大值 */ + static max(list: T1[], fn: (item: T1) => T2, whereF: (item: T1) => boolean = null, defaultV: T2 = null): T2 + { + let maxV: T2 + for (const i of list) + { + if (whereF && whereF(i) == false) + continue + let v = fn(i) + if (maxV == undefined) + { + maxV = fn(i) + } + else + { + if (v > maxV) + { + maxV = v + } + } + } + if (maxV != undefined) + return maxV + return defaultV + } + + /** 最小值 */ + static min(list: Item[], fn: (item: Item) => T, whereF: (item: Item) => boolean = null, defaultV: T = null): T + { + let minV: T + for (const i of list) + { + if (whereF && whereF(i) == false) + continue + let v = fn(i) + if (minV == undefined) + { + minV = v + } + else + { + if (v < minV) + { + minV = v + } + } + } + if (minV != undefined) + return minV + return defaultV + } + + /** 累加 */ + static sum(list: Item[], fn: (item: Item) => number, wn?: (item: Item) => boolean): number + { + let v: number = 0 + for (const t of list) + { + if (wn && wn(t) == false) + continue + v = v + fn(t) + } + return v + } + + /** 平均值 */ + static avg(list: Item[], fn: (item: Item) => number): number + { + if (this.length == 0) + return 0 + let sum = ArrayExt.sum(list, fn) + return sum / this.length + } + + /** 排序 */ + static sortBy(list: Item[], fn: (item: Item) => number, fn2: (item: Item) => number = null) + { + if (fn2 == null) + return list.sort((a: Item, b: Item): number => fn(a) - fn(b)) + else + return list.sort((a: Item, b: Item): number => fn(a) == fn(b) ? (fn2(a) - fn2(b)) : fn(a) - fn(b)) + } + + /** 降序 排序 */ + static sortByDescending(list: Item[], fn: (item: Item) => number) + { + list.sort((a: Item, b: Item): number => fn(b) - fn(a)) + } + + /** 排序成新的数组 */ + static orderBy(list: Item[], fn: (item: Item) => number, fn2: (item: Item) => number = null): Item[] + { + let newList = list.concat([]) + if (fn2 == null) + return newList.sort((a: Item, b: Item): number => fn(a) - fn(b)) + else + return newList.sort((a: Item, b: Item): number => fn(a) == fn(b) ? (fn2(a) - fn2(b)) : fn(a) - fn(b)) + } + + /** 降序成新的数组 */ + static orderByDescending(list: Item[], fn: (item: Item) => number, fn2: (item: Item) => number = null): Item[] + { + let newList = list.concat([]) + if (fn2 == null) + return list.sort((a: Item, b: Item): number => fn(b) - fn(a)) + else + return list.sort((a: Item, b: Item): number => fn(a) == fn(b) ? (fn2(b) - fn2(a)) : fn(b) - fn(a)) + } + + /** 分组 */ + static groupBy(list: Item[], fn: (item: Item) => gT): GroupItem[] + { + let groups = new Array>() + + for (const item of list) + { + let key = fn(item) + let group = groups.find(t => t.key == key) + if (group == null) + { + group = new GroupItem(key) + groups.push(group) + } + group.push(item) + } + return groups + } + + /** + * 选择 + * let newObjectList = ArrayExt.Select(list,t=>({pA:t.name, pB:t.age + "_"+ t.month}) ) ; + */ + static Select(list: Item[], fn: (item: Item) => rT): rT[] + { + let newList = new Array() + for (const t of list) + { + newList.push(fn(t)) + } + return newList + } + + /** 过来,并按顺序排序 */ + static where(list: Item[], whereFn: (item: Item) => boolean, orderfn1: (item: Item) => number = null, orderfn2: (item: Item) => number = null): Item[] + { + let newList = list.filter(whereFn) + if (orderfn1 == null && orderfn2 == null) + return newList + return ArrayExt.sortBy(newList, orderfn1, orderfn2) + } +} + +export class GroupItem +{ + key: gT + get count() { return this.list.length } + list: Item[] + + constructor(k: gT) + { + this.key = k + this.list = [] + } + + push(d: Item) + { + this.list.push(d) + } +} diff --git a/src/processors/modelProcessPoints/modelProcessPoints.test.ts b/src/processors/modelProcessPoints/modelProcessPoints.test.ts new file mode 100644 index 0000000..1c57465 --- /dev/null +++ b/src/processors/modelProcessPoints/modelProcessPoints.test.ts @@ -0,0 +1,51859 @@ +import { test } from "vitest"; +import { ModelProcessItem, ModelProcessPointsInput, ModelProcessPointsInputBlock, ModelProcessPointsProc, ModelProcessPointsProcConfig, OffsetInfo, PositionType } from "./modelProcessPoints"; +import { ProcessorContext } from "cut-abstractions"; + +test('modelProcessPointsTest1', async () => { + + /** 测试1 模拟 优化后 转换 造型坐标的场景 */ + // console.log('优化后为经过 坐标转换的数据', data); + let conf: ModelProcessPointsProcConfig = { + name: '', + version: '', + load: () => { }, + toJson: () => '' + } + let testData = data1 // data + + testData.blockList.forEach(async block => { + let offsetInfo: OffsetInfo = { + left: block.orgSizeExpand.left, + right: block.orgSizeExpand.right, + top: block.orgSizeExpand.top, + bottom: block.orgSizeExpand.bottom + } + let models: ModelProcessItem[] = [] + block.blockDetail.models.forEach(m => { + let temp: ModelProcessItem = { + id: `${block.blockNo}-${m.modelId}`, + pts: m.pointList.map(p => { + return { + x: p.pointX, + y: p.pointY + } + }), + buls: m.pointList.map(p => p.curve), + face: m.face + } + + models.push(temp) + }) + let blockInput: ModelProcessPointsInputBlock = { + id: block.blockNo, + x: block.placeX, + y: block.placeY, + length: block.length, + width: block.width, + models: models, + positionType: PositionType.FRONT, // 这里刚优化完 里面的加工坐标没转换 都是 基于 正面的数据 所以 设为正面 实际情况 这里 根据需求传入 + offsetInfo, + } + let input: ModelProcessPointsInput = { + block: blockInput, + targetPosition: block.placeStyle + } + let context:ProcessorContext = { + input: input, + params: conf, + output: {} + } + + const proc = new ModelProcessPointsProc() + await proc.exec(context) + console.log(`执行结束:${block.blockNo}`, + [context.input.block.models[0]?.pts[0].x,context.input.block.models[0]?.pts[0].y], + [context.output.block.models[0]?.pts[0].x,context.output.block.models[0]?.pts[0].y] + + ) + }) +}) + +/** 测试数据 矩形板 */ +const data = { + "sourceId": 0, + "boardNo": "", + "boardId": 2, + "fullBoardId": 0, + "width": 1220, + "length": 2440, + "area": 2.9768, + "blockCount": 5, + "blockArea": 1.2, + "usageRate": 40.31, + "points": [], + "isLocked": false, + "isCuted": false, + "cutedType": 0, + "blockList": [ + { + "blockDetail": { + "organId": 0, + "blockId": "1905521077598027776", + "pointDetail": [], + "modelDetail": [], + "holeDetail": [], + "offsetX": 1, + "offsetY": 1, + "cutWidth": 398, + "cutLength": 598, + "points": [], + "orgPoints": [], + "orgContourData": { + "pts": [ + { + "x": 0, + "y": 0 + }, + { + "x": 398, + "y": 0 + }, + { + "x": 398, + "y": 598 + }, + { + "x": 0, + "y": 598 + } + ], + "buls": [ + 0, + 0, + 0, + 0 + ] + }, + "holes": [], + "holeListFaceA": [], + "holeListFaceB": [], + "holeListThrough": [], + "holeListSide": [], + "models": [ + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 10, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "knifeRadius": 3, + "thickness": 10, + "dir": 0, + "outline": [ + { + "pts": { + "x": 369, + "y": -1, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 379, + "y": -1, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 379, + "y": 599, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 369, + "y": 599, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 369, + "y": -1, + "z": 0 + }, + "buls": 0, + "radius": null + } + ], + "holes": [], + "addLen": 0, + "addWidth": 0, + "addDepth": 0, + "brThickness": 18, + "boardContour": { + "pts": [ + { + "x": 0, + "y": 0 + }, + { + "x": 398, + "y": 0 + }, + { + "x": 398, + "y": 598 + }, + { + "x": 0, + "y": 598 + } + ], + "buls": [ + 0, + 0, + 0, + 0 + ] + } + }, + "pointList": [ + { + "pointX": 372, + "pointY": -1, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 372, + "pointY": 599, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 376, + "pointY": 599, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 376, + "pointY": -1, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 372, + "pointY": -1, + "radius": null, + "depth": null, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 372, + "pointY": 2, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 372, + "pointY": 596, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 376, + "pointY": 596, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 376, + "pointY": 2, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 372, + "pointY": 2, + "radius": 0, + "depth": 10, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 2, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 18, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "knifeRadius": 3, + "thickness": 18, + "dir": 0, + "outline": [ + { + "pts": { + "x": 99, + "y": 98.99999999999994, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 129, + "y": 98.99999999999994, + "z": 0 + }, + "buls": 0.41421356237309503, + "radius": null + }, + { + "pts": { + "x": 149, + "y": 118.99999999999994, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 149, + "y": 178.99999999999994, + "z": 0 + }, + "buls": 0.414213562373095, + "radius": null + }, + { + "pts": { + "x": 129, + "y": 198.99999999999994, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 99, + "y": 198.99999999999994, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 99, + "y": 98.99999999999994, + "z": 0 + }, + "buls": 0, + "radius": null + } + ], + "holes": [], + "addLen": 0, + "addWidth": 0, + "addDepth": 0, + "brThickness": 18, + "boardContour": { + "pts": [ + { + "x": 0, + "y": 0 + }, + { + "x": 398, + "y": 0 + }, + { + "x": 398, + "y": 598 + }, + { + "x": 0, + "y": 598 + } + ], + "buls": [ + 0, + 0, + 0, + 0 + ] + } + }, + "pointList": [ + { + "pointX": 102, + "pointY": 102, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 196, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 129, + "pointY": 196, + "radius": null, + "depth": null, + "curve": -0.414213562373095 + }, + { + "pointX": 146, + "pointY": 179, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 146, + "pointY": 119, + "radius": null, + "depth": null, + "curve": -0.41421356237309503 + }, + { + "pointX": 129, + "pointY": 102, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 102, + "radius": null, + "depth": null, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 102, + "pointY": 102, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 196, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 129, + "pointY": 196, + "radius": 17, + "depth": 18, + "curve": -0.41421356237309503 + }, + { + "pointX": 146, + "pointY": 179, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 146, + "pointY": 119, + "radius": 17, + "depth": 18, + "curve": -0.41421356237309503 + }, + { + "pointX": 129, + "pointY": 102, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 102, + "radius": 0, + "depth": 18, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + } + ], + "modelListFaceA": [ + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 10, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "knifeRadius": 3, + "thickness": 10, + "dir": 0, + "outline": [ + { + "pts": { + "x": 369, + "y": -1, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 379, + "y": -1, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 379, + "y": 599, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 369, + "y": 599, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 369, + "y": -1, + "z": 0 + }, + "buls": 0, + "radius": null + } + ], + "holes": [], + "addLen": 0, + "addWidth": 0, + "addDepth": 0, + "brThickness": 18, + "boardContour": { + "pts": [ + { + "x": 0, + "y": 0 + }, + { + "x": 398, + "y": 0 + }, + { + "x": 398, + "y": 598 + }, + { + "x": 0, + "y": 598 + } + ], + "buls": [ + 0, + 0, + 0, + 0 + ] + } + }, + "pointList": [ + { + "pointX": 372, + "pointY": -1, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 372, + "pointY": 599, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 376, + "pointY": 599, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 376, + "pointY": -1, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 372, + "pointY": -1, + "radius": null, + "depth": null, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 372, + "pointY": 2, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 372, + "pointY": 596, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 376, + "pointY": 596, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 376, + "pointY": 2, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 372, + "pointY": 2, + "radius": 0, + "depth": 10, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + } + ], + "modelListFaceB": [], + "modelListThrough": [ + { + "orderId": "", + "blockId": 0, + "modelId": 2, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 18, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "knifeRadius": 3, + "thickness": 18, + "dir": 0, + "outline": [ + { + "pts": { + "x": 99, + "y": 98.99999999999994, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 129, + "y": 98.99999999999994, + "z": 0 + }, + "buls": 0.41421356237309503, + "radius": null + }, + { + "pts": { + "x": 149, + "y": 118.99999999999994, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 149, + "y": 178.99999999999994, + "z": 0 + }, + "buls": 0.414213562373095, + "radius": null + }, + { + "pts": { + "x": 129, + "y": 198.99999999999994, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 99, + "y": 198.99999999999994, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 99, + "y": 98.99999999999994, + "z": 0 + }, + "buls": 0, + "radius": null + } + ], + "holes": [], + "addLen": 0, + "addWidth": 0, + "addDepth": 0, + "brThickness": 18, + "boardContour": { + "pts": [ + { + "x": 0, + "y": 0 + }, + { + "x": 398, + "y": 0 + }, + { + "x": 398, + "y": 598 + }, + { + "x": 0, + "y": 598 + } + ], + "buls": [ + 0, + 0, + 0, + 0 + ] + } + }, + "pointList": [ + { + "pointX": 102, + "pointY": 102, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 196, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 129, + "pointY": 196, + "radius": null, + "depth": null, + "curve": -0.414213562373095 + }, + { + "pointX": 146, + "pointY": 179, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 146, + "pointY": 119, + "radius": null, + "depth": null, + "curve": -0.41421356237309503 + }, + { + "pointX": 129, + "pointY": 102, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 102, + "radius": null, + "depth": null, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 102, + "pointY": 102, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 196, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 129, + "pointY": 196, + "radius": 17, + "depth": 18, + "curve": -0.41421356237309503 + }, + { + "pointX": 146, + "pointY": 179, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 146, + "pointY": 119, + "radius": 17, + "depth": 18, + "curve": -0.41421356237309503 + }, + { + "pointX": 129, + "pointY": 102, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 102, + "radius": 0, + "depth": 18, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + } + ], + "modelListSide": [], + "thickness": 18, + "isUnRegular": false, + "bigHoleInFaceA": false, + "holeCountFront": 0, + "holeCountBack": 0, + "holeCountThrough": 0, + "holeCountSide": 0, + "holeCountLeft": 0, + "holeCountRight": 0, + "holeCountTop": 0, + "holeCountBottom": 0, + "holeCountBevelled": 0, + "modelCountFront": 1, + "modelCountBack": 0, + "modelCountThrough": 1, + "hasModelThrogh": true, + "isTwoFaceProcess": false, + "placeStyleFront": 0, + "placeStyleFrontReverse": 1, + "placeStyleBack": 4, + "placeStyleBackReverse": 7, + "labelPosX": -1, + "labelPosY": -1, + "isInited": false, + "isChecked": false, + "isOffsetRounding": false, + "offsetKnifeRadius": 3, + "isUseSameKnifeToHelpCut": false, + "useSameKnifeToHelpCutGap": 0, + "preMillingExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "modelExpandSize": { + "left": 0, + "right": 0, + "top": 4, + "bottom": 4, + "width": 0, + "length": 8 + }, + "vKnifeModelExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "sameKnifeHelpExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "currentSizeExpand": { + "left": 3.005, + "right": 3.005, + "top": 4, + "bottom": 4, + "width": 6.01, + "length": 8 + }, + "borderContour": { + "placeStyle": 0, + "borderFinal": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 400, + "m_Y": 0 + }, + "tagData": 1, + "m_Length": 400 + }, + { + "m_StartPoint": { + "m_X": 400, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 400, + "m_Y": 600 + }, + "tagData": 1, + "m_Length": 600 + }, + { + "m_StartPoint": { + "m_X": 400, + "m_Y": 600 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 600 + }, + "tagData": 1, + "m_Length": 400 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 600 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "tagData": 1, + "m_Length": 600 + } + ], + "borderOrg": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_Length": 598 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 598 + } + ], + "borderPreMilling": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_Length": 598 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 598 + } + ], + "polylineOrg": { + "_isErase": false, + "IsEmbedEntity": false, + "OnlyRenderType": true, + "HasEdgeRenderType": false, + "HasPlaceFaceRenderType": false, + "HasBigHoleFaceRenderType": false, + "_CacheDrawObject": {}, + "_Color": 7, + "_Matrix": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_SpaceOCS": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_Visible": true, + "_VisibleInRender": true, + "_Freeze": false, + "_LockMaterial": false, + "__ProcessingGroupList": [], + "NeedUpdateFlag": 0, + "AutoUpdate": true, + "__UpdateVersion__": 1, + "_RoomName": "", + "_CabinetName": "", + "_LineData": [ + { + "pt": { + "x": 0, + "y": 0 + }, + "bul": 0 + }, + { + "pt": { + "x": 398, + "y": 0 + }, + "bul": 0 + }, + { + "pt": { + "x": 398, + "y": 598 + }, + "bul": 0 + }, + { + "pt": { + "x": 0, + "y": 598 + }, + "bul": 0 + } + ], + "_DisplayAccuracy": 0, + "_ClosedMark": true + }, + "border": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_Length": 598 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 598 + } + ], + "borderSameKnifeHelpCut": null, + "cutLines": null, + "cutLinesSameKnifeHelpCut": null, + "borderMoving": null, + "borderModelThrough": [ + [ + { + "m_StartPoint": { + "m_X": 99, + "m_Y": 98.99999999999994 + }, + "m_EndPoint": { + "m_X": 129, + "m_Y": 98.99999999999994 + }, + "m_Length": 30 + }, + { + "m_StartPoint": { + "m_X": 129, + "m_Y": 98.99999999999994 + }, + "m_EndPoint": { + "m_X": 149, + "m_Y": 118.99999999999994 + }, + "m_Center": { + "m_X": 129, + "m_Y": 118.99999999999994 + }, + "m_Radius": 20.000000000000004, + "m_StartAngle": 4.71238898038469, + "m_EndAngle": 0, + "m_AllAngle": 1.5707963267948966, + "m_Bul": 0.41421356237309503 + }, + { + "m_StartPoint": { + "m_X": 149, + "m_Y": 118.99999999999994 + }, + "m_EndPoint": { + "m_X": 149, + "m_Y": 178.99999999999994 + }, + "m_Length": 60 + }, + { + "m_StartPoint": { + "m_X": 149, + "m_Y": 178.99999999999994 + }, + "m_EndPoint": { + "m_X": 129, + "m_Y": 198.99999999999994 + }, + "m_Center": { + "m_X": 129, + "m_Y": 178.99999999999994 + }, + "m_Radius": 20.000000000000004, + "m_StartAngle": 0, + "m_EndAngle": 1.5707963267948966, + "m_AllAngle": 1.5707963267948963, + "m_Bul": 0.414213562373095 + }, + { + "m_StartPoint": { + "m_X": 129, + "m_Y": 198.99999999999994 + }, + "m_EndPoint": { + "m_X": 99, + "m_Y": 198.99999999999994 + }, + "m_Length": 30 + }, + { + "m_StartPoint": { + "m_X": 99, + "m_Y": 198.99999999999994 + }, + "m_EndPoint": { + "m_X": 99, + "m_Y": 98.99999999999994 + }, + "m_Length": 100 + }, + { + "m_StartPoint": { + "m_X": 99, + "m_Y": 98.99999999999994 + }, + "m_EndPoint": { + "m_X": 99, + "m_Y": 98.99999999999994 + }, + "m_Length": 0 + } + ] + ], + "borderModelThroughR": [ + 0 + ], + "cutLinesModelThrough": [ + [ + { + "m_StartPoint": { + "m_X": 99, + "m_Y": 98.99999999999994 + }, + "m_EndPoint": { + "m_X": 129, + "m_Y": 98.99999999999994 + }, + "m_Length": 30 + }, + { + "m_StartPoint": { + "m_X": 129, + "m_Y": 98.99999999999994 + }, + "m_EndPoint": { + "m_X": 149, + "m_Y": 118.99999999999994 + }, + "m_Center": { + "m_X": 129, + "m_Y": 118.99999999999994 + }, + "m_Radius": 20.000000000000004, + "m_StartAngle": 4.71238898038469, + "m_EndAngle": 0, + "m_AllAngle": 1.5707963267948966, + "m_Bul": 0.41421356237309503 + }, + { + "m_StartPoint": { + "m_X": 149, + "m_Y": 118.99999999999994 + }, + "m_EndPoint": { + "m_X": 149, + "m_Y": 178.99999999999994 + }, + "m_Length": 60 + }, + { + "m_StartPoint": { + "m_X": 149, + "m_Y": 178.99999999999994 + }, + "m_EndPoint": { + "m_X": 129, + "m_Y": 198.99999999999994 + }, + "m_Center": { + "m_X": 129, + "m_Y": 178.99999999999994 + }, + "m_Radius": 20.000000000000004, + "m_StartAngle": 0, + "m_EndAngle": 1.5707963267948966, + "m_AllAngle": 1.5707963267948963, + "m_Bul": 0.414213562373095 + }, + { + "m_StartPoint": { + "m_X": 129, + "m_Y": 198.99999999999994 + }, + "m_EndPoint": { + "m_X": 99, + "m_Y": 198.99999999999994 + }, + "m_Length": 30 + }, + { + "m_StartPoint": { + "m_X": 99, + "m_Y": 198.99999999999994 + }, + "m_EndPoint": { + "m_X": 99, + "m_Y": 98.99999999999994 + }, + "m_Length": 100 + }, + { + "m_StartPoint": { + "m_X": 99, + "m_Y": 98.99999999999994 + }, + "m_EndPoint": { + "m_X": 99, + "m_Y": 98.99999999999994 + }, + "m_Length": 0 + } + ] + ], + "borderInnerPlace": [ + [ + { + "m_StartPoint": { + "m_X": 102.005, + "m_Y": 102.00499999999994 + }, + "m_EndPoint": { + "m_X": 129, + "m_Y": 102.00499999999994 + }, + "m_Length": 26.995000000000005 + }, + { + "m_StartPoint": { + "m_X": 129, + "m_Y": 102.00499999999994 + }, + "m_EndPoint": { + "m_X": 145.995, + "m_Y": 118.99999999999994 + }, + "m_Center": { + "m_X": 129, + "m_Y": 118.99999999999994 + }, + "m_Radius": 16.995000000000008, + "m_StartAngle": 4.71238898038469, + "m_EndAngle": 0, + "m_AllAngle": 1.5707963267948966, + "m_Bul": 0.41421356237309503 + }, + { + "m_StartPoint": { + "m_X": 145.995, + "m_Y": 118.99999999999994 + }, + "m_EndPoint": { + "m_X": 145.995, + "m_Y": 178.99999999999994 + }, + "m_Length": 60 + }, + { + "m_StartPoint": { + "m_X": 145.995, + "m_Y": 178.99999999999994 + }, + "m_EndPoint": { + "m_X": 129, + "m_Y": 195.99499999999995 + }, + "m_Center": { + "m_X": 129, + "m_Y": 178.99999999999994 + }, + "m_Radius": 16.995000000000008, + "m_StartAngle": 0, + "m_EndAngle": 1.5707963267948966, + "m_AllAngle": 1.5707963267948966, + "m_Bul": 0.41421356237309503 + }, + { + "m_StartPoint": { + "m_X": 129, + "m_Y": 195.99499999999995 + }, + "m_EndPoint": { + "m_X": 102.005, + "m_Y": 195.99499999999995 + }, + "m_Length": 26.995000000000005 + }, + { + "m_StartPoint": { + "m_X": 102.005, + "m_Y": 195.99499999999995 + }, + "m_EndPoint": { + "m_X": 102.005, + "m_Y": 102.00499999999994 + }, + "m_Length": 93.99000000000001 + } + ] + ], + "blockInnerSpace": [], + "blockOuterSpace": null, + "polylines2vModel": [], + "polylinesOutModel": [ + { + "_isErase": false, + "IsEmbedEntity": false, + "OnlyRenderType": true, + "HasEdgeRenderType": false, + "HasPlaceFaceRenderType": false, + "HasBigHoleFaceRenderType": false, + "_CacheDrawObject": {}, + "_Color": 7, + "_Matrix": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_SpaceOCS": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_Visible": true, + "_VisibleInRender": true, + "_Freeze": false, + "_LockMaterial": false, + "__ProcessingGroupList": [], + "NeedUpdateFlag": 0, + "AutoUpdate": true, + "__UpdateVersion__": 1, + "_RoomName": "", + "_CabinetName": "", + "_LineData": [ + { + "pt": { + "x": 379, + "y": -3.9999999999998863 + }, + "bul": 0 + }, + { + "pt": { + "x": 379, + "y": 602 + }, + "bul": 0 + }, + { + "pt": { + "x": 369, + "y": 601.9999999999999 + }, + "bul": 0 + }, + { + "pt": { + "x": 369, + "y": -4 + }, + "bul": 0 + } + ], + "_DisplayAccuracy": 0, + "_ClosedMark": true + } + ], + "placeContours": [] + }, + "remarkParams": {} + }, + "orderId": "1905521075534430208", + "goodsId": "SP202001031", + "roomId": 0, + "bodyId": 0, + "blockId": "1905521077598027776", + "oldBlockId": "1905521077598027776", + "blockNo": "25030882560", + "customPlateNo": "F128-R001-C001-P001", + "labelNo": "", + "blockName": "背板-挖穿+正面槽", + "plateRemark": "", + "remark1": "", + "remark2": "", + "remark3": "", + "remark4": "", + "remark5": "", + "extraRemark": {}, + "width": 400, + "length": 600, + "thickness": 18, + "area": 0.24, + "sealLeft": 1, + "sealRight": 1, + "sealTop": 1, + "sealBottom": 1, + "cutWidth": 398, + "cutLength": 598, + "cutArea": 0.238004, + "isAdditionalBlock": false, + "isRemainBlock": false, + "texture": 0, + "placeHole": 2, + "isUnRegular": false, + "isTurnFaceToPlace": true, + "isTwoFaceToPlace": false, + "isCurvedGroundLine": false, + "isPlaced": true, + "fullBoardId": 0, + "boardId": 2, + "placeId": 1, + "placeX": 3.005, + "placeY": 4, + "placeStyle": 4, + "cutRegion": 0, + "cutOrder": 0, + "cutPointId": 0, + "placeWidth": 398, + "placeLength": 598, + "placeSealLeft": 0, + "placeSealRight": 0, + "placeSealTop": 0, + "placeSealBottom": 0, + "orgSizeExpand": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "placeOffX": 3.005, + "placeOffY": 4, + "isAutoPlaced": true, + "isOutBoard": false, + "isOverlap": false, + "placeDirection": "→", + "placeDirection_Length": "→", + "isDrilling": true, + "isModeling": true, + "overBlockFlag": 0, + "isCutOtherFace": false, + "isCutTurnOver": false, + "holeCountSideLeft": 0, + "holeCountSideRight": 0, + "holeCountSideTop": 0, + "holeCountSideBottom": 0, + "holeListFaceA": [], + "holeListFaceB": [], + "modelListFaceA": [], + "modelListFaceB": [], + "labelPosX": 0, + "labelPosY": 0, + "isCncLabelA": false, + "isCncLabelB": false, + "isCncLabelTurnOver": false, + "type": 2, + "openDoorType": 0, + "_blockId": "1905521077598027776" + }, + { + "blockDetail": { + "organId": 0, + "blockId": "1905521077635776512", + "pointDetail": [], + "modelDetail": [], + "holeDetail": [], + "offsetX": 1, + "offsetY": 1, + "cutWidth": 398, + "cutLength": 598, + "points": [], + "orgPoints": [], + "orgContourData": { + "pts": [ + { + "x": 0, + "y": 0 + }, + { + "x": 398, + "y": 0 + }, + { + "x": 398, + "y": 598 + }, + { + "x": 0, + "y": 598 + } + ], + "buls": [ + 0, + 0, + 0, + 0 + ] + }, + "holes": [], + "holeListFaceA": [], + "holeListFaceB": [], + "holeListThrough": [], + "holeListSide": [], + "models": [ + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 1, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 10, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "knifeRadius": 3, + "thickness": 10, + "dir": 0, + "outline": [ + { + "pts": { + "x": 369.0000000000002, + "y": -1, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 379.0000000000002, + "y": -1, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 379.0000000000002, + "y": 599, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 369.0000000000002, + "y": 599, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 369.0000000000002, + "y": -1, + "z": 0 + }, + "buls": 0, + "radius": null + } + ], + "holes": [], + "addLen": 0, + "addWidth": 0, + "addDepth": 0, + "brThickness": 18, + "boardContour": { + "pts": [ + { + "x": 0, + "y": 0 + }, + { + "x": 398, + "y": 0 + }, + { + "x": 398, + "y": 598 + }, + { + "x": 0, + "y": 598 + } + ], + "buls": [ + 0, + 0, + 0, + 0 + ] + } + }, + "pointList": [ + { + "pointX": 372, + "pointY": -1, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 372, + "pointY": 599, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 376, + "pointY": 599, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 376, + "pointY": -1, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 372, + "pointY": -1, + "radius": null, + "depth": null, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 372, + "pointY": 2, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 372, + "pointY": 596, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 376, + "pointY": 596, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 376, + "pointY": 2, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 372, + "pointY": 2, + "radius": 0, + "depth": 10, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 2, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 18, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "knifeRadius": 3, + "thickness": 18, + "dir": 0, + "outline": [ + { + "pts": { + "x": 99, + "y": 99.00000000000063, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 129, + "y": 99.00000000000063, + "z": 0 + }, + "buls": 0.41421356237309503, + "radius": null + }, + { + "pts": { + "x": 149, + "y": 119.00000000000063, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 149, + "y": 179.00000000000063, + "z": 0 + }, + "buls": 0.414213562373095, + "radius": null + }, + { + "pts": { + "x": 129, + "y": 199.00000000000063, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 99, + "y": 199.00000000000063, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 99, + "y": 99.00000000000063, + "z": 0 + }, + "buls": 0, + "radius": null + } + ], + "holes": [], + "addLen": 0, + "addWidth": 0, + "addDepth": 0, + "brThickness": 18, + "boardContour": { + "pts": [ + { + "x": 0, + "y": 0 + }, + { + "x": 398, + "y": 0 + }, + { + "x": 398, + "y": 598 + }, + { + "x": 0, + "y": 598 + } + ], + "buls": [ + 0, + 0, + 0, + 0 + ] + } + }, + "pointList": [ + { + "pointX": 102, + "pointY": 102, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 196, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 129, + "pointY": 196, + "radius": null, + "depth": null, + "curve": -0.414213562373095 + }, + { + "pointX": 146, + "pointY": 179, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 146, + "pointY": 119, + "radius": null, + "depth": null, + "curve": -0.41421356237309503 + }, + { + "pointX": 129, + "pointY": 102, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 102, + "radius": null, + "depth": null, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 102, + "pointY": 102, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 196, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 129, + "pointY": 196, + "radius": 17, + "depth": 18, + "curve": -0.41421356237309503 + }, + { + "pointX": 146, + "pointY": 179, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 146, + "pointY": 119, + "radius": 17, + "depth": 18, + "curve": -0.41421356237309503 + }, + { + "pointX": 129, + "pointY": 102, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 102, + "radius": 0, + "depth": 18, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + } + ], + "modelListFaceA": [], + "modelListFaceB": [ + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 1, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 10, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "knifeRadius": 3, + "thickness": 10, + "dir": 0, + "outline": [ + { + "pts": { + "x": 369.0000000000002, + "y": -1, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 379.0000000000002, + "y": -1, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 379.0000000000002, + "y": 599, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 369.0000000000002, + "y": 599, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 369.0000000000002, + "y": -1, + "z": 0 + }, + "buls": 0, + "radius": null + } + ], + "holes": [], + "addLen": 0, + "addWidth": 0, + "addDepth": 0, + "brThickness": 18, + "boardContour": { + "pts": [ + { + "x": 0, + "y": 0 + }, + { + "x": 398, + "y": 0 + }, + { + "x": 398, + "y": 598 + }, + { + "x": 0, + "y": 598 + } + ], + "buls": [ + 0, + 0, + 0, + 0 + ] + } + }, + "pointList": [ + { + "pointX": 372, + "pointY": -1, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 372, + "pointY": 599, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 376, + "pointY": 599, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 376, + "pointY": -1, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 372, + "pointY": -1, + "radius": null, + "depth": null, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 372, + "pointY": 2, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 372, + "pointY": 596, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 376, + "pointY": 596, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 376, + "pointY": 2, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 372, + "pointY": 2, + "radius": 0, + "depth": 10, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + } + ], + "modelListThrough": [ + { + "orderId": "", + "blockId": 0, + "modelId": 2, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 18, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "knifeRadius": 3, + "thickness": 18, + "dir": 0, + "outline": [ + { + "pts": { + "x": 99, + "y": 99.00000000000063, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 129, + "y": 99.00000000000063, + "z": 0 + }, + "buls": 0.41421356237309503, + "radius": null + }, + { + "pts": { + "x": 149, + "y": 119.00000000000063, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 149, + "y": 179.00000000000063, + "z": 0 + }, + "buls": 0.414213562373095, + "radius": null + }, + { + "pts": { + "x": 129, + "y": 199.00000000000063, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 99, + "y": 199.00000000000063, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 99, + "y": 99.00000000000063, + "z": 0 + }, + "buls": 0, + "radius": null + } + ], + "holes": [], + "addLen": 0, + "addWidth": 0, + "addDepth": 0, + "brThickness": 18, + "boardContour": { + "pts": [ + { + "x": 0, + "y": 0 + }, + { + "x": 398, + "y": 0 + }, + { + "x": 398, + "y": 598 + }, + { + "x": 0, + "y": 598 + } + ], + "buls": [ + 0, + 0, + 0, + 0 + ] + } + }, + "pointList": [ + { + "pointX": 102, + "pointY": 102, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 196, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 129, + "pointY": 196, + "radius": null, + "depth": null, + "curve": -0.414213562373095 + }, + { + "pointX": 146, + "pointY": 179, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 146, + "pointY": 119, + "radius": null, + "depth": null, + "curve": -0.41421356237309503 + }, + { + "pointX": 129, + "pointY": 102, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 102, + "radius": null, + "depth": null, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 102, + "pointY": 102, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 196, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 129, + "pointY": 196, + "radius": 17, + "depth": 18, + "curve": -0.41421356237309503 + }, + { + "pointX": 146, + "pointY": 179, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 146, + "pointY": 119, + "radius": 17, + "depth": 18, + "curve": -0.41421356237309503 + }, + { + "pointX": 129, + "pointY": 102, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 102, + "radius": 0, + "depth": 18, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + } + ], + "modelListSide": [], + "thickness": 18, + "isUnRegular": false, + "bigHoleInFaceA": false, + "holeCountFront": 0, + "holeCountBack": 0, + "holeCountThrough": 0, + "holeCountSide": 0, + "holeCountLeft": 0, + "holeCountRight": 0, + "holeCountTop": 0, + "holeCountBottom": 0, + "holeCountBevelled": 0, + "modelCountFront": 0, + "modelCountBack": 1, + "modelCountThrough": 1, + "hasModelThrogh": true, + "isTwoFaceProcess": false, + "placeStyleFront": 0, + "placeStyleFrontReverse": 1, + "placeStyleBack": 4, + "placeStyleBackReverse": 7, + "labelPosX": -1, + "labelPosY": -1, + "isInited": false, + "isChecked": false, + "isOffsetRounding": false, + "offsetKnifeRadius": 3, + "isUseSameKnifeToHelpCut": false, + "useSameKnifeToHelpCutGap": 0, + "preMillingExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "modelExpandSize": { + "left": 0, + "right": 0, + "top": 4, + "bottom": 4, + "width": 0, + "length": 8 + }, + "vKnifeModelExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "sameKnifeHelpExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "currentSizeExpand": { + "left": 3.005, + "right": 3.005, + "top": 4, + "bottom": 4, + "width": 6.01, + "length": 8 + }, + "borderContour": { + "placeStyle": 0, + "borderFinal": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 400, + "m_Y": 0 + }, + "tagData": 1, + "m_Length": 400 + }, + { + "m_StartPoint": { + "m_X": 400, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 400, + "m_Y": 600 + }, + "tagData": 1, + "m_Length": 600 + }, + { + "m_StartPoint": { + "m_X": 400, + "m_Y": 600 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 600 + }, + "tagData": 1, + "m_Length": 400 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 600 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "tagData": 1, + "m_Length": 600 + } + ], + "borderOrg": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_Length": 598 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 598 + } + ], + "borderPreMilling": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_Length": 598 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 598 + } + ], + "polylineOrg": { + "_isErase": false, + "IsEmbedEntity": false, + "OnlyRenderType": true, + "HasEdgeRenderType": false, + "HasPlaceFaceRenderType": false, + "HasBigHoleFaceRenderType": false, + "_CacheDrawObject": {}, + "_Color": 7, + "_Matrix": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_SpaceOCS": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_Visible": true, + "_VisibleInRender": true, + "_Freeze": false, + "_LockMaterial": false, + "__ProcessingGroupList": [], + "NeedUpdateFlag": 0, + "AutoUpdate": true, + "__UpdateVersion__": 1, + "_RoomName": "", + "_CabinetName": "", + "_LineData": [ + { + "pt": { + "x": 0, + "y": 0 + }, + "bul": 0 + }, + { + "pt": { + "x": 398, + "y": 0 + }, + "bul": 0 + }, + { + "pt": { + "x": 398, + "y": 598 + }, + "bul": 0 + }, + { + "pt": { + "x": 0, + "y": 598 + }, + "bul": 0 + } + ], + "_DisplayAccuracy": 0, + "_ClosedMark": true + }, + "border": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_Length": 598 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 598 + } + ], + "borderSameKnifeHelpCut": null, + "cutLines": null, + "cutLinesSameKnifeHelpCut": null, + "borderMoving": null, + "borderModelThrough": [ + [ + { + "m_StartPoint": { + "m_X": 99, + "m_Y": 99.00000000000063 + }, + "m_EndPoint": { + "m_X": 129, + "m_Y": 99.00000000000063 + }, + "m_Length": 30 + }, + { + "m_StartPoint": { + "m_X": 129, + "m_Y": 99.00000000000063 + }, + "m_EndPoint": { + "m_X": 149, + "m_Y": 119.00000000000063 + }, + "m_Center": { + "m_X": 129, + "m_Y": 119.00000000000063 + }, + "m_Radius": 20.000000000000004, + "m_StartAngle": 4.71238898038469, + "m_EndAngle": 0, + "m_AllAngle": 1.5707963267948966, + "m_Bul": 0.41421356237309503 + }, + { + "m_StartPoint": { + "m_X": 149, + "m_Y": 119.00000000000063 + }, + "m_EndPoint": { + "m_X": 149, + "m_Y": 179.00000000000063 + }, + "m_Length": 60 + }, + { + "m_StartPoint": { + "m_X": 149, + "m_Y": 179.00000000000063 + }, + "m_EndPoint": { + "m_X": 129, + "m_Y": 199.00000000000063 + }, + "m_Center": { + "m_X": 129, + "m_Y": 179.00000000000063 + }, + "m_Radius": 20.000000000000004, + "m_StartAngle": 0, + "m_EndAngle": 1.5707963267948966, + "m_AllAngle": 1.5707963267948963, + "m_Bul": 0.414213562373095 + }, + { + "m_StartPoint": { + "m_X": 129, + "m_Y": 199.00000000000063 + }, + "m_EndPoint": { + "m_X": 99, + "m_Y": 199.00000000000063 + }, + "m_Length": 30 + }, + { + "m_StartPoint": { + "m_X": 99, + "m_Y": 199.00000000000063 + }, + "m_EndPoint": { + "m_X": 99, + "m_Y": 99.00000000000063 + }, + "m_Length": 100 + }, + { + "m_StartPoint": { + "m_X": 99, + "m_Y": 99.00000000000063 + }, + "m_EndPoint": { + "m_X": 99, + "m_Y": 99.00000000000063 + }, + "m_Length": 0 + } + ] + ], + "borderModelThroughR": [ + 0 + ], + "cutLinesModelThrough": [ + [ + { + "m_StartPoint": { + "m_X": 99, + "m_Y": 99.00000000000063 + }, + "m_EndPoint": { + "m_X": 129, + "m_Y": 99.00000000000063 + }, + "m_Length": 30 + }, + { + "m_StartPoint": { + "m_X": 129, + "m_Y": 99.00000000000063 + }, + "m_EndPoint": { + "m_X": 149, + "m_Y": 119.00000000000063 + }, + "m_Center": { + "m_X": 129, + "m_Y": 119.00000000000063 + }, + "m_Radius": 20.000000000000004, + "m_StartAngle": 4.71238898038469, + "m_EndAngle": 0, + "m_AllAngle": 1.5707963267948966, + "m_Bul": 0.41421356237309503 + }, + { + "m_StartPoint": { + "m_X": 149, + "m_Y": 119.00000000000063 + }, + "m_EndPoint": { + "m_X": 149, + "m_Y": 179.00000000000063 + }, + "m_Length": 60 + }, + { + "m_StartPoint": { + "m_X": 149, + "m_Y": 179.00000000000063 + }, + "m_EndPoint": { + "m_X": 129, + "m_Y": 199.00000000000063 + }, + "m_Center": { + "m_X": 129, + "m_Y": 179.00000000000063 + }, + "m_Radius": 20.000000000000004, + "m_StartAngle": 0, + "m_EndAngle": 1.5707963267948966, + "m_AllAngle": 1.5707963267948963, + "m_Bul": 0.414213562373095 + }, + { + "m_StartPoint": { + "m_X": 129, + "m_Y": 199.00000000000063 + }, + "m_EndPoint": { + "m_X": 99, + "m_Y": 199.00000000000063 + }, + "m_Length": 30 + }, + { + "m_StartPoint": { + "m_X": 99, + "m_Y": 199.00000000000063 + }, + "m_EndPoint": { + "m_X": 99, + "m_Y": 99.00000000000063 + }, + "m_Length": 100 + }, + { + "m_StartPoint": { + "m_X": 99, + "m_Y": 99.00000000000063 + }, + "m_EndPoint": { + "m_X": 99, + "m_Y": 99.00000000000063 + }, + "m_Length": 0 + } + ] + ], + "borderInnerPlace": [ + [ + { + "m_StartPoint": { + "m_X": 102.005, + "m_Y": 102.00500000000062 + }, + "m_EndPoint": { + "m_X": 129, + "m_Y": 102.00500000000062 + }, + "m_Length": 26.995000000000005 + }, + { + "m_StartPoint": { + "m_X": 129, + "m_Y": 102.00500000000062 + }, + "m_EndPoint": { + "m_X": 145.995, + "m_Y": 119.00000000000063 + }, + "m_Center": { + "m_X": 129, + "m_Y": 119.00000000000063 + }, + "m_Radius": 16.995000000000008, + "m_StartAngle": 4.71238898038469, + "m_EndAngle": 0, + "m_AllAngle": 1.5707963267948966, + "m_Bul": 0.41421356237309503 + }, + { + "m_StartPoint": { + "m_X": 145.995, + "m_Y": 119.00000000000063 + }, + "m_EndPoint": { + "m_X": 145.995, + "m_Y": 179.00000000000063 + }, + "m_Length": 60 + }, + { + "m_StartPoint": { + "m_X": 145.995, + "m_Y": 179.00000000000063 + }, + "m_EndPoint": { + "m_X": 129, + "m_Y": 195.99500000000063 + }, + "m_Center": { + "m_X": 129, + "m_Y": 179.00000000000063 + }, + "m_Radius": 16.995000000000008, + "m_StartAngle": 0, + "m_EndAngle": 1.5707963267948966, + "m_AllAngle": 1.5707963267948966, + "m_Bul": 0.41421356237309503 + }, + { + "m_StartPoint": { + "m_X": 129, + "m_Y": 195.99500000000063 + }, + "m_EndPoint": { + "m_X": 102.005, + "m_Y": 195.99500000000063 + }, + "m_Length": 26.995000000000005 + }, + { + "m_StartPoint": { + "m_X": 102.005, + "m_Y": 195.99500000000063 + }, + "m_EndPoint": { + "m_X": 102.005, + "m_Y": 102.00500000000062 + }, + "m_Length": 93.99000000000001 + } + ] + ], + "blockInnerSpace": [], + "blockOuterSpace": null, + "polylines2vModel": [], + "polylinesOutModel": [ + { + "_isErase": false, + "IsEmbedEntity": false, + "OnlyRenderType": true, + "HasEdgeRenderType": false, + "HasPlaceFaceRenderType": false, + "HasBigHoleFaceRenderType": false, + "_CacheDrawObject": {}, + "_Color": 7, + "_Matrix": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_SpaceOCS": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_Visible": true, + "_VisibleInRender": true, + "_Freeze": false, + "_LockMaterial": false, + "__ProcessingGroupList": [], + "NeedUpdateFlag": 0, + "AutoUpdate": true, + "__UpdateVersion__": 1, + "_RoomName": "", + "_CabinetName": "", + "_LineData": [ + { + "pt": { + "x": 379, + "y": -3.9999999999998863 + }, + "bul": 0 + }, + { + "pt": { + "x": 379, + "y": 602 + }, + "bul": 0 + }, + { + "pt": { + "x": 369, + "y": 601.9999999999999 + }, + "bul": 0 + }, + { + "pt": { + "x": 369, + "y": -4 + }, + "bul": 0 + } + ], + "_DisplayAccuracy": 0, + "_ClosedMark": true + } + ], + "placeContours": [] + }, + "remarkParams": {} + }, + "orderId": "1905521075534430208", + "goodsId": "SP202001031", + "roomId": 0, + "bodyId": 0, + "blockId": "1905521077635776512", + "oldBlockId": "1905521077635776512", + "blockNo": "25030882561", + "customPlateNo": "F128-R001-C001-P002", + "labelNo": "", + "blockName": "背板-挖穿+反面槽", + "plateRemark": "", + "remark1": "", + "remark2": "", + "remark3": "", + "remark4": "", + "remark5": "", + "extraRemark": {}, + "width": 400, + "length": 600, + "thickness": 18, + "area": 0.24, + "sealLeft": 1, + "sealRight": 1, + "sealTop": 1, + "sealBottom": 1, + "cutWidth": 398, + "cutLength": 598, + "cutArea": 0.238004, + "isAdditionalBlock": false, + "isRemainBlock": false, + "texture": 0, + "placeHole": 2, + "isUnRegular": false, + "isTurnFaceToPlace": true, + "isTwoFaceToPlace": false, + "isCurvedGroundLine": false, + "isPlaced": true, + "fullBoardId": 0, + "boardId": 2, + "placeId": 2, + "placeX": 3.005, + "placeY": 610, + "placeStyle": 4, + "cutRegion": 0, + "cutOrder": 0, + "cutPointId": 0, + "placeWidth": 398, + "placeLength": 598, + "placeSealLeft": 0, + "placeSealRight": 0, + "placeSealTop": 0, + "placeSealBottom": 0, + "orgSizeExpand": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "placeOffX": 3.005, + "placeOffY": 4, + "isAutoPlaced": true, + "isOutBoard": false, + "isOverlap": false, + "placeDirection": "→", + "placeDirection_Length": "→", + "isDrilling": true, + "isModeling": true, + "overBlockFlag": 0, + "isCutOtherFace": false, + "isCutTurnOver": false, + "holeCountSideLeft": 0, + "holeCountSideRight": 0, + "holeCountSideTop": 0, + "holeCountSideBottom": 0, + "holeListFaceA": [], + "holeListFaceB": [], + "modelListFaceA": [], + "modelListFaceB": [], + "labelPosX": 0, + "labelPosY": 0, + "isCncLabelA": false, + "isCncLabelB": false, + "isCncLabelTurnOver": false, + "type": 2, + "openDoorType": 0, + "_blockId": "1905521077635776512" + }, + { + "blockDetail": { + "organId": 0, + "blockId": "1905521077656748032", + "pointDetail": [], + "modelDetail": [], + "holeDetail": [], + "offsetX": 1, + "offsetY": 1, + "cutWidth": 398, + "cutLength": 598, + "points": [], + "orgPoints": [], + "orgContourData": { + "pts": [ + { + "x": 0, + "y": 0 + }, + { + "x": 398, + "y": 0 + }, + { + "x": 398, + "y": 598 + }, + { + "x": 0, + "y": 598 + } + ], + "buls": [ + 0, + 0, + 0, + 0 + ] + }, + "holes": [], + "holeListFaceA": [], + "holeListFaceB": [], + "holeListThrough": [], + "holeListSide": [], + "models": [ + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 10, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "knifeRadius": 3, + "thickness": 10, + "dir": 0, + "outline": [ + { + "pts": { + "x": 369.0000000000023, + "y": -1, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 379.0000000000023, + "y": -1, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 379.0000000000023, + "y": 599, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 369.0000000000023, + "y": 599, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 369.0000000000023, + "y": -1, + "z": 0 + }, + "buls": 0, + "radius": null + } + ], + "holes": [], + "addLen": 0, + "addWidth": 0, + "addDepth": 0, + "brThickness": 18, + "boardContour": { + "pts": [ + { + "x": 0, + "y": 0 + }, + { + "x": 398, + "y": 0 + }, + { + "x": 398, + "y": 598 + }, + { + "x": 0, + "y": 598 + } + ], + "buls": [ + 0, + 0, + 0, + 0 + ] + } + }, + "pointList": [ + { + "pointX": 372, + "pointY": -1, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 372, + "pointY": 599, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 376, + "pointY": 599, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 376, + "pointY": -1, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 372, + "pointY": -1, + "radius": null, + "depth": null, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 372, + "pointY": 2, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 372, + "pointY": 596, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 376, + "pointY": 596, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 376, + "pointY": 2, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 372, + "pointY": 2, + "radius": 0, + "depth": 10, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 2, + "lineId": 1, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 10, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "knifeRadius": 3, + "thickness": 10, + "dir": 0, + "outline": [ + { + "pts": { + "x": 76.44717418524215, + "y": 314.45084971874735, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 94.61073738537652, + "y": 258.54915028125265, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 153.38926261462348, + "y": 258.54915028125265, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 171.55282581475785, + "y": 314.45084971874735, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 124, + "y": 349, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 76.44717418524215, + "y": 314.45084971874735, + "z": 0 + }, + "buls": 0, + "radius": null + } + ], + "holes": [], + "addLen": 0, + "addWidth": 0, + "addDepth": 0, + "brThickness": 18, + "boardContour": { + "pts": [ + { + "x": 0, + "y": 0 + }, + { + "x": 398, + "y": 0 + }, + { + "x": 398, + "y": 598 + }, + { + "x": 0, + "y": 598 + } + ], + "buls": [ + 0, + 0, + 0, + 0 + ] + } + }, + "pointList": [ + { + "pointX": 79.974, + "pointY": 313.305, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 345.292, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 168.026, + "pointY": 313.305, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 151.21, + "pointY": 261.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 96.79, + "pointY": 261.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 79.974, + "pointY": 313.305, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 83.501, + "pointY": 312.159, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 98.97, + "pointY": 264.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 149.03, + "pointY": 264.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 164.499, + "pointY": 312.159, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 341.584, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 83.501, + "pointY": 312.159, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 87.027, + "pointY": 311.013, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 101.15, + "pointY": 267.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 146.85, + "pointY": 267.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 160.973, + "pointY": 311.013, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 337.875, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 87.027, + "pointY": 311.013, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 90.554, + "pointY": 309.867, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 103.329, + "pointY": 270.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 144.671, + "pointY": 270.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 157.446, + "pointY": 309.867, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 334.167, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 90.554, + "pointY": 309.867, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 94.081, + "pointY": 308.721, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 105.509, + "pointY": 273.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 142.491, + "pointY": 273.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 153.919, + "pointY": 308.721, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 330.459, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 94.081, + "pointY": 308.721, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 97.607, + "pointY": 307.575, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 107.689, + "pointY": 276.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 140.311, + "pointY": 276.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 150.393, + "pointY": 307.575, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 326.751, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 97.607, + "pointY": 307.575, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 101.134, + "pointY": 306.43, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 109.868, + "pointY": 279.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 138.132, + "pointY": 279.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 146.866, + "pointY": 306.43, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 323.043, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 101.134, + "pointY": 306.43, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 104.661, + "pointY": 305.284, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 112.048, + "pointY": 282.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 135.952, + "pointY": 282.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 143.339, + "pointY": 305.284, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 319.334, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 104.661, + "pointY": 305.284, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 108.188, + "pointY": 304.138, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 114.227, + "pointY": 285.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 133.773, + "pointY": 285.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 139.812, + "pointY": 304.138, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 315.626, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 108.188, + "pointY": 304.138, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 111.714, + "pointY": 302.992, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 116.407, + "pointY": 288.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 131.593, + "pointY": 288.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 136.286, + "pointY": 302.992, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 311.918, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 111.714, + "pointY": 302.992, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 115.241, + "pointY": 301.846, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 118.587, + "pointY": 291.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 129.413, + "pointY": 291.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 132.759, + "pointY": 301.846, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 308.21, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 115.241, + "pointY": 301.846, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 118.768, + "pointY": 300.7, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 120.766, + "pointY": 294.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 127.234, + "pointY": 294.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 129.232, + "pointY": 300.7, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 304.502, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 118.768, + "pointY": 300.7, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 122.294, + "pointY": 299.554, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 122.946, + "pointY": 297.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 125.054, + "pointY": 297.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 125.706, + "pointY": 299.554, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 300.793, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 122.294, + "pointY": 299.554, + "radius": null, + "depth": null, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 79.974, + "pointY": 313.305, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 345.292, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 168.026, + "pointY": 313.305, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 151.21, + "pointY": 261.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 96.79, + "pointY": 261.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 79.974, + "pointY": 313.305, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 83.501, + "pointY": 312.159, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 98.97, + "pointY": 264.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 149.03, + "pointY": 264.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 164.499, + "pointY": 312.159, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 341.584, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 83.501, + "pointY": 312.159, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 87.027, + "pointY": 311.013, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 101.15, + "pointY": 267.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 146.85, + "pointY": 267.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 160.973, + "pointY": 311.013, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 337.875, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 87.027, + "pointY": 311.013, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 90.554, + "pointY": 309.867, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 103.329, + "pointY": 270.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 144.671, + "pointY": 270.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 157.446, + "pointY": 309.867, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 334.167, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 90.554, + "pointY": 309.867, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 94.081, + "pointY": 308.721, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 105.509, + "pointY": 273.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 142.491, + "pointY": 273.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 153.919, + "pointY": 308.721, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 330.459, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 94.081, + "pointY": 308.721, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 97.607, + "pointY": 307.575, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 107.689, + "pointY": 276.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 140.311, + "pointY": 276.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 150.393, + "pointY": 307.575, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 326.751, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 97.607, + "pointY": 307.575, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 101.134, + "pointY": 306.43, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 109.868, + "pointY": 279.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 138.132, + "pointY": 279.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 146.866, + "pointY": 306.43, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 323.043, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 101.134, + "pointY": 306.43, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 104.661, + "pointY": 305.284, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 112.048, + "pointY": 282.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 135.952, + "pointY": 282.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 143.339, + "pointY": 305.284, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 319.334, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 104.661, + "pointY": 305.284, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 108.188, + "pointY": 304.138, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 114.227, + "pointY": 285.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 133.773, + "pointY": 285.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 139.812, + "pointY": 304.138, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 315.626, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 108.188, + "pointY": 304.138, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 111.714, + "pointY": 302.992, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 116.407, + "pointY": 288.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 131.593, + "pointY": 288.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 136.286, + "pointY": 302.992, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 311.918, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 111.714, + "pointY": 302.992, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 115.241, + "pointY": 301.846, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 118.587, + "pointY": 291.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 129.413, + "pointY": 291.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 132.759, + "pointY": 301.846, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 308.21, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 115.241, + "pointY": 301.846, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 118.768, + "pointY": 300.7, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 120.766, + "pointY": 294.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 127.234, + "pointY": 294.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 129.232, + "pointY": 300.7, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 304.502, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 118.768, + "pointY": 300.7, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 122.294, + "pointY": 299.554, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 122.946, + "pointY": 297.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 125.054, + "pointY": 297.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 125.706, + "pointY": 299.554, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 300.793, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 122.294, + "pointY": 299.554, + "radius": 0, + "depth": 10, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 3, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 18, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "knifeRadius": 3, + "thickness": 18, + "dir": 0, + "outline": [ + { + "pts": { + "x": 99.00000000000091, + "y": 98.99999999999949, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 129.0000000000009, + "y": 98.99999999999949, + "z": 0 + }, + "buls": 0.41421356237309503, + "radius": null + }, + { + "pts": { + "x": 149.0000000000009, + "y": 118.99999999999949, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 149.0000000000009, + "y": 178.9999999999995, + "z": 0 + }, + "buls": 0.414213562373095, + "radius": null + }, + { + "pts": { + "x": 129.0000000000009, + "y": 198.9999999999995, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 99.00000000000091, + "y": 198.9999999999995, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 99.00000000000091, + "y": 98.99999999999949, + "z": 0 + }, + "buls": 0, + "radius": null + } + ], + "holes": [], + "addLen": 0, + "addWidth": 0, + "addDepth": 0, + "brThickness": 18, + "boardContour": { + "pts": [ + { + "x": 0, + "y": 0 + }, + { + "x": 398, + "y": 0 + }, + { + "x": 398, + "y": 598 + }, + { + "x": 0, + "y": 598 + } + ], + "buls": [ + 0, + 0, + 0, + 0 + ] + } + }, + "pointList": [ + { + "pointX": 102, + "pointY": 102, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 196, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 129, + "pointY": 196, + "radius": null, + "depth": null, + "curve": -0.414213562373095 + }, + { + "pointX": 146, + "pointY": 179, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 146, + "pointY": 119, + "radius": null, + "depth": null, + "curve": -0.41421356237309503 + }, + { + "pointX": 129, + "pointY": 102, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 102, + "radius": null, + "depth": null, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 102, + "pointY": 102, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 196, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 129, + "pointY": 196, + "radius": 17, + "depth": 18, + "curve": -0.41421356237309503 + }, + { + "pointX": 146, + "pointY": 179, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 146, + "pointY": 119, + "radius": 17, + "depth": 18, + "curve": -0.41421356237309503 + }, + { + "pointX": 129, + "pointY": 102, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 102, + "radius": 0, + "depth": 18, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + } + ], + "modelListFaceA": [ + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 10, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "knifeRadius": 3, + "thickness": 10, + "dir": 0, + "outline": [ + { + "pts": { + "x": 369.0000000000023, + "y": -1, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 379.0000000000023, + "y": -1, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 379.0000000000023, + "y": 599, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 369.0000000000023, + "y": 599, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 369.0000000000023, + "y": -1, + "z": 0 + }, + "buls": 0, + "radius": null + } + ], + "holes": [], + "addLen": 0, + "addWidth": 0, + "addDepth": 0, + "brThickness": 18, + "boardContour": { + "pts": [ + { + "x": 0, + "y": 0 + }, + { + "x": 398, + "y": 0 + }, + { + "x": 398, + "y": 598 + }, + { + "x": 0, + "y": 598 + } + ], + "buls": [ + 0, + 0, + 0, + 0 + ] + } + }, + "pointList": [ + { + "pointX": 372, + "pointY": -1, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 372, + "pointY": 599, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 376, + "pointY": 599, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 376, + "pointY": -1, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 372, + "pointY": -1, + "radius": null, + "depth": null, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 372, + "pointY": 2, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 372, + "pointY": 596, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 376, + "pointY": 596, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 376, + "pointY": 2, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 372, + "pointY": 2, + "radius": 0, + "depth": 10, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + } + ], + "modelListFaceB": [ + { + "orderId": "", + "blockId": 0, + "modelId": 2, + "lineId": 1, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 10, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "knifeRadius": 3, + "thickness": 10, + "dir": 0, + "outline": [ + { + "pts": { + "x": 76.44717418524215, + "y": 314.45084971874735, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 94.61073738537652, + "y": 258.54915028125265, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 153.38926261462348, + "y": 258.54915028125265, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 171.55282581475785, + "y": 314.45084971874735, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 124, + "y": 349, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 76.44717418524215, + "y": 314.45084971874735, + "z": 0 + }, + "buls": 0, + "radius": null + } + ], + "holes": [], + "addLen": 0, + "addWidth": 0, + "addDepth": 0, + "brThickness": 18, + "boardContour": { + "pts": [ + { + "x": 0, + "y": 0 + }, + { + "x": 398, + "y": 0 + }, + { + "x": 398, + "y": 598 + }, + { + "x": 0, + "y": 598 + } + ], + "buls": [ + 0, + 0, + 0, + 0 + ] + } + }, + "pointList": [ + { + "pointX": 79.974, + "pointY": 313.305, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 345.292, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 168.026, + "pointY": 313.305, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 151.21, + "pointY": 261.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 96.79, + "pointY": 261.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 79.974, + "pointY": 313.305, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 83.501, + "pointY": 312.159, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 98.97, + "pointY": 264.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 149.03, + "pointY": 264.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 164.499, + "pointY": 312.159, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 341.584, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 83.501, + "pointY": 312.159, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 87.027, + "pointY": 311.013, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 101.15, + "pointY": 267.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 146.85, + "pointY": 267.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 160.973, + "pointY": 311.013, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 337.875, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 87.027, + "pointY": 311.013, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 90.554, + "pointY": 309.867, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 103.329, + "pointY": 270.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 144.671, + "pointY": 270.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 157.446, + "pointY": 309.867, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 334.167, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 90.554, + "pointY": 309.867, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 94.081, + "pointY": 308.721, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 105.509, + "pointY": 273.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 142.491, + "pointY": 273.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 153.919, + "pointY": 308.721, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 330.459, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 94.081, + "pointY": 308.721, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 97.607, + "pointY": 307.575, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 107.689, + "pointY": 276.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 140.311, + "pointY": 276.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 150.393, + "pointY": 307.575, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 326.751, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 97.607, + "pointY": 307.575, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 101.134, + "pointY": 306.43, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 109.868, + "pointY": 279.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 138.132, + "pointY": 279.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 146.866, + "pointY": 306.43, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 323.043, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 101.134, + "pointY": 306.43, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 104.661, + "pointY": 305.284, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 112.048, + "pointY": 282.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 135.952, + "pointY": 282.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 143.339, + "pointY": 305.284, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 319.334, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 104.661, + "pointY": 305.284, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 108.188, + "pointY": 304.138, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 114.227, + "pointY": 285.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 133.773, + "pointY": 285.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 139.812, + "pointY": 304.138, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 315.626, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 108.188, + "pointY": 304.138, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 111.714, + "pointY": 302.992, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 116.407, + "pointY": 288.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 131.593, + "pointY": 288.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 136.286, + "pointY": 302.992, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 311.918, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 111.714, + "pointY": 302.992, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 115.241, + "pointY": 301.846, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 118.587, + "pointY": 291.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 129.413, + "pointY": 291.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 132.759, + "pointY": 301.846, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 308.21, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 115.241, + "pointY": 301.846, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 118.768, + "pointY": 300.7, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 120.766, + "pointY": 294.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 127.234, + "pointY": 294.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 129.232, + "pointY": 300.7, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 304.502, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 118.768, + "pointY": 300.7, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 122.294, + "pointY": 299.554, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 122.946, + "pointY": 297.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 125.054, + "pointY": 297.549, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 125.706, + "pointY": 299.554, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 300.793, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 122.294, + "pointY": 299.554, + "radius": null, + "depth": null, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 79.974, + "pointY": 313.305, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 345.292, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 168.026, + "pointY": 313.305, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 151.21, + "pointY": 261.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 96.79, + "pointY": 261.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 79.974, + "pointY": 313.305, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 83.501, + "pointY": 312.159, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 98.97, + "pointY": 264.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 149.03, + "pointY": 264.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 164.499, + "pointY": 312.159, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 341.584, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 83.501, + "pointY": 312.159, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 87.027, + "pointY": 311.013, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 101.15, + "pointY": 267.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 146.85, + "pointY": 267.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 160.973, + "pointY": 311.013, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 337.875, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 87.027, + "pointY": 311.013, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 90.554, + "pointY": 309.867, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 103.329, + "pointY": 270.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 144.671, + "pointY": 270.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 157.446, + "pointY": 309.867, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 334.167, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 90.554, + "pointY": 309.867, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 94.081, + "pointY": 308.721, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 105.509, + "pointY": 273.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 142.491, + "pointY": 273.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 153.919, + "pointY": 308.721, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 330.459, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 94.081, + "pointY": 308.721, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 97.607, + "pointY": 307.575, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 107.689, + "pointY": 276.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 140.311, + "pointY": 276.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 150.393, + "pointY": 307.575, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 326.751, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 97.607, + "pointY": 307.575, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 101.134, + "pointY": 306.43, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 109.868, + "pointY": 279.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 138.132, + "pointY": 279.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 146.866, + "pointY": 306.43, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 323.043, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 101.134, + "pointY": 306.43, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 104.661, + "pointY": 305.284, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 112.048, + "pointY": 282.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 135.952, + "pointY": 282.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 143.339, + "pointY": 305.284, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 319.334, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 104.661, + "pointY": 305.284, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 108.188, + "pointY": 304.138, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 114.227, + "pointY": 285.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 133.773, + "pointY": 285.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 139.812, + "pointY": 304.138, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 315.626, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 108.188, + "pointY": 304.138, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 111.714, + "pointY": 302.992, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 116.407, + "pointY": 288.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 131.593, + "pointY": 288.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 136.286, + "pointY": 302.992, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 311.918, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 111.714, + "pointY": 302.992, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 115.241, + "pointY": 301.846, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 118.587, + "pointY": 291.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 129.413, + "pointY": 291.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 132.759, + "pointY": 301.846, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 308.21, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 115.241, + "pointY": 301.846, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 118.768, + "pointY": 300.7, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 120.766, + "pointY": 294.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 127.234, + "pointY": 294.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 129.232, + "pointY": 300.7, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 304.502, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 118.768, + "pointY": 300.7, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 122.294, + "pointY": 299.554, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 122.946, + "pointY": 297.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 125.054, + "pointY": 297.549, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 125.706, + "pointY": 299.554, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 124, + "pointY": 300.793, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 122.294, + "pointY": 299.554, + "radius": 0, + "depth": 10, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + } + ], + "modelListThrough": [ + { + "orderId": "", + "blockId": 0, + "modelId": 3, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 18, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "knifeRadius": 3, + "thickness": 18, + "dir": 0, + "outline": [ + { + "pts": { + "x": 99.00000000000091, + "y": 98.99999999999949, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 129.0000000000009, + "y": 98.99999999999949, + "z": 0 + }, + "buls": 0.41421356237309503, + "radius": null + }, + { + "pts": { + "x": 149.0000000000009, + "y": 118.99999999999949, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 149.0000000000009, + "y": 178.9999999999995, + "z": 0 + }, + "buls": 0.414213562373095, + "radius": null + }, + { + "pts": { + "x": 129.0000000000009, + "y": 198.9999999999995, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 99.00000000000091, + "y": 198.9999999999995, + "z": 0 + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 99.00000000000091, + "y": 98.99999999999949, + "z": 0 + }, + "buls": 0, + "radius": null + } + ], + "holes": [], + "addLen": 0, + "addWidth": 0, + "addDepth": 0, + "brThickness": 18, + "boardContour": { + "pts": [ + { + "x": 0, + "y": 0 + }, + { + "x": 398, + "y": 0 + }, + { + "x": 398, + "y": 598 + }, + { + "x": 0, + "y": 598 + } + ], + "buls": [ + 0, + 0, + 0, + 0 + ] + } + }, + "pointList": [ + { + "pointX": 102, + "pointY": 102, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 196, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 129, + "pointY": 196, + "radius": null, + "depth": null, + "curve": -0.414213562373095 + }, + { + "pointX": 146, + "pointY": 179, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 146, + "pointY": 119, + "radius": null, + "depth": null, + "curve": -0.41421356237309503 + }, + { + "pointX": 129, + "pointY": 102, + "radius": null, + "depth": null, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 102, + "radius": null, + "depth": null, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 102, + "pointY": 102, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 196, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 129, + "pointY": 196, + "radius": 17, + "depth": 18, + "curve": -0.41421356237309503 + }, + { + "pointX": 146, + "pointY": 179, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 146, + "pointY": 119, + "radius": 17, + "depth": 18, + "curve": -0.41421356237309503 + }, + { + "pointX": 129, + "pointY": 102, + "radius": 0, + "depth": 18, + "curve": 0 + }, + { + "pointX": 102, + "pointY": 102, + "radius": 0, + "depth": 18, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + } + ], + "modelListSide": [], + "thickness": 18, + "isUnRegular": false, + "bigHoleInFaceA": false, + "holeCountFront": 0, + "holeCountBack": 0, + "holeCountThrough": 0, + "holeCountSide": 0, + "holeCountLeft": 0, + "holeCountRight": 0, + "holeCountTop": 0, + "holeCountBottom": 0, + "holeCountBevelled": 0, + "modelCountFront": 1, + "modelCountBack": 1, + "modelCountThrough": 1, + "hasModelThrogh": true, + "isTwoFaceProcess": false, + "placeStyleFront": 0, + "placeStyleFrontReverse": 1, + "placeStyleBack": 4, + "placeStyleBackReverse": 7, + "labelPosX": -1, + "labelPosY": -1, + "isInited": false, + "isChecked": false, + "isOffsetRounding": false, + "offsetKnifeRadius": 3, + "isUseSameKnifeToHelpCut": false, + "useSameKnifeToHelpCutGap": 0, + "preMillingExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "modelExpandSize": { + "left": 0, + "right": 0, + "top": 4, + "bottom": 4, + "width": 0, + "length": 8 + }, + "vKnifeModelExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "sameKnifeHelpExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "currentSizeExpand": { + "left": 3.005, + "right": 3.005, + "top": 4, + "bottom": 4, + "width": 6.01, + "length": 8 + }, + "borderContour": { + "placeStyle": 0, + "borderFinal": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 400, + "m_Y": 0 + }, + "tagData": 1, + "m_Length": 400 + }, + { + "m_StartPoint": { + "m_X": 400, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 400, + "m_Y": 600 + }, + "tagData": 1, + "m_Length": 600 + }, + { + "m_StartPoint": { + "m_X": 400, + "m_Y": 600 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 600 + }, + "tagData": 1, + "m_Length": 400 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 600 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "tagData": 1, + "m_Length": 600 + } + ], + "borderOrg": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_Length": 598 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 598 + } + ], + "borderPreMilling": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_Length": 598 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 598 + } + ], + "polylineOrg": { + "_isErase": false, + "IsEmbedEntity": false, + "OnlyRenderType": true, + "HasEdgeRenderType": false, + "HasPlaceFaceRenderType": false, + "HasBigHoleFaceRenderType": false, + "_CacheDrawObject": {}, + "_Color": 7, + "_Matrix": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_SpaceOCS": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_Visible": true, + "_VisibleInRender": true, + "_Freeze": false, + "_LockMaterial": false, + "__ProcessingGroupList": [], + "NeedUpdateFlag": 0, + "AutoUpdate": true, + "__UpdateVersion__": 1, + "_RoomName": "", + "_CabinetName": "", + "_LineData": [ + { + "pt": { + "x": 0, + "y": 0 + }, + "bul": 0 + }, + { + "pt": { + "x": 398, + "y": 0 + }, + "bul": 0 + }, + { + "pt": { + "x": 398, + "y": 598 + }, + "bul": 0 + }, + { + "pt": { + "x": 0, + "y": 598 + }, + "bul": 0 + } + ], + "_DisplayAccuracy": 0, + "_ClosedMark": true + }, + "border": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_Length": 598 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 598 + } + ], + "borderSameKnifeHelpCut": null, + "cutLines": null, + "cutLinesSameKnifeHelpCut": null, + "borderMoving": null, + "borderModelThrough": [ + [ + { + "m_StartPoint": { + "m_X": 99.00000000000091, + "m_Y": 98.99999999999949 + }, + "m_EndPoint": { + "m_X": 129.0000000000009, + "m_Y": 98.99999999999949 + }, + "m_Length": 30 + }, + { + "m_StartPoint": { + "m_X": 129.0000000000009, + "m_Y": 98.99999999999949 + }, + "m_EndPoint": { + "m_X": 149.0000000000009, + "m_Y": 118.99999999999949 + }, + "m_Center": { + "m_X": 129.0000000000009, + "m_Y": 118.99999999999949 + }, + "m_Radius": 20.000000000000004, + "m_StartAngle": 4.71238898038469, + "m_EndAngle": 0, + "m_AllAngle": 1.5707963267948966, + "m_Bul": 0.41421356237309503 + }, + { + "m_StartPoint": { + "m_X": 149.0000000000009, + "m_Y": 118.99999999999949 + }, + "m_EndPoint": { + "m_X": 149.0000000000009, + "m_Y": 178.9999999999995 + }, + "m_Length": 60 + }, + { + "m_StartPoint": { + "m_X": 149.0000000000009, + "m_Y": 178.9999999999995 + }, + "m_EndPoint": { + "m_X": 129.0000000000009, + "m_Y": 198.9999999999995 + }, + "m_Center": { + "m_X": 129.0000000000009, + "m_Y": 178.9999999999995 + }, + "m_Radius": 20.000000000000004, + "m_StartAngle": 0, + "m_EndAngle": 1.5707963267948966, + "m_AllAngle": 1.5707963267948963, + "m_Bul": 0.414213562373095 + }, + { + "m_StartPoint": { + "m_X": 129.0000000000009, + "m_Y": 198.9999999999995 + }, + "m_EndPoint": { + "m_X": 99.00000000000091, + "m_Y": 198.9999999999995 + }, + "m_Length": 30 + }, + { + "m_StartPoint": { + "m_X": 99.00000000000091, + "m_Y": 198.9999999999995 + }, + "m_EndPoint": { + "m_X": 99.00000000000091, + "m_Y": 98.99999999999949 + }, + "m_Length": 100 + }, + { + "m_StartPoint": { + "m_X": 99.00000000000091, + "m_Y": 98.99999999999949 + }, + "m_EndPoint": { + "m_X": 99.00000000000091, + "m_Y": 98.99999999999949 + }, + "m_Length": 0 + } + ] + ], + "borderModelThroughR": [ + 0 + ], + "cutLinesModelThrough": [ + [ + { + "m_StartPoint": { + "m_X": 99.00000000000091, + "m_Y": 98.99999999999949 + }, + "m_EndPoint": { + "m_X": 129.0000000000009, + "m_Y": 98.99999999999949 + }, + "m_Length": 30 + }, + { + "m_StartPoint": { + "m_X": 129.0000000000009, + "m_Y": 98.99999999999949 + }, + "m_EndPoint": { + "m_X": 149.0000000000009, + "m_Y": 118.99999999999949 + }, + "m_Center": { + "m_X": 129.0000000000009, + "m_Y": 118.99999999999949 + }, + "m_Radius": 20.000000000000004, + "m_StartAngle": 4.71238898038469, + "m_EndAngle": 0, + "m_AllAngle": 1.5707963267948966, + "m_Bul": 0.41421356237309503 + }, + { + "m_StartPoint": { + "m_X": 149.0000000000009, + "m_Y": 118.99999999999949 + }, + "m_EndPoint": { + "m_X": 149.0000000000009, + "m_Y": 178.9999999999995 + }, + "m_Length": 60 + }, + { + "m_StartPoint": { + "m_X": 149.0000000000009, + "m_Y": 178.9999999999995 + }, + "m_EndPoint": { + "m_X": 129.0000000000009, + "m_Y": 198.9999999999995 + }, + "m_Center": { + "m_X": 129.0000000000009, + "m_Y": 178.9999999999995 + }, + "m_Radius": 20.000000000000004, + "m_StartAngle": 0, + "m_EndAngle": 1.5707963267948966, + "m_AllAngle": 1.5707963267948963, + "m_Bul": 0.414213562373095 + }, + { + "m_StartPoint": { + "m_X": 129.0000000000009, + "m_Y": 198.9999999999995 + }, + "m_EndPoint": { + "m_X": 99.00000000000091, + "m_Y": 198.9999999999995 + }, + "m_Length": 30 + }, + { + "m_StartPoint": { + "m_X": 99.00000000000091, + "m_Y": 198.9999999999995 + }, + "m_EndPoint": { + "m_X": 99.00000000000091, + "m_Y": 98.99999999999949 + }, + "m_Length": 100 + }, + { + "m_StartPoint": { + "m_X": 99.00000000000091, + "m_Y": 98.99999999999949 + }, + "m_EndPoint": { + "m_X": 99.00000000000091, + "m_Y": 98.99999999999949 + }, + "m_Length": 0 + } + ] + ], + "borderInnerPlace": [ + [ + { + "m_StartPoint": { + "m_X": 102.0050000000009, + "m_Y": 102.00499999999948 + }, + "m_EndPoint": { + "m_X": 129.0000000000009, + "m_Y": 102.00499999999948 + }, + "m_Length": 26.995000000000005 + }, + { + "m_StartPoint": { + "m_X": 129.0000000000009, + "m_Y": 102.00499999999948 + }, + "m_EndPoint": { + "m_X": 145.9950000000009, + "m_Y": 118.99999999999949 + }, + "m_Center": { + "m_X": 129.0000000000009, + "m_Y": 118.99999999999949 + }, + "m_Radius": 16.995000000000008, + "m_StartAngle": 4.71238898038469, + "m_EndAngle": 0, + "m_AllAngle": 1.5707963267948966, + "m_Bul": 0.41421356237309503 + }, + { + "m_StartPoint": { + "m_X": 145.9950000000009, + "m_Y": 118.99999999999949 + }, + "m_EndPoint": { + "m_X": 145.9950000000009, + "m_Y": 178.9999999999995 + }, + "m_Length": 60 + }, + { + "m_StartPoint": { + "m_X": 145.9950000000009, + "m_Y": 178.9999999999995 + }, + "m_EndPoint": { + "m_X": 129.0000000000009, + "m_Y": 195.9949999999995 + }, + "m_Center": { + "m_X": 129.0000000000009, + "m_Y": 178.9999999999995 + }, + "m_Radius": 16.995000000000008, + "m_StartAngle": 0, + "m_EndAngle": 1.5707963267948966, + "m_AllAngle": 1.5707963267948966, + "m_Bul": 0.41421356237309503 + }, + { + "m_StartPoint": { + "m_X": 129.0000000000009, + "m_Y": 195.9949999999995 + }, + "m_EndPoint": { + "m_X": 102.0050000000009, + "m_Y": 195.9949999999995 + }, + "m_Length": 26.995000000000005 + }, + { + "m_StartPoint": { + "m_X": 102.0050000000009, + "m_Y": 195.9949999999995 + }, + "m_EndPoint": { + "m_X": 102.0050000000009, + "m_Y": 102.00499999999948 + }, + "m_Length": 93.99000000000001 + } + ] + ], + "blockInnerSpace": [], + "blockOuterSpace": null, + "polylines2vModel": [], + "polylinesOutModel": [ + { + "_isErase": false, + "IsEmbedEntity": false, + "OnlyRenderType": true, + "HasEdgeRenderType": false, + "HasPlaceFaceRenderType": false, + "HasBigHoleFaceRenderType": false, + "_CacheDrawObject": {}, + "_Color": 7, + "_Matrix": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_SpaceOCS": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_Visible": true, + "_VisibleInRender": true, + "_Freeze": false, + "_LockMaterial": false, + "__ProcessingGroupList": [], + "NeedUpdateFlag": 0, + "AutoUpdate": true, + "__UpdateVersion__": 1, + "_RoomName": "", + "_CabinetName": "", + "_LineData": [ + { + "pt": { + "x": 379, + "y": -3.9999999999998863 + }, + "bul": 0 + }, + { + "pt": { + "x": 379, + "y": 602 + }, + "bul": 0 + }, + { + "pt": { + "x": 369, + "y": 601.9999999999999 + }, + "bul": 0 + }, + { + "pt": { + "x": 369, + "y": -4 + }, + "bul": 0 + } + ], + "_DisplayAccuracy": 0, + "_ClosedMark": true + } + ], + "placeContours": [] + }, + "remarkParams": {} + }, + "orderId": "1905521075534430208", + "goodsId": "SP202001031", + "roomId": 0, + "bodyId": 0, + "blockId": "1905521077656748032", + "oldBlockId": "1905521077656748032", + "blockNo": "25030882562", + "customPlateNo": "F128-R001-C001-P004", + "labelNo": "", + "blockName": "背板-挖穿+反面铣型+正面槽", + "plateRemark": "", + "remark1": "", + "remark2": "", + "remark3": "", + "remark4": "", + "remark5": "", + "extraRemark": {}, + "width": 400, + "length": 600, + "thickness": 18, + "area": 0.24, + "sealLeft": 1, + "sealRight": 1, + "sealTop": 1, + "sealBottom": 1, + "cutWidth": 398, + "cutLength": 598, + "cutArea": 0.238004, + "isAdditionalBlock": false, + "isRemainBlock": false, + "texture": 0, + "placeHole": 2, + "isUnRegular": false, + "isTurnFaceToPlace": true, + "isTwoFaceToPlace": false, + "isCurvedGroundLine": false, + "isPlaced": true, + "fullBoardId": 0, + "boardId": 2, + "placeId": 3, + "placeX": 3.005, + "placeY": 1216, + "placeStyle": 4, + "cutRegion": 0, + "cutOrder": 0, + "cutPointId": 0, + "placeWidth": 398, + "placeLength": 598, + "placeSealLeft": 0, + "placeSealRight": 0, + "placeSealTop": 0, + "placeSealBottom": 0, + "orgSizeExpand": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "placeOffX": 3.005, + "placeOffY": 4, + "isAutoPlaced": true, + "isOutBoard": false, + "isOverlap": false, + "placeDirection": "→", + "placeDirection_Length": "→", + "isDrilling": true, + "isModeling": true, + "overBlockFlag": 0, + "isCutOtherFace": false, + "isCutTurnOver": false, + "holeCountSideLeft": 0, + "holeCountSideRight": 0, + "holeCountSideTop": 0, + "holeCountSideBottom": 0, + "holeListFaceA": [], + "holeListFaceB": [], + "modelListFaceA": [], + "modelListFaceB": [], + "labelPosX": 0, + "labelPosY": 0, + "isCncLabelA": false, + "isCncLabelB": false, + "isCncLabelTurnOver": false, + "type": 2, + "openDoorType": 0, + "_blockId": "1905521077656748032" + }, + { + "blockDetail": { + "organId": 0, + "blockId": "1905521077681913856", + "pointDetail": [], + "modelDetail": [], + "holeDetail": [], + "offsetX": 1, + "offsetY": 1, + "cutWidth": 398, + "cutLength": 598, + "points": [], + "orgPoints": [], + "orgContourData": null, + "holes": [], + "holeListFaceA": [], + "holeListFaceB": [], + "holeListThrough": [], + "holeListSide": [], + "models": [], + "modelListFaceA": [], + "modelListFaceB": [], + "modelListThrough": [], + "modelListSide": [ + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "face": 2, + "knifeName": "", + "knifeRadius": 3, + "depth": 12, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "direction": 0, + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": null, + "pointList": [], + "realKnifeRadius": 0, + "realPointList": [], + "realKnifeId": -1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 2, + "face": 2, + "knifeName": "", + "knifeRadius": 3, + "depth": 12, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "direction": 0, + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": null, + "pointList": [], + "realKnifeRadius": 0, + "realPointList": [], + "realKnifeId": -1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 3, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 12, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "direction": 0, + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": null, + "pointList": [], + "realKnifeRadius": 0, + "realPointList": [], + "realKnifeId": -1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 12, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "direction": 0, + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": null, + "pointList": [], + "realKnifeRadius": 0, + "realPointList": [], + "realKnifeId": -1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 5, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 6, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "direction": 0, + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": null, + "pointList": [], + "realKnifeRadius": 0, + "realPointList": [], + "realKnifeId": -1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 6, + "face": 3, + "knifeName": "", + "knifeRadius": 3, + "depth": 6, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "direction": 0, + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": null, + "pointList": [], + "realKnifeRadius": 0, + "realPointList": [], + "realKnifeId": -1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + } + ], + "thickness": 18, + "isUnRegular": false, + "bigHoleInFaceA": false, + "holeCountFront": 0, + "holeCountBack": 0, + "holeCountThrough": 0, + "holeCountSide": 0, + "holeCountLeft": 0, + "holeCountRight": 0, + "holeCountTop": 0, + "holeCountBottom": 0, + "holeCountBevelled": 0, + "modelCountFront": 0, + "modelCountBack": 0, + "modelCountThrough": 0, + "hasModelThrogh": false, + "isTwoFaceProcess": false, + "placeStyleFront": 0, + "placeStyleFrontReverse": 1, + "placeStyleBack": 4, + "placeStyleBackReverse": 7, + "labelPosX": -1, + "labelPosY": -1, + "isInited": false, + "isChecked": false, + "isOffsetRounding": false, + "offsetKnifeRadius": 3, + "isUseSameKnifeToHelpCut": false, + "useSameKnifeToHelpCutGap": 0, + "preMillingExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "modelExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "vKnifeModelExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "sameKnifeHelpExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "currentSizeExpand": { + "left": 3.005, + "right": 3.005, + "top": 3.005, + "bottom": 3.005, + "width": 6.01, + "length": 6.01 + }, + "borderContour": { + "placeStyle": 0, + "borderFinal": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 400, + "m_Y": 0 + }, + "tagData": 1, + "m_Length": 400 + }, + { + "m_StartPoint": { + "m_X": 400, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 400, + "m_Y": 600 + }, + "tagData": 1, + "m_Length": 600 + }, + { + "m_StartPoint": { + "m_X": 400, + "m_Y": 600 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 600 + }, + "tagData": 1, + "m_Length": 400 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 600 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "tagData": 1, + "m_Length": 600 + } + ], + "borderOrg": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_Length": 598 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 598 + } + ], + "borderPreMilling": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_Length": 598 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 598 + } + ], + "polylineOrg": { + "_isErase": false, + "IsEmbedEntity": false, + "OnlyRenderType": true, + "HasEdgeRenderType": false, + "HasPlaceFaceRenderType": false, + "HasBigHoleFaceRenderType": false, + "_CacheDrawObject": {}, + "_Color": 7, + "_Matrix": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_SpaceOCS": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_Visible": true, + "_VisibleInRender": true, + "_Freeze": false, + "_LockMaterial": false, + "__ProcessingGroupList": [], + "NeedUpdateFlag": 0, + "AutoUpdate": true, + "__UpdateVersion__": 1, + "_RoomName": "", + "_CabinetName": "", + "_LineData": [ + { + "pt": { + "x": 0, + "y": 0 + }, + "bul": 0 + }, + { + "pt": { + "x": 398, + "y": 0 + }, + "bul": 0 + }, + { + "pt": { + "x": 398, + "y": 598 + }, + "bul": 0 + }, + { + "pt": { + "x": 0, + "y": 598 + }, + "bul": 0 + } + ], + "_DisplayAccuracy": 0, + "_ClosedMark": true + }, + "border": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_Length": 598 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 598 + } + ], + "borderSameKnifeHelpCut": null, + "cutLines": null, + "cutLinesSameKnifeHelpCut": null, + "borderMoving": null, + "borderModelThrough": [], + "borderModelThroughR": [], + "cutLinesModelThrough": [], + "borderInnerPlace": [], + "blockInnerSpace": [], + "blockOuterSpace": null, + "polylines2vModel": [], + "polylinesOutModel": [], + "placeContours": [] + }, + "remarkParams": {} + }, + "orderId": "1905521075534430208", + "goodsId": "SP202001031", + "roomId": 0, + "bodyId": 0, + "blockId": "1905521077681913856", + "oldBlockId": "1905521077681913856", + "blockNo": "25030882563", + "customPlateNo": "F128-R001-C001-P005", + "labelNo": "", + "blockName": "背板-侧面槽", + "plateRemark": "", + "remark1": "", + "remark2": "", + "remark3": "", + "remark4": "", + "remark5": "", + "extraRemark": {}, + "width": 400, + "length": 600, + "thickness": 18, + "area": 0.24, + "sealLeft": 1, + "sealRight": 1, + "sealTop": 1, + "sealBottom": 1, + "cutWidth": 398, + "cutLength": 598, + "cutArea": 0.238004, + "isAdditionalBlock": false, + "isRemainBlock": false, + "texture": 0, + "placeHole": 2, + "isUnRegular": false, + "isTurnFaceToPlace": true, + "isTwoFaceToPlace": false, + "isCurvedGroundLine": false, + "isPlaced": true, + "fullBoardId": 0, + "boardId": 2, + "placeId": 4, + "placeX": 3.005, + "placeY": 1821.005, + "placeStyle": 4, + "cutRegion": 0, + "cutOrder": 0, + "cutPointId": 0, + "placeWidth": 398, + "placeLength": 598, + "placeSealLeft": 0, + "placeSealRight": 0, + "placeSealTop": 0, + "placeSealBottom": 0, + "orgSizeExpand": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "placeOffX": 3.005, + "placeOffY": 3.005, + "isAutoPlaced": true, + "isOutBoard": false, + "isOverlap": false, + "placeDirection": "→", + "placeDirection_Length": "→", + "isDrilling": true, + "isModeling": true, + "overBlockFlag": 0, + "isCutOtherFace": false, + "isCutTurnOver": false, + "holeCountSideLeft": 0, + "holeCountSideRight": 0, + "holeCountSideTop": 0, + "holeCountSideBottom": 0, + "holeListFaceA": [], + "holeListFaceB": [], + "modelListFaceA": [], + "modelListFaceB": [], + "labelPosX": 0, + "labelPosY": 0, + "isCncLabelA": false, + "isCncLabelB": false, + "isCncLabelTurnOver": false, + "type": 2, + "openDoorType": 0, + "_blockId": "1905521077681913856" + }, + { + "blockDetail": { + "organId": 0, + "blockId": "1905521077707079680", + "pointDetail": [], + "modelDetail": [], + "holeDetail": [], + "offsetX": 1, + "offsetY": 1, + "cutWidth": 398, + "cutLength": 598, + "points": [], + "orgPoints": [], + "orgContourData": null, + "holes": [], + "holeListFaceA": [], + "holeListFaceB": [], + "holeListThrough": [], + "holeListSide": [], + "models": [], + "modelListFaceA": [], + "modelListFaceB": [], + "modelListThrough": [], + "modelListSide": [ + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "face": 2, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "direction": 0, + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": null, + "pointList": [], + "realKnifeRadius": 0, + "realPointList": [], + "realKnifeId": -1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 2, + "face": 2, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "direction": 0, + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": null, + "pointList": [], + "realKnifeRadius": 0, + "realPointList": [], + "realKnifeId": -1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 3, + "face": 2, + "knifeName": "", + "knifeRadius": 2, + "depth": 5, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "direction": 0, + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": null, + "pointList": [], + "realKnifeRadius": 0, + "realPointList": [], + "realKnifeId": -1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "face": 2, + "knifeName": "", + "knifeRadius": 3, + "depth": 12, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "direction": 0, + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": null, + "pointList": [], + "realKnifeRadius": 0, + "realPointList": [], + "realKnifeId": -1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 5, + "face": 2, + "knifeName": "", + "knifeRadius": 3, + "depth": 12, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "direction": 0, + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": null, + "pointList": [], + "realKnifeRadius": 0, + "realPointList": [], + "realKnifeId": -1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 6, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "direction": 0, + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": null, + "pointList": [], + "realKnifeRadius": 0, + "realPointList": [], + "realKnifeId": -1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 7, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "direction": 0, + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": null, + "pointList": [], + "realKnifeRadius": 0, + "realPointList": [], + "realKnifeId": -1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 8, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 12, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "direction": 0, + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": null, + "pointList": [], + "realKnifeRadius": 0, + "realPointList": [], + "realKnifeId": -1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 9, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 12, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "direction": 0, + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": null, + "pointList": [], + "realKnifeRadius": 0, + "realPointList": [], + "realKnifeId": -1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + } + ], + "thickness": 18, + "isUnRegular": false, + "bigHoleInFaceA": false, + "holeCountFront": 0, + "holeCountBack": 0, + "holeCountThrough": 0, + "holeCountSide": 0, + "holeCountLeft": 0, + "holeCountRight": 0, + "holeCountTop": 0, + "holeCountBottom": 0, + "holeCountBevelled": 0, + "modelCountFront": 0, + "modelCountBack": 0, + "modelCountThrough": 0, + "hasModelThrogh": false, + "isTwoFaceProcess": false, + "placeStyleFront": 0, + "placeStyleFrontReverse": 1, + "placeStyleBack": 4, + "placeStyleBackReverse": 7, + "labelPosX": -1, + "labelPosY": -1, + "isInited": false, + "isChecked": false, + "isOffsetRounding": false, + "offsetKnifeRadius": 3, + "isUseSameKnifeToHelpCut": false, + "useSameKnifeToHelpCutGap": 0, + "preMillingExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "modelExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "vKnifeModelExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "sameKnifeHelpExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "currentSizeExpand": { + "left": 3.005, + "right": 3.005, + "top": 3.005, + "bottom": 3.005, + "width": 6.01, + "length": 6.01 + }, + "borderContour": { + "placeStyle": 0, + "borderFinal": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 400, + "m_Y": 0 + }, + "tagData": 1, + "m_Length": 400 + }, + { + "m_StartPoint": { + "m_X": 400, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 400, + "m_Y": 600 + }, + "tagData": 1, + "m_Length": 600 + }, + { + "m_StartPoint": { + "m_X": 400, + "m_Y": 600 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 600 + }, + "tagData": 1, + "m_Length": 400 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 600 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "tagData": 1, + "m_Length": 600 + } + ], + "borderOrg": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_Length": 598 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 598 + } + ], + "borderPreMilling": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_Length": 598 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 598 + } + ], + "polylineOrg": { + "_isErase": false, + "IsEmbedEntity": false, + "OnlyRenderType": true, + "HasEdgeRenderType": false, + "HasPlaceFaceRenderType": false, + "HasBigHoleFaceRenderType": false, + "_CacheDrawObject": {}, + "_Color": 7, + "_Matrix": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_SpaceOCS": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_Visible": true, + "_VisibleInRender": true, + "_Freeze": false, + "_LockMaterial": false, + "__ProcessingGroupList": [], + "NeedUpdateFlag": 0, + "AutoUpdate": true, + "__UpdateVersion__": 1, + "_RoomName": "", + "_CabinetName": "", + "_LineData": [ + { + "pt": { + "x": 0, + "y": 0 + }, + "bul": 0 + }, + { + "pt": { + "x": 398, + "y": 0 + }, + "bul": 0 + }, + { + "pt": { + "x": 398, + "y": 598 + }, + "bul": 0 + }, + { + "pt": { + "x": 0, + "y": 598 + }, + "bul": 0 + } + ], + "_DisplayAccuracy": 0, + "_ClosedMark": true + }, + "border": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_Length": 598 + }, + { + "m_StartPoint": { + "m_X": 398, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_Length": 398 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 598 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 598 + } + ], + "borderSameKnifeHelpCut": null, + "cutLines": null, + "cutLinesSameKnifeHelpCut": null, + "borderMoving": null, + "borderModelThrough": [], + "borderModelThroughR": [], + "cutLinesModelThrough": [], + "borderInnerPlace": [], + "blockInnerSpace": [], + "blockOuterSpace": null, + "polylines2vModel": [], + "polylinesOutModel": [], + "placeContours": [] + }, + "remarkParams": {} + }, + "orderId": "1905521075534430208", + "goodsId": "SP202001031", + "roomId": 0, + "bodyId": 0, + "blockId": "1905521077707079680", + "oldBlockId": "1905521077707079680", + "blockNo": "25030882564", + "customPlateNo": "F128-R001-C001-P003", + "labelNo": "", + "blockName": "背板-侧面铣型+槽", + "plateRemark": "", + "remark1": "", + "remark2": "", + "remark3": "", + "remark4": "", + "remark5": "", + "extraRemark": {}, + "width": 400, + "length": 600, + "thickness": 18, + "area": 0.24, + "sealLeft": 1, + "sealRight": 1, + "sealTop": 1, + "sealBottom": 1, + "cutWidth": 398, + "cutLength": 598, + "cutArea": 0.238004, + "isAdditionalBlock": false, + "isRemainBlock": false, + "texture": 0, + "placeHole": 2, + "isUnRegular": false, + "isTurnFaceToPlace": true, + "isTwoFaceToPlace": false, + "isCurvedGroundLine": false, + "isPlaced": true, + "fullBoardId": 0, + "boardId": 2, + "placeId": 5, + "placeX": 407.015, + "placeY": 3.005, + "placeStyle": 4, + "cutRegion": 0, + "cutOrder": 0, + "cutPointId": 0, + "placeWidth": 398, + "placeLength": 598, + "placeSealLeft": 0, + "placeSealRight": 0, + "placeSealTop": 0, + "placeSealBottom": 0, + "orgSizeExpand": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "placeOffX": 3.005, + "placeOffY": 3.005, + "isAutoPlaced": true, + "isOutBoard": false, + "isOverlap": false, + "placeDirection": "→", + "placeDirection_Length": "→", + "isDrilling": true, + "isModeling": true, + "overBlockFlag": 0, + "isCutOtherFace": false, + "isCutTurnOver": false, + "holeCountSideLeft": 0, + "holeCountSideRight": 0, + "holeCountSideTop": 0, + "holeCountSideBottom": 0, + "holeListFaceA": [], + "holeListFaceB": [], + "modelListFaceA": [], + "modelListFaceB": [], + "labelPosX": 0, + "labelPosY": 0, + "isCncLabelA": false, + "isCncLabelB": false, + "isCncLabelTurnOver": false, + "type": 2, + "openDoorType": 0, + "_blockId": "1905521077707079680" + } + ], + "remainBlockList": [], + "isCreateRemainSpace": true, + "hasModelOnLeft": false, + "hasModelOnRight": false +} +/** 测试数据 异形板 */ +const data1 = { + "sourceId": 0, + "boardNo": "", + "boardId": 2, + "fullBoardId": 0, + "width": 1220, + "length": 2440, + "area": 2.9768, + "blockCount": 6, + "blockArea": 2.09, + "usageRate": 70.21, + "points": [], + "isLocked": false, + "isCuted": false, + "cutedType": 0, + "blockList": [ + { + "blockDetail": { + "organId": 0, + "blockId": "1907276518426411009", + "pointDetail": [], + "modelDetail": [], + "holeDetail": [], + "offsetX": 1.176, + "offsetY": 1, + "cutWidth": 1138.917, + "cutLength": 1083.174, + "points": [ + { + "pointX": 217.514, + "pointY": 0, + "curve": 0, + "radius": 0, + "sealSize": 0, + "isPreCutRequired": false + }, + { + "pointX": 921.403, + "pointY": 0, + "curve": 0, + "radius": 0, + "sealSize": 0, + "isPreCutRequired": false + }, + { + "pointX": 1138.917, + "pointY": 669.438, + "curve": 0, + "radius": 0, + "sealSize": 0, + "isPreCutRequired": false + }, + { + "pointX": 569.458, + "pointY": 1083.174, + "curve": 0, + "radius": 0, + "sealSize": 0, + "isPreCutRequired": false + }, + { + "pointX": 0, + "pointY": 669.438, + "curve": 0, + "radius": 0, + "sealSize": 0, + "isPreCutRequired": false + } + ], + "orgPoints": [ + { + "pointX": 217.963, + "pointY": 0, + "curve": 0, + "radius": 0, + "sealSize": 1, + "isPreCutRequired": false + }, + { + "pointX": 923.305, + "pointY": 0, + "curve": 0, + "radius": 0, + "sealSize": 1, + "isPreCutRequired": false + }, + { + "pointX": 1141.268, + "pointY": 670.82, + "curve": 0, + "radius": 0, + "sealSize": 1, + "isPreCutRequired": false + }, + { + "pointX": 570.634, + "pointY": 1085.41, + "curve": 0, + "radius": 0, + "sealSize": 1, + "isPreCutRequired": false + }, + { + "pointX": 0, + "pointY": 670.82, + "curve": 0, + "radius": 0, + "sealSize": 1, + "isPreCutRequired": false + } + ], + "orgContourData": null, + "holes": [], + "holeListFaceA": [], + "holeListFaceB": [], + "holeListThrough": [], + "holeListSide": [], + "models": [ + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 10, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 381.1855575027534, + "y": 334.4101966249683, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 405.6878156830016, + "y": 258.99999999999994, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 733.2280038711823, + "y": 259, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 757.7302620514309, + "y": 334.4101966249683, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 733.2280038711823, + "y": 409.82039324993667, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 405.68781568300204, + "y": 409.8203932499368, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 381.1855575027534, + "y": 334.4101966249683, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 384.34, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 407.868, + "pointY": 406.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 731.049, + "pointY": 406.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 754.576, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 731.049, + "pointY": 262, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 407.868, + "pointY": 262, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 384.34, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 387.495, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 410.048, + "pointY": 265, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 728.869, + "pointY": 265, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 751.422, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 728.869, + "pointY": 403.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 410.048, + "pointY": 403.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 387.495, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 390.649, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.227, + "pointY": 268, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 726.69, + "pointY": 268, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 748.268, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 726.69, + "pointY": 400.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.227, + "pointY": 400.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 390.649, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 393.804, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 414.407, + "pointY": 271, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 724.51, + "pointY": 271, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 745.113, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 724.51, + "pointY": 397.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 414.407, + "pointY": 397.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 393.804, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 396.958, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 416.586, + "pointY": 274, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 722.33, + "pointY": 274, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 741.959, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 722.33, + "pointY": 394.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 416.586, + "pointY": 394.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 396.958, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 400.112, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 418.766, + "pointY": 277, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 720.151, + "pointY": 277, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 738.804, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 720.151, + "pointY": 391.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 418.766, + "pointY": 391.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 400.112, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 403.267, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 420.946, + "pointY": 280, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 717.971, + "pointY": 280, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 735.65, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 717.971, + "pointY": 388.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 420.946, + "pointY": 388.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 403.267, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 406.421, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 423.125, + "pointY": 283, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 715.791, + "pointY": 283, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 732.496, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 715.791, + "pointY": 385.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 423.125, + "pointY": 385.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 406.421, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 409.575, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.305, + "pointY": 286, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 713.612, + "pointY": 286, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 729.341, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 713.612, + "pointY": 382.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.305, + "pointY": 382.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 409.575, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.73, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 427.485, + "pointY": 289, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 711.432, + "pointY": 289, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 726.187, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 711.432, + "pointY": 379.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 427.485, + "pointY": 379.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.73, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 415.884, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 429.664, + "pointY": 292, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 709.253, + "pointY": 292, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 723.032, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 709.253, + "pointY": 376.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 429.664, + "pointY": 376.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 415.884, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 419.039, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.844, + "pointY": 295, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 707.073, + "pointY": 295, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 719.878, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 707.073, + "pointY": 373.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.844, + "pointY": 373.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 419.039, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 422.193, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.023, + "pointY": 298, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 704.893, + "pointY": 298, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 716.724, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 704.893, + "pointY": 370.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.023, + "pointY": 370.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 422.193, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.347, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 436.203, + "pointY": 301, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 702.714, + "pointY": 301, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 713.569, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 702.714, + "pointY": 367.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 436.203, + "pointY": 367.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.347, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 428.502, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 438.383, + "pointY": 304, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 700.534, + "pointY": 304, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 710.415, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 700.534, + "pointY": 364.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 438.383, + "pointY": 364.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 428.502, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.656, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 440.562, + "pointY": 307, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 698.354, + "pointY": 307, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 707.261, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 698.354, + "pointY": 361.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 440.562, + "pointY": 361.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.656, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.811, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 442.742, + "pointY": 310, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 696.175, + "pointY": 310, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 704.106, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 696.175, + "pointY": 358.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 442.742, + "pointY": 358.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.811, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 437.965, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.922, + "pointY": 313, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 693.995, + "pointY": 313, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 700.952, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 693.995, + "pointY": 355.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.922, + "pointY": 355.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 437.965, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 441.119, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.101, + "pointY": 316, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 691.816, + "pointY": 316, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 697.797, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 691.816, + "pointY": 352.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.101, + "pointY": 352.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 441.119, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.274, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 449.281, + "pointY": 319, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 689.636, + "pointY": 319, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 694.643, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 689.636, + "pointY": 349.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 449.281, + "pointY": 349.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.274, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.428, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 451.46, + "pointY": 322, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 687.456, + "pointY": 322, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 691.489, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 687.456, + "pointY": 346.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 451.46, + "pointY": 346.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.428, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 450.582, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.64, + "pointY": 325, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 685.277, + "pointY": 325, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 688.334, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 685.277, + "pointY": 343.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.64, + "pointY": 343.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 450.582, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.737, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 455.82, + "pointY": 328, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 683.097, + "pointY": 328, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 685.18, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 683.097, + "pointY": 340.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 455.82, + "pointY": 340.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.737, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 456.891, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 457.999, + "pointY": 331, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 680.917, + "pointY": 331, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 682.025, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 680.917, + "pointY": 337.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 457.999, + "pointY": 337.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 456.891, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.046, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.179, + "pointY": 334, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 678.738, + "pointY": 334, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 678.871, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 678.738, + "pointY": 334.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.179, + "pointY": 334.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.046, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 384.34, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 407.868, + "pointY": 406.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 731.049, + "pointY": 406.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 754.576, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 731.049, + "pointY": 262, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 407.868, + "pointY": 262, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 384.34, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 387.495, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 410.048, + "pointY": 265, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 728.869, + "pointY": 265, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 751.422, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 728.869, + "pointY": 403.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 410.048, + "pointY": 403.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 387.495, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 390.649, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.227, + "pointY": 268, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 726.69, + "pointY": 268, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 748.268, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 726.69, + "pointY": 400.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.227, + "pointY": 400.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 390.649, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 393.804, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 414.407, + "pointY": 271, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 724.51, + "pointY": 271, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 745.113, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 724.51, + "pointY": 397.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 414.407, + "pointY": 397.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 393.804, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 396.958, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 416.586, + "pointY": 274, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 722.33, + "pointY": 274, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 741.959, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 722.33, + "pointY": 394.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 416.586, + "pointY": 394.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 396.958, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 400.112, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 418.766, + "pointY": 277, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 720.151, + "pointY": 277, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 738.804, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 720.151, + "pointY": 391.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 418.766, + "pointY": 391.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 400.112, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 403.267, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 420.946, + "pointY": 280, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 717.971, + "pointY": 280, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 735.65, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 717.971, + "pointY": 388.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 420.946, + "pointY": 388.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 403.267, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 406.421, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 423.125, + "pointY": 283, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 715.791, + "pointY": 283, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 732.496, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 715.791, + "pointY": 385.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 423.125, + "pointY": 385.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 406.421, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 409.575, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.305, + "pointY": 286, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 713.612, + "pointY": 286, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 729.341, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 713.612, + "pointY": 382.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.305, + "pointY": 382.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 409.575, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.73, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 427.485, + "pointY": 289, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 711.432, + "pointY": 289, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 726.187, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 711.432, + "pointY": 379.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 427.485, + "pointY": 379.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.73, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 415.884, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 429.664, + "pointY": 292, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 709.253, + "pointY": 292, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 723.032, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 709.253, + "pointY": 376.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 429.664, + "pointY": 376.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 415.884, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 419.039, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.844, + "pointY": 295, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 707.073, + "pointY": 295, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 719.878, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 707.073, + "pointY": 373.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.844, + "pointY": 373.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 419.039, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 422.193, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.023, + "pointY": 298, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 704.893, + "pointY": 298, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 716.724, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 704.893, + "pointY": 370.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.023, + "pointY": 370.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 422.193, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.347, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 436.203, + "pointY": 301, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 702.714, + "pointY": 301, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 713.569, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 702.714, + "pointY": 367.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 436.203, + "pointY": 367.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.347, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 428.502, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 438.383, + "pointY": 304, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 700.534, + "pointY": 304, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 710.415, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 700.534, + "pointY": 364.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 438.383, + "pointY": 364.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 428.502, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.656, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 440.562, + "pointY": 307, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 698.354, + "pointY": 307, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 707.261, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 698.354, + "pointY": 361.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 440.562, + "pointY": 361.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.656, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.811, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 442.742, + "pointY": 310, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 696.175, + "pointY": 310, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 704.106, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 696.175, + "pointY": 358.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 442.742, + "pointY": 358.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.811, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 437.965, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.922, + "pointY": 313, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 693.995, + "pointY": 313, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 700.952, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 693.995, + "pointY": 355.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.922, + "pointY": 355.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 437.965, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 441.119, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.101, + "pointY": 316, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 691.816, + "pointY": 316, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 697.797, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 691.816, + "pointY": 352.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.101, + "pointY": 352.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 441.119, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.274, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 449.281, + "pointY": 319, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 689.636, + "pointY": 319, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 694.643, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 689.636, + "pointY": 349.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 449.281, + "pointY": 349.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.274, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.428, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 451.46, + "pointY": 322, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 687.456, + "pointY": 322, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 691.489, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 687.456, + "pointY": 346.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 451.46, + "pointY": 346.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.428, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 450.582, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.64, + "pointY": 325, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 685.277, + "pointY": 325, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 688.334, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 685.277, + "pointY": 343.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.64, + "pointY": 343.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 450.582, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.737, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 455.82, + "pointY": 328, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 683.097, + "pointY": 328, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 685.18, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 683.097, + "pointY": 340.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 455.82, + "pointY": 340.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.737, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 456.891, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 457.999, + "pointY": 331, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 680.917, + "pointY": 331, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 682.025, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 680.917, + "pointY": 337.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 457.999, + "pointY": 337.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 456.891, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.046, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.179, + "pointY": 334, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 678.738, + "pointY": 334, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 678.871, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 678.738, + "pointY": 334.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.179, + "pointY": 334.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.046, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 2, + "lineId": 2, + "face": 0, + "knifeName": "V90v-40", + "knifeRadius": 20, + "depth": 10, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": null, + "pointList": [ + { + "pointX": 776.821, + "pointY": 469.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 362.096, + "pointY": 469.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 318.098, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 362.096, + "pointY": 199, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 776.821, + "pointY": 199, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 820.818, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 776.821, + "pointY": 469.82, + "radius": 0, + "depth": 10, + "curve": 0 + } + ], + "realKnifeRadius": 0, + "realPointList": [], + "realKnifeId": -1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [ + { + "name": "V90v-40", + "offset": 0, + "radius": 20, + "depth": 10, + "angle": 1.571 + }, + { + "name": "V90v-40", + "offset": -10, + "radius": 20, + "depth": 10, + "angle": 1.571 + }, + { + "name": "ZD5", + "offset": -2.5, + "radius": 2.5, + "depth": 10, + "angle": 0 + }, + { + "name": "ZD5", + "offset": -5, + "radius": 2.5, + "depth": 10, + "angle": 0 + }, + { + "name": "ZD5", + "offset": -7.5, + "radius": 2.5, + "depth": 10, + "angle": 0 + } + ], + "VLines": [ + { + "isFaceB": false, + "name": "V90v-40", + "value": 0, + "knifeId": -1, + "knifeRadius": 20, + "depth": 10, + "points": [ + { + "x": 784.0879243974632, + "y": 479.82203693949305, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 776.821, + "y": 469.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 362.096, + "y": 469.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 354.82912664182254, + "y": 479.82203693949305, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 362.096, + "y": 469.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 318.098, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 307.5812217510182, + "y": 334.40999999999997, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 318.098, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 362.096, + "y": 199, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 354.8291266418225, + "y": 188.99796306050692, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 362.096, + "y": 199, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 776.821, + "y": 199, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 784.0879243974632, + "y": 188.99796306050692, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 776.821, + "y": 199, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 820.818, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 831.3347554234352, + "y": 334.40999999999997, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 820.818, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 776.821, + "y": 469.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 784.0879243974632, + "y": 479.82203693949305, + "z": 10, + "bul": 0, + "r": 0 + } + ], + "offset": { + "name": "V90v-40", + "offset": 0, + "radius": 20, + "depth": 10, + "angle": 1.571 + } + }, + { + "isFaceB": false, + "name": "V90v-40", + "value": -10, + "knifeId": -1, + "knifeRadius": 20, + "depth": 10, + "points": [ + { + "x": 776.8224799270778, + "y": 469.82203693949305, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 769.5555555296146, + "y": 459.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 369.3613934414942, + "y": 459.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 362.0945200833167, + "y": 469.82203693949305, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 369.3613934414942, + "y": 459.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 328.6126364811515, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 318.0958582321697, + "y": 334.40999999999997, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 328.6126364811515, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 369.36139344149416, + "y": 209, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 362.0945200833167, + "y": 198.99796306050692, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 369.36139344149416, + "y": 209, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 769.5555555296145, + "y": 209, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 776.8224799270777, + "y": 198.99796306050695, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 769.5555555296145, + "y": 209, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 810.3033863397467, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 820.8201417631819, + "y": 334.41, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 810.3033863397467, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 769.5555555296146, + "y": 459.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 776.8224799270778, + "y": 469.82203693949305, + "z": 10, + "bul": 0, + "r": 0 + } + ], + "offset": { + "name": "V90v-40", + "offset": -10, + "radius": 20, + "depth": 10, + "angle": 1.571 + } + }, + { + "isFaceB": false, + "name": "ZD5", + "value": -2.5, + "knifeId": -1, + "knifeRadius": 2.5, + "depth": 10, + "points": [ + { + "x": 775.0046388824036, + "y": 467.32, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 363.9123483603736, + "y": 467.32, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 320.72665912028793, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 363.9123483603735, + "y": 201.5, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 775.0046388824036, + "y": 201.49999999999997, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 818.1893465849366, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 775.0046388824036, + "y": 467.32, + "z": 0, + "bul": 0, + "r": 0 + } + ], + "offset": { + "name": "ZD5", + "offset": -2.5, + "radius": 2.5, + "depth": 10, + "angle": 0 + } + }, + { + "isFaceB": false, + "name": "ZD5", + "value": -5, + "knifeId": -1, + "knifeRadius": 2.5, + "depth": 10, + "points": [ + { + "x": 773.1882777648073, + "y": 464.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 365.72869672074705, + "y": 464.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 323.35531824057574, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 365.72869672074705, + "y": 204, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 773.1882777648073, + "y": 204.00000000000003, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 815.5606931698733, + "y": 334.40999999999997, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 773.1882777648073, + "y": 464.82, + "z": 0, + "bul": 0, + "r": 0 + } + ], + "offset": { + "name": "ZD5", + "offset": -5, + "radius": 2.5, + "depth": 10, + "angle": 0 + } + }, + { + "isFaceB": false, + "name": "ZD5", + "value": -7.5, + "knifeId": -1, + "knifeRadius": 2.5, + "depth": 10, + "points": [ + { + "x": 771.3719166472108, + "y": 462.32, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 367.54504508112063, + "y": 462.32, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 325.9839773608636, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 367.54504508112063, + "y": 206.5, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 771.3719166472108, + "y": 206.5, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 812.9320397548099, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 771.3719166472108, + "y": 462.32, + "z": 0, + "bul": 0, + "r": 0 + } + ], + "offset": { + "name": "ZD5", + "offset": -7.5, + "radius": 2.5, + "depth": 10, + "angle": 0 + } + } + ], + "offsetInfo": "4( )" + } + ], + "modelListFaceA": [ + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 10, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 381.1855575027534, + "y": 334.4101966249683, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 405.6878156830016, + "y": 258.99999999999994, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 733.2280038711823, + "y": 259, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 757.7302620514309, + "y": 334.4101966249683, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 733.2280038711823, + "y": 409.82039324993667, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 405.68781568300204, + "y": 409.8203932499368, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 381.1855575027534, + "y": 334.4101966249683, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 384.34, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 407.868, + "pointY": 406.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 731.049, + "pointY": 406.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 754.576, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 731.049, + "pointY": 262, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 407.868, + "pointY": 262, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 384.34, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 387.495, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 410.048, + "pointY": 265, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 728.869, + "pointY": 265, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 751.422, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 728.869, + "pointY": 403.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 410.048, + "pointY": 403.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 387.495, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 390.649, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.227, + "pointY": 268, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 726.69, + "pointY": 268, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 748.268, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 726.69, + "pointY": 400.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.227, + "pointY": 400.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 390.649, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 393.804, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 414.407, + "pointY": 271, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 724.51, + "pointY": 271, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 745.113, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 724.51, + "pointY": 397.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 414.407, + "pointY": 397.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 393.804, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 396.958, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 416.586, + "pointY": 274, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 722.33, + "pointY": 274, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 741.959, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 722.33, + "pointY": 394.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 416.586, + "pointY": 394.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 396.958, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 400.112, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 418.766, + "pointY": 277, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 720.151, + "pointY": 277, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 738.804, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 720.151, + "pointY": 391.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 418.766, + "pointY": 391.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 400.112, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 403.267, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 420.946, + "pointY": 280, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 717.971, + "pointY": 280, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 735.65, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 717.971, + "pointY": 388.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 420.946, + "pointY": 388.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 403.267, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 406.421, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 423.125, + "pointY": 283, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 715.791, + "pointY": 283, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 732.496, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 715.791, + "pointY": 385.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 423.125, + "pointY": 385.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 406.421, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 409.575, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.305, + "pointY": 286, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 713.612, + "pointY": 286, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 729.341, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 713.612, + "pointY": 382.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.305, + "pointY": 382.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 409.575, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.73, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 427.485, + "pointY": 289, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 711.432, + "pointY": 289, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 726.187, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 711.432, + "pointY": 379.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 427.485, + "pointY": 379.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.73, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 415.884, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 429.664, + "pointY": 292, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 709.253, + "pointY": 292, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 723.032, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 709.253, + "pointY": 376.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 429.664, + "pointY": 376.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 415.884, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 419.039, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.844, + "pointY": 295, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 707.073, + "pointY": 295, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 719.878, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 707.073, + "pointY": 373.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.844, + "pointY": 373.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 419.039, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 422.193, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.023, + "pointY": 298, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 704.893, + "pointY": 298, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 716.724, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 704.893, + "pointY": 370.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.023, + "pointY": 370.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 422.193, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.347, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 436.203, + "pointY": 301, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 702.714, + "pointY": 301, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 713.569, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 702.714, + "pointY": 367.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 436.203, + "pointY": 367.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.347, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 428.502, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 438.383, + "pointY": 304, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 700.534, + "pointY": 304, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 710.415, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 700.534, + "pointY": 364.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 438.383, + "pointY": 364.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 428.502, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.656, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 440.562, + "pointY": 307, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 698.354, + "pointY": 307, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 707.261, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 698.354, + "pointY": 361.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 440.562, + "pointY": 361.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.656, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.811, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 442.742, + "pointY": 310, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 696.175, + "pointY": 310, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 704.106, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 696.175, + "pointY": 358.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 442.742, + "pointY": 358.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.811, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 437.965, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.922, + "pointY": 313, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 693.995, + "pointY": 313, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 700.952, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 693.995, + "pointY": 355.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.922, + "pointY": 355.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 437.965, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 441.119, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.101, + "pointY": 316, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 691.816, + "pointY": 316, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 697.797, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 691.816, + "pointY": 352.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.101, + "pointY": 352.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 441.119, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.274, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 449.281, + "pointY": 319, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 689.636, + "pointY": 319, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 694.643, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 689.636, + "pointY": 349.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 449.281, + "pointY": 349.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.274, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.428, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 451.46, + "pointY": 322, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 687.456, + "pointY": 322, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 691.489, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 687.456, + "pointY": 346.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 451.46, + "pointY": 346.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.428, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 450.582, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.64, + "pointY": 325, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 685.277, + "pointY": 325, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 688.334, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 685.277, + "pointY": 343.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.64, + "pointY": 343.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 450.582, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.737, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 455.82, + "pointY": 328, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 683.097, + "pointY": 328, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 685.18, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 683.097, + "pointY": 340.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 455.82, + "pointY": 340.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.737, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 456.891, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 457.999, + "pointY": 331, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 680.917, + "pointY": 331, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 682.025, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 680.917, + "pointY": 337.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 457.999, + "pointY": 337.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 456.891, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.046, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.179, + "pointY": 334, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 678.738, + "pointY": 334, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 678.871, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 678.738, + "pointY": 334.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.179, + "pointY": 334.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.046, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 384.34, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 407.868, + "pointY": 406.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 731.049, + "pointY": 406.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 754.576, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 731.049, + "pointY": 262, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 407.868, + "pointY": 262, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 384.34, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 387.495, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 410.048, + "pointY": 265, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 728.869, + "pointY": 265, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 751.422, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 728.869, + "pointY": 403.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 410.048, + "pointY": 403.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 387.495, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 390.649, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.227, + "pointY": 268, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 726.69, + "pointY": 268, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 748.268, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 726.69, + "pointY": 400.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.227, + "pointY": 400.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 390.649, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 393.804, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 414.407, + "pointY": 271, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 724.51, + "pointY": 271, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 745.113, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 724.51, + "pointY": 397.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 414.407, + "pointY": 397.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 393.804, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 396.958, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 416.586, + "pointY": 274, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 722.33, + "pointY": 274, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 741.959, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 722.33, + "pointY": 394.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 416.586, + "pointY": 394.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 396.958, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 400.112, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 418.766, + "pointY": 277, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 720.151, + "pointY": 277, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 738.804, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 720.151, + "pointY": 391.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 418.766, + "pointY": 391.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 400.112, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 403.267, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 420.946, + "pointY": 280, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 717.971, + "pointY": 280, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 735.65, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 717.971, + "pointY": 388.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 420.946, + "pointY": 388.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 403.267, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 406.421, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 423.125, + "pointY": 283, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 715.791, + "pointY": 283, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 732.496, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 715.791, + "pointY": 385.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 423.125, + "pointY": 385.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 406.421, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 409.575, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.305, + "pointY": 286, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 713.612, + "pointY": 286, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 729.341, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 713.612, + "pointY": 382.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.305, + "pointY": 382.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 409.575, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.73, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 427.485, + "pointY": 289, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 711.432, + "pointY": 289, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 726.187, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 711.432, + "pointY": 379.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 427.485, + "pointY": 379.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.73, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 415.884, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 429.664, + "pointY": 292, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 709.253, + "pointY": 292, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 723.032, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 709.253, + "pointY": 376.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 429.664, + "pointY": 376.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 415.884, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 419.039, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.844, + "pointY": 295, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 707.073, + "pointY": 295, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 719.878, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 707.073, + "pointY": 373.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.844, + "pointY": 373.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 419.039, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 422.193, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.023, + "pointY": 298, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 704.893, + "pointY": 298, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 716.724, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 704.893, + "pointY": 370.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.023, + "pointY": 370.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 422.193, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.347, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 436.203, + "pointY": 301, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 702.714, + "pointY": 301, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 713.569, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 702.714, + "pointY": 367.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 436.203, + "pointY": 367.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.347, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 428.502, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 438.383, + "pointY": 304, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 700.534, + "pointY": 304, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 710.415, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 700.534, + "pointY": 364.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 438.383, + "pointY": 364.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 428.502, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.656, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 440.562, + "pointY": 307, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 698.354, + "pointY": 307, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 707.261, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 698.354, + "pointY": 361.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 440.562, + "pointY": 361.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.656, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.811, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 442.742, + "pointY": 310, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 696.175, + "pointY": 310, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 704.106, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 696.175, + "pointY": 358.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 442.742, + "pointY": 358.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.811, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 437.965, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.922, + "pointY": 313, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 693.995, + "pointY": 313, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 700.952, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 693.995, + "pointY": 355.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.922, + "pointY": 355.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 437.965, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 441.119, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.101, + "pointY": 316, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 691.816, + "pointY": 316, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 697.797, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 691.816, + "pointY": 352.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.101, + "pointY": 352.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 441.119, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.274, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 449.281, + "pointY": 319, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 689.636, + "pointY": 319, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 694.643, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 689.636, + "pointY": 349.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 449.281, + "pointY": 349.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.274, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.428, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 451.46, + "pointY": 322, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 687.456, + "pointY": 322, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 691.489, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 687.456, + "pointY": 346.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 451.46, + "pointY": 346.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.428, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 450.582, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.64, + "pointY": 325, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 685.277, + "pointY": 325, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 688.334, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 685.277, + "pointY": 343.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.64, + "pointY": 343.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 450.582, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.737, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 455.82, + "pointY": 328, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 683.097, + "pointY": 328, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 685.18, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 683.097, + "pointY": 340.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 455.82, + "pointY": 340.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.737, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 456.891, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 457.999, + "pointY": 331, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 680.917, + "pointY": 331, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 682.025, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 680.917, + "pointY": 337.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 457.999, + "pointY": 337.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 456.891, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.046, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.179, + "pointY": 334, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 678.738, + "pointY": 334, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 678.871, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 678.738, + "pointY": 334.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.179, + "pointY": 334.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.046, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 2, + "lineId": 2, + "face": 0, + "knifeName": "V90v-40", + "knifeRadius": 20, + "depth": 10, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": null, + "pointList": [ + { + "pointX": 776.821, + "pointY": 469.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 362.096, + "pointY": 469.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 318.098, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 362.096, + "pointY": 199, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 776.821, + "pointY": 199, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 820.818, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 776.821, + "pointY": 469.82, + "radius": 0, + "depth": 10, + "curve": 0 + } + ], + "realKnifeRadius": 0, + "realPointList": [], + "realKnifeId": -1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [ + { + "name": "V90v-40", + "offset": 0, + "radius": 20, + "depth": 10, + "angle": 1.571 + }, + { + "name": "V90v-40", + "offset": -10, + "radius": 20, + "depth": 10, + "angle": 1.571 + }, + { + "name": "ZD5", + "offset": -2.5, + "radius": 2.5, + "depth": 10, + "angle": 0 + }, + { + "name": "ZD5", + "offset": -5, + "radius": 2.5, + "depth": 10, + "angle": 0 + }, + { + "name": "ZD5", + "offset": -7.5, + "radius": 2.5, + "depth": 10, + "angle": 0 + } + ], + "VLines": [ + { + "isFaceB": false, + "name": "V90v-40", + "value": 0, + "knifeId": -1, + "knifeRadius": 20, + "depth": 10, + "points": [ + { + "x": 784.0879243974632, + "y": 479.82203693949305, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 776.821, + "y": 469.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 362.096, + "y": 469.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 354.82912664182254, + "y": 479.82203693949305, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 362.096, + "y": 469.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 318.098, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 307.5812217510182, + "y": 334.40999999999997, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 318.098, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 362.096, + "y": 199, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 354.8291266418225, + "y": 188.99796306050692, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 362.096, + "y": 199, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 776.821, + "y": 199, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 784.0879243974632, + "y": 188.99796306050692, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 776.821, + "y": 199, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 820.818, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 831.3347554234352, + "y": 334.40999999999997, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 820.818, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 776.821, + "y": 469.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 784.0879243974632, + "y": 479.82203693949305, + "z": 10, + "bul": 0, + "r": 0 + } + ], + "offset": { + "name": "V90v-40", + "offset": 0, + "radius": 20, + "depth": 10, + "angle": 1.571 + } + }, + { + "isFaceB": false, + "name": "V90v-40", + "value": -10, + "knifeId": -1, + "knifeRadius": 20, + "depth": 10, + "points": [ + { + "x": 776.8224799270778, + "y": 469.82203693949305, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 769.5555555296146, + "y": 459.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 369.3613934414942, + "y": 459.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 362.0945200833167, + "y": 469.82203693949305, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 369.3613934414942, + "y": 459.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 328.6126364811515, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 318.0958582321697, + "y": 334.40999999999997, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 328.6126364811515, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 369.36139344149416, + "y": 209, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 362.0945200833167, + "y": 198.99796306050692, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 369.36139344149416, + "y": 209, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 769.5555555296145, + "y": 209, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 776.8224799270777, + "y": 198.99796306050695, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 769.5555555296145, + "y": 209, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 810.3033863397467, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 820.8201417631819, + "y": 334.41, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 810.3033863397467, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 769.5555555296146, + "y": 459.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 776.8224799270778, + "y": 469.82203693949305, + "z": 10, + "bul": 0, + "r": 0 + } + ], + "offset": { + "name": "V90v-40", + "offset": -10, + "radius": 20, + "depth": 10, + "angle": 1.571 + } + }, + { + "isFaceB": false, + "name": "ZD5", + "value": -2.5, + "knifeId": -1, + "knifeRadius": 2.5, + "depth": 10, + "points": [ + { + "x": 775.0046388824036, + "y": 467.32, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 363.9123483603736, + "y": 467.32, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 320.72665912028793, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 363.9123483603735, + "y": 201.5, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 775.0046388824036, + "y": 201.49999999999997, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 818.1893465849366, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 775.0046388824036, + "y": 467.32, + "z": 0, + "bul": 0, + "r": 0 + } + ], + "offset": { + "name": "ZD5", + "offset": -2.5, + "radius": 2.5, + "depth": 10, + "angle": 0 + } + }, + { + "isFaceB": false, + "name": "ZD5", + "value": -5, + "knifeId": -1, + "knifeRadius": 2.5, + "depth": 10, + "points": [ + { + "x": 773.1882777648073, + "y": 464.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 365.72869672074705, + "y": 464.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 323.35531824057574, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 365.72869672074705, + "y": 204, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 773.1882777648073, + "y": 204.00000000000003, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 815.5606931698733, + "y": 334.40999999999997, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 773.1882777648073, + "y": 464.82, + "z": 0, + "bul": 0, + "r": 0 + } + ], + "offset": { + "name": "ZD5", + "offset": -5, + "radius": 2.5, + "depth": 10, + "angle": 0 + } + }, + { + "isFaceB": false, + "name": "ZD5", + "value": -7.5, + "knifeId": -1, + "knifeRadius": 2.5, + "depth": 10, + "points": [ + { + "x": 771.3719166472108, + "y": 462.32, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 367.54504508112063, + "y": 462.32, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 325.9839773608636, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 367.54504508112063, + "y": 206.5, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 771.3719166472108, + "y": 206.5, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 812.9320397548099, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 771.3719166472108, + "y": 462.32, + "z": 0, + "bul": 0, + "r": 0 + } + ], + "offset": { + "name": "ZD5", + "offset": -7.5, + "radius": 2.5, + "depth": 10, + "angle": 0 + } + } + ], + "offsetInfo": "4( )" + } + ], + "modelListFaceB": [], + "modelListThrough": [], + "modelListSide": [], + "thickness": 18, + "isUnRegular": true, + "bigHoleInFaceA": false, + "holeCountFront": 0, + "holeCountBack": 0, + "holeCountThrough": 0, + "holeCountSide": 0, + "holeCountLeft": 0, + "holeCountRight": 0, + "holeCountTop": 0, + "holeCountBottom": 0, + "holeCountBevelled": 0, + "modelCountFront": 2, + "modelCountBack": 0, + "modelCountThrough": 0, + "hasModelThrogh": false, + "isTwoFaceProcess": false, + "placeStyleFront": 0, + "placeStyleFrontReverse": 1, + "placeStyleBack": 4, + "placeStyleBackReverse": 7, + "labelPosX": -1, + "labelPosY": -1, + "isInited": false, + "isChecked": false, + "isOffsetRounding": true, + "offsetKnifeRadius": 3, + "preMillingSize": 0, + "isUseSameKnifeToHelpCut": false, + "useSameKnifeToHelpCutGap": 0, + "preMillingExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "modelExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "vKnifeModelExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "sameKnifeHelpExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "currentSizeExpand": { + "left": 3.005, + "right": 3.005, + "top": 3.005, + "bottom": 3.005, + "width": 6.01, + "length": 6.01 + }, + "borderContour": { + "placeStyle": 0, + "borderFinal": [ + { + "m_StartPoint": { + "m_X": 217.963, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 923.305, + "m_Y": 0 + }, + "tagData": 1, + "tagData2": 0, + "m_Length": 705.342 + }, + { + "m_StartPoint": { + "m_X": 923.305, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 1141.268, + "m_Y": 670.82 + }, + "tagData": 1, + "tagData2": 0, + "m_Length": 705.3420034061492 + }, + { + "m_StartPoint": { + "m_X": 1141.268, + "m_Y": 670.82 + }, + "m_EndPoint": { + "m_X": 570.634, + "m_Y": 1085.41 + }, + "tagData": 1, + "tagData2": 0, + "m_Length": 705.3424913160982 + }, + { + "m_StartPoint": { + "m_X": 570.634, + "m_Y": 1085.41 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 670.82 + }, + "tagData": 1, + "tagData2": 0, + "m_Length": 705.3424913160982 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 670.82 + }, + "m_EndPoint": { + "m_X": 217.963, + "m_Y": 0 + }, + "tagData": 1, + "tagData2": 0, + "m_Length": 705.3420034061492 + } + ], + "borderOrg": [ + { + "m_StartPoint": { + "m_X": 217.514, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 921.403, + "m_Y": 0 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.889 + }, + { + "m_StartPoint": { + "m_X": 921.403, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 1138.917, + "m_Y": 669.438 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.8888946701744 + }, + { + "m_StartPoint": { + "m_X": 1138.917, + "m_Y": 669.438 + }, + "m_EndPoint": { + "m_X": 569.458, + "m_Y": 1083.174 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.8899277422571 + }, + { + "m_StartPoint": { + "m_X": 569.458, + "m_Y": 1083.174 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 669.438 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.8891187253856 + } + ], + "borderPreMilling": [ + { + "m_StartPoint": { + "m_X": 217.514, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 921.403, + "m_Y": 0 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.889 + }, + { + "m_StartPoint": { + "m_X": 921.403, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 1138.917, + "m_Y": 669.438 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.8888946701744 + }, + { + "m_StartPoint": { + "m_X": 1138.917, + "m_Y": 669.438 + }, + "m_EndPoint": { + "m_X": 569.458, + "m_Y": 1083.174 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.8899277422571 + }, + { + "m_StartPoint": { + "m_X": 569.458, + "m_Y": 1083.174 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 669.438 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.8891187253856 + } + ], + "polylineOrg": { + "_isErase": false, + "IsEmbedEntity": false, + "OnlyRenderType": true, + "HasEdgeRenderType": false, + "HasPlaceFaceRenderType": false, + "HasBigHoleFaceRenderType": false, + "_CacheDrawObject": {}, + "_Color": 7, + "_Matrix": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_SpaceOCS": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_Visible": true, + "_VisibleInRender": true, + "_Freeze": false, + "_LockMaterial": false, + "__ProcessingGroupList": [], + "NeedUpdateFlag": 0, + "AutoUpdate": true, + "__UpdateVersion__": 1, + "_RoomName": "", + "_CabinetName": "", + "_LineData": [ + { + "pt": { + "x": 217.514, + "y": 0 + }, + "bul": 0 + }, + { + "pt": { + "x": 921.403, + "y": 0 + }, + "bul": 0 + }, + { + "pt": { + "x": 1138.917, + "y": 669.438 + }, + "bul": 0 + }, + { + "pt": { + "x": 569.458, + "y": 1083.174 + }, + "bul": 0 + } + ], + "_DisplayAccuracy": 0, + "_ClosedMark": true + }, + "border": [ + { + "m_StartPoint": { + "m_X": 217.514, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 921.403, + "m_Y": 0 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.889 + }, + { + "m_StartPoint": { + "m_X": 921.403, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 1138.917, + "m_Y": 669.438 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.8888946701744 + }, + { + "m_StartPoint": { + "m_X": 1138.917, + "m_Y": 669.438 + }, + "m_EndPoint": { + "m_X": 569.458, + "m_Y": 1083.174 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.8899277422571 + }, + { + "m_StartPoint": { + "m_X": 569.458, + "m_Y": 1083.174 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 669.438 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.8891187253856 + } + ], + "borderModelThrough": [], + "borderModelThroughR": [], + "cutLinesModelThrough": [], + "borderInnerPlace": [], + "blockInnerSpace": [], + "polylines2vModel": [ + { + "_isErase": false, + "IsEmbedEntity": false, + "OnlyRenderType": true, + "HasEdgeRenderType": false, + "HasPlaceFaceRenderType": false, + "HasBigHoleFaceRenderType": false, + "_CacheDrawObject": {}, + "_Color": 7, + "_Matrix": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_SpaceOCS": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_Visible": true, + "_VisibleInRender": true, + "_Freeze": false, + "_LockMaterial": false, + "__ProcessingGroupList": [], + "NeedUpdateFlag": 0, + "AutoUpdate": true, + "__UpdateVersion__": 1, + "_RoomName": "", + "_CabinetName": "", + "_LineData": [ + { + "pt": { + "x": 812.4284830162819, + "y": 483.95274355862404 + }, + "bul": 0 + }, + { + "pt": { + "x": 779.2588165160631, + "y": 508.05198056447705 + }, + "bul": 0 + }, + { + "pt": { + "x": 766.3757445019467, + "y": 490.31999999999994 + }, + "bul": 0 + }, + { + "pt": { + "x": 372.5412986195547, + "y": 490.32000000000005 + }, + "bul": 0 + }, + { + "pt": { + "x": 359.65832880799826, + "y": 508.05196443564796 + }, + "bul": 0 + }, + { + "pt": { + "x": 326.48858181925226, + "y": 483.9528382128452 + }, + "bul": 0 + }, + { + "pt": { + "x": 339.37155163080985, + "y": 466.2208737771955 + }, + "bul": 0 + }, + { + "pt": { + "x": 303.20394344493695, + "y": 354.9100000000001 + }, + "bul": 0 + }, + { + "pt": { + "x": 287.58122175101823, + "y": 354.90999999999985 + }, + "bul": 0 + }, + { + "pt": { + "x": 287.58122175101823, + "y": 313.90999999999985 + }, + "bul": 0 + }, + { + "pt": { + "x": 303.20394344493695, + "y": 313.90999999999997 + }, + "bul": 0 + }, + { + "pt": { + "x": 339.3715516308099, + "y": 202.59912622280433 + }, + "bul": 0 + }, + { + "pt": { + "x": 326.48858181925266, + "y": 184.86716178715557 + }, + "bul": 0 + }, + { + "pt": { + "x": 359.65832880799763, + "y": 160.76803556435135 + }, + "bul": 0 + }, + { + "pt": { + "x": 372.54129861955454, + "y": 178.5 + }, + "bul": 0 + }, + { + "pt": { + "x": 766.375744501946, + "y": 178.5 + }, + "bul": 0 + }, + { + "pt": { + "x": 779.2588165160631, + "y": 160.7680194355229 + }, + "bul": 0 + }, + { + "pt": { + "x": 812.4284830162819, + "y": 184.8672564413759 + }, + "bul": 0 + }, + { + "pt": { + "x": 799.5454110021647, + "y": 202.59923700585415 + }, + "bul": 0 + }, + { + "pt": { + "x": 835.7121611642901, + "y": 313.9099999999998 + }, + "bul": 0 + }, + { + "pt": { + "x": 851.3347554234352, + "y": 313.90999999999985 + }, + "bul": 0 + }, + { + "pt": { + "x": 851.3347554234352, + "y": 354.90999999999985 + }, + "bul": 0 + }, + { + "pt": { + "x": 835.7121611642903, + "y": 354.90999999999997 + }, + "bul": 0 + }, + { + "pt": { + "x": 799.5454110021647, + "y": 466.22076299414584 + }, + "bul": 0 + } + ], + "_DisplayAccuracy": 0, + "_ClosedMark": true + }, + { + "_isErase": false, + "IsEmbedEntity": false, + "OnlyRenderType": true, + "HasEdgeRenderType": false, + "HasPlaceFaceRenderType": false, + "HasBigHoleFaceRenderType": false, + "_CacheDrawObject": {}, + "_Color": 7, + "_Matrix": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_SpaceOCS": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_Visible": true, + "_VisibleInRender": true, + "_Freeze": false, + "_LockMaterial": false, + "__ProcessingGroupList": [], + "NeedUpdateFlag": 0, + "AutoUpdate": true, + "__UpdateVersion__": 1, + "_RoomName": "", + "_CabinetName": "", + "_LineData": [ + { + "pt": { + "x": 805.1630385458965, + "y": 473.95274355862404 + }, + "bul": 0 + }, + { + "pt": { + "x": 771.9933720456777, + "y": 498.05198056447705 + }, + "bul": 0 + }, + { + "pt": { + "x": 759.1103000315613, + "y": 480.32000000000005 + }, + "bul": 0 + }, + { + "pt": { + "x": 379.8066920610485, + "y": 480.32000000000005 + }, + "bul": 0 + }, + { + "pt": { + "x": 366.92372224949236, + "y": 498.05196443564785 + }, + "bul": 0 + }, + { + "pt": { + "x": 333.7539752607463, + "y": 473.9528382128452 + }, + "bul": 0 + }, + { + "pt": { + "x": 346.6369450723041, + "y": 456.2208737771954 + }, + "bul": 0 + }, + { + "pt": { + "x": 313.7185799260885, + "y": 354.9100000000001 + }, + "bul": 0 + }, + { + "pt": { + "x": 298.0958582321697, + "y": 354.90999999999985 + }, + "bul": 0 + }, + { + "pt": { + "x": 298.0958582321697, + "y": 313.90999999999985 + }, + "bul": 0 + }, + { + "pt": { + "x": 313.7185799260885, + "y": 313.90999999999997 + }, + "bul": 0 + }, + { + "pt": { + "x": 346.63694507230406, + "y": 212.5991262228044 + }, + "bul": 0 + }, + { + "pt": { + "x": 333.7539752607469, + "y": 194.8671617871555 + }, + "bul": 0 + }, + { + "pt": { + "x": 366.9237222494919, + "y": 170.7680355643513 + }, + "bul": 0 + }, + { + "pt": { + "x": 379.8066920610488, + "y": 188.5 + }, + "bul": 0 + }, + { + "pt": { + "x": 759.1103000315616, + "y": 188.5 + }, + "bul": 0 + }, + { + "pt": { + "x": 771.9933720456776, + "y": 170.7680194355229 + }, + "bul": 0 + }, + { + "pt": { + "x": 805.1630385458964, + "y": 194.86725644137596 + }, + "bul": 0 + }, + { + "pt": { + "x": 792.2799665317791, + "y": 212.5992370058542 + }, + "bul": 0 + }, + { + "pt": { + "x": 825.197547504037, + "y": 313.90999999999997 + }, + "bul": 0 + }, + { + "pt": { + "x": 840.8201417631819, + "y": 313.91 + }, + "bul": 0 + }, + { + "pt": { + "x": 840.8201417631819, + "y": 354.91 + }, + "bul": 0 + }, + { + "pt": { + "x": 825.1975475040371, + "y": 354.91 + }, + "bul": 0 + }, + { + "pt": { + "x": 792.2799665317793, + "y": 456.22076299414596 + }, + "bul": 0 + } + ], + "_DisplayAccuracy": 0, + "_ClosedMark": true + }, + { + "_isErase": false, + "IsEmbedEntity": false, + "OnlyRenderType": true, + "HasEdgeRenderType": false, + "HasPlaceFaceRenderType": false, + "HasBigHoleFaceRenderType": false, + "_CacheDrawObject": {}, + "_Color": 7, + "_Matrix": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_SpaceOCS": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_Visible": true, + "_VisibleInRender": true, + "_Freeze": false, + "_LockMaterial": false, + "__ProcessingGroupList": [], + "NeedUpdateFlag": 0, + "AutoUpdate": true, + "__UpdateVersion__": 1, + "_RoomName": "", + "_CabinetName": "", + "_LineData": [ + { + "pt": { + "x": 821.8150549758003, + "y": 332.9594005844406 + }, + "bul": 0 + }, + { + "pt": { + "x": 821.3437306830127, + "y": 334.40999999999997 + }, + "bul": 0 + }, + { + "pt": { + "x": 821.8150549758003, + "y": 335.8605994155594 + }, + "bul": 0 + }, + { + "pt": { + "x": 820.7611439442396, + "y": 336.20303294082026 + }, + "bul": 0 + }, + { + "pt": { + "x": 777.5046388824036, + "y": 469.33400438030947 + }, + "bul": 0 + }, + { + "pt": { + "x": 777.5046388824036, + "y": 470.31999999999994 + }, + "bul": 0 + }, + { + "pt": { + "x": 777.1842722235191, + "y": 470.31999999999994 + }, + "bul": 0 + }, + { + "pt": { + "x": 777.0852742468801, + "y": 470.6246870472239 + }, + "bul": 0 + }, + { + "pt": { + "x": 776.1475359223443, + "y": 470.31999999999994 + }, + "bul": 0 + }, + { + "pt": { + "x": 362.76949485517287, + "y": 470.31999999999994 + }, + "bul": 0 + }, + { + "pt": { + "x": 361.8317350705015, + "y": 470.62470094532136 + }, + "bul": 0 + }, + { + "pt": { + "x": 361.73273032792525, + "y": 470.31999999999994 + }, + "bul": 0 + }, + { + "pt": { + "x": 361.4123483603736, + "y": 470.31999999999994 + }, + "bul": 0 + }, + { + "pt": { + "x": 361.4123483603736, + "y": 469.333979675754 + }, + "bul": 0 + }, + { + "pt": { + "x": 318.15486408407435, + "y": 336.20302040820377 + }, + "bul": 0 + }, + { + "pt": { + "x": 317.1009410398309, + "y": 335.8605751966195 + }, + "bul": 0 + }, + { + "pt": { + "x": 317.57226817594244, + "y": 334.4100000000001 + }, + "bul": 0 + }, + { + "pt": { + "x": 317.1009410398309, + "y": 332.9594248033806 + }, + "bul": 0 + }, + { + "pt": { + "x": 318.15486408407435, + "y": 332.6169795917964 + }, + "bul": 0 + }, + { + "pt": { + "x": 361.4123483603735, + "y": 199.4860203242461 + }, + "bul": 0 + }, + { + "pt": { + "x": 361.4123483603735, + "y": 198.5 + }, + "bul": 0 + }, + { + "pt": { + "x": 361.73273032792525, + "y": 198.50000000000003 + }, + "bul": 0 + }, + { + "pt": { + "x": 361.8317350705015, + "y": 198.19529905467863 + }, + "bul": 0 + }, + { + "pt": { + "x": 362.76949485517287, + "y": 198.5 + }, + "bul": 0 + }, + { + "pt": { + "x": 776.1475359223446, + "y": 198.49999999999997 + }, + "bul": 0 + }, + { + "pt": { + "x": 777.0852742468801, + "y": 198.19531295277605 + }, + "bul": 0 + }, + { + "pt": { + "x": 777.1842722235193, + "y": 198.49999999999997 + }, + "bul": 0 + }, + { + "pt": { + "x": 777.5046388824036, + "y": 198.49999999999997 + }, + "bul": 0 + }, + { + "pt": { + "x": 777.5046388824036, + "y": 199.48599561969053 + }, + "bul": 0 + }, + { + "pt": { + "x": 820.7611439442396, + "y": 332.61696705917973 + }, + "bul": 0 + } + ], + "_DisplayAccuracy": 0, + "_ClosedMark": true + }, + { + "_isErase": false, + "IsEmbedEntity": false, + "OnlyRenderType": true, + "HasEdgeRenderType": false, + "HasPlaceFaceRenderType": false, + "HasBigHoleFaceRenderType": false, + "_CacheDrawObject": {}, + "_Color": 7, + "_Matrix": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_SpaceOCS": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_Visible": true, + "_VisibleInRender": true, + "_Freeze": false, + "_LockMaterial": false, + "__ProcessingGroupList": [], + "NeedUpdateFlag": 0, + "AutoUpdate": true, + "__UpdateVersion__": 1, + "_RoomName": "", + "_CabinetName": "", + "_LineData": [ + { + "pt": { + "x": 819.186401560737, + "y": 332.9594005844406 + }, + "bul": 0 + }, + { + "pt": { + "x": 818.7150772679494, + "y": 334.40999999999997 + }, + "bul": 0 + }, + { + "pt": { + "x": 819.186401560737, + "y": 335.86059941555936 + }, + "bul": 0 + }, + { + "pt": { + "x": 818.1324905291763, + "y": 336.2030329408202 + }, + "bul": 0 + }, + { + "pt": { + "x": 775.6882777648073, + "y": 466.83400438030947 + }, + "bul": 0 + }, + { + "pt": { + "x": 775.6882777648073, + "y": 467.81999999999994 + }, + "bul": 0 + }, + { + "pt": { + "x": 775.3679111059226, + "y": 467.81999999999994 + }, + "bul": 0 + }, + { + "pt": { + "x": 775.2689131292838, + "y": 468.1246870472239 + }, + "bul": 0 + }, + { + "pt": { + "x": 774.331174804748, + "y": 467.81999999999994 + }, + "bul": 0 + }, + { + "pt": { + "x": 364.5858432155463, + "y": 467.81999999999994 + }, + "bul": 0 + }, + { + "pt": { + "x": 363.648083430875, + "y": 468.12470094532136 + }, + "bul": 0 + }, + { + "pt": { + "x": 363.54907868829866, + "y": 467.81999999999994 + }, + "bul": 0 + }, + { + "pt": { + "x": 363.22869672074705, + "y": 467.81999999999994 + }, + "bul": 0 + }, + { + "pt": { + "x": 363.22869672074705, + "y": 466.833979675754 + }, + "bul": 0 + }, + { + "pt": { + "x": 320.78352320436215, + "y": 336.2030204082037 + }, + "bul": 0 + }, + { + "pt": { + "x": 319.7296001601187, + "y": 335.8605751966195 + }, + "bul": 0 + }, + { + "pt": { + "x": 320.20092729623025, + "y": 334.4100000000001 + }, + "bul": 0 + }, + { + "pt": { + "x": 319.7296001601187, + "y": 332.9594248033806 + }, + "bul": 0 + }, + { + "pt": { + "x": 320.78352320436215, + "y": 332.6169795917964 + }, + "bul": 0 + }, + { + "pt": { + "x": 363.22869672074705, + "y": 201.9860203242461 + }, + "bul": 0 + }, + { + "pt": { + "x": 363.22869672074705, + "y": 201 + }, + "bul": 0 + }, + { + "pt": { + "x": 363.5490786882988, + "y": 201 + }, + "bul": 0 + }, + { + "pt": { + "x": 363.64808343087503, + "y": 200.69529905467863 + }, + "bul": 0 + }, + { + "pt": { + "x": 364.5858432155464, + "y": 201 + }, + "bul": 0 + }, + { + "pt": { + "x": 774.3311748047481, + "y": 201.00000000000003 + }, + "bul": 0 + }, + { + "pt": { + "x": 775.2689131292838, + "y": 200.6953129527761 + }, + "bul": 0 + }, + { + "pt": { + "x": 775.367911105923, + "y": 201.00000000000003 + }, + "bul": 0 + }, + { + "pt": { + "x": 775.6882777648073, + "y": 201.00000000000003 + }, + "bul": 0 + }, + { + "pt": { + "x": 775.6882777648073, + "y": 201.98599561969058 + }, + "bul": 0 + }, + { + "pt": { + "x": 818.1324905291763, + "y": 332.6169670591796 + }, + "bul": 0 + } + ], + "_DisplayAccuracy": 0, + "_ClosedMark": true + }, + { + "_isErase": false, + "IsEmbedEntity": false, + "OnlyRenderType": true, + "HasEdgeRenderType": false, + "HasPlaceFaceRenderType": false, + "HasBigHoleFaceRenderType": false, + "_CacheDrawObject": {}, + "_Color": 7, + "_Matrix": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_SpaceOCS": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_Visible": true, + "_VisibleInRender": true, + "_Freeze": false, + "_LockMaterial": false, + "__ProcessingGroupList": [], + "NeedUpdateFlag": 0, + "AutoUpdate": true, + "__UpdateVersion__": 1, + "_RoomName": "", + "_CabinetName": "", + "_LineData": [ + { + "pt": { + "x": 816.5577481456736, + "y": 332.9594005844406 + }, + "bul": 0 + }, + { + "pt": { + "x": 816.086423852886, + "y": 334.40999999999997 + }, + "bul": 0 + }, + { + "pt": { + "x": 816.5577481456736, + "y": 335.8605994155594 + }, + "bul": 0 + }, + { + "pt": { + "x": 815.5038371141129, + "y": 336.20303294082026 + }, + "bul": 0 + }, + { + "pt": { + "x": 773.8719166472108, + "y": 464.33400438030947 + }, + "bul": 0 + }, + { + "pt": { + "x": 773.8719166472108, + "y": 465.32 + }, + "bul": 0 + }, + { + "pt": { + "x": 773.5515499883267, + "y": 465.32 + }, + "bul": 0 + }, + { + "pt": { + "x": 773.4525520116873, + "y": 465.6246870472239 + }, + "bul": 0 + }, + { + "pt": { + "x": 772.5148136871517, + "y": 465.32 + }, + "bul": 0 + }, + { + "pt": { + "x": 366.4021915759199, + "y": 465.32 + }, + "bul": 0 + }, + { + "pt": { + "x": 365.4644317912486, + "y": 465.62470094532136 + }, + "bul": 0 + }, + { + "pt": { + "x": 365.36542704867236, + "y": 465.32 + }, + "bul": 0 + }, + { + "pt": { + "x": 365.04504508112063, + "y": 465.32 + }, + "bul": 0 + }, + { + "pt": { + "x": 365.04504508112063, + "y": 464.3339796757539 + }, + "bul": 0 + }, + { + "pt": { + "x": 323.41218232465, + "y": 336.20302040820366 + }, + "bul": 0 + }, + { + "pt": { + "x": 322.35825928040657, + "y": 335.86057519661944 + }, + "bul": 0 + }, + { + "pt": { + "x": 322.8295864165181, + "y": 334.41 + }, + "bul": 0 + }, + { + "pt": { + "x": 322.35825928040657, + "y": 332.9594248033806 + }, + "bul": 0 + }, + { + "pt": { + "x": 323.41218232465, + "y": 332.61697959179634 + }, + "bul": 0 + }, + { + "pt": { + "x": 365.04504508112063, + "y": 204.48602032424608 + }, + "bul": 0 + }, + { + "pt": { + "x": 365.04504508112063, + "y": 203.5 + }, + "bul": 0 + }, + { + "pt": { + "x": 365.36542704867236, + "y": 203.5 + }, + "bul": 0 + }, + { + "pt": { + "x": 365.4644317912486, + "y": 203.19529905467863 + }, + "bul": 0 + }, + { + "pt": { + "x": 366.40219157591997, + "y": 203.5 + }, + "bul": 0 + }, + { + "pt": { + "x": 772.5148136871517, + "y": 203.5 + }, + "bul": 0 + }, + { + "pt": { + "x": 773.4525520116873, + "y": 203.1953129527761 + }, + "bul": 0 + }, + { + "pt": { + "x": 773.5515499883263, + "y": 203.5 + }, + "bul": 0 + }, + { + "pt": { + "x": 773.8719166472108, + "y": 203.5 + }, + "bul": 0 + }, + { + "pt": { + "x": 773.8719166472108, + "y": 204.48599561969058 + }, + "bul": 0 + }, + { + "pt": { + "x": 815.5038371141129, + "y": 332.61696705917973 + }, + "bul": 0 + } + ], + "_DisplayAccuracy": 0, + "_ClosedMark": true + } + ], + "polylinesOutModel": [], + "placeContours": [ + { + "placeStyle": 4, + "borderFinal": [ + { + "m_StartPoint": { + "m_X": 923.3050000000001, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 1141.268, + "m_Y": 670.82 + }, + "tagData": 1, + "tagData2": 0, + "m_Length": 705.342003406149 + }, + { + "m_StartPoint": { + "m_X": 1141.268, + "m_Y": 670.82 + }, + "m_EndPoint": { + "m_X": 570.634, + "m_Y": 1085.41 + }, + "tagData": 1, + "tagData2": 0, + "m_Length": 705.3424913160982 + }, + { + "m_StartPoint": { + "m_X": 570.634, + "m_Y": 1085.41 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 670.82 + }, + "tagData": 1, + "tagData2": 0, + "m_Length": 705.3424913160982 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 670.82 + }, + "m_EndPoint": { + "m_X": 217.96300000000008, + "m_Y": 0 + }, + "tagData": 1, + "tagData2": 0, + "m_Length": 705.3420034061492 + }, + { + "m_StartPoint": { + "m_X": 217.96300000000008, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 923.3050000000001, + "m_Y": 0 + }, + "tagData": 1, + "tagData2": 0, + "m_Length": 705.342 + } + ], + "borderOrg": [ + { + "m_StartPoint": { + "m_X": 1141.268, + "m_Y": 669.438 + }, + "m_EndPoint": { + "m_X": 571.8100000000001, + "m_Y": 1083.174 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.8891187253856 + }, + { + "m_StartPoint": { + "m_X": 571.8100000000001, + "m_Y": 1083.174 + }, + "m_EndPoint": { + "m_X": 2.3510000000001128, + "m_Y": 669.438 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.8899277422571 + }, + { + "m_StartPoint": { + "m_X": 2.3510000000001128, + "m_Y": 669.438 + }, + "m_EndPoint": { + "m_X": 219.865, + "m_Y": 0 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.8888946701744 + }, + { + "m_StartPoint": { + "m_X": 219.865, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 923.754, + "m_Y": 0 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.889 + } + ], + "border": [ + { + "m_StartPoint": { + "m_X": 1141.268, + "m_Y": 669.438 + }, + "m_EndPoint": { + "m_X": 571.8100000000001, + "m_Y": 1083.174 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.8891187253856 + }, + { + "m_StartPoint": { + "m_X": 571.8100000000001, + "m_Y": 1083.174 + }, + "m_EndPoint": { + "m_X": 2.3510000000001128, + "m_Y": 669.438 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.8899277422571 + }, + { + "m_StartPoint": { + "m_X": 2.3510000000001128, + "m_Y": 669.438 + }, + "m_EndPoint": { + "m_X": 219.865, + "m_Y": 0 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.8888946701744 + }, + { + "m_StartPoint": { + "m_X": 219.865, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 923.754, + "m_Y": 0 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.889 + } + ], + "placeContours": [] + } + ] + }, + "remarkParams": {} + }, + "orderId": "1907276351086264320", + "goodsId": "BD10010006", + "roomId": 0, + "bodyId": 0, + "blockId": "1907276518426411009", + "oldBlockId": "1907276518426411009", + "blockNo": "25044454403", + "customPlateNo": "F007-R001-C001-P004", + "labelNo": "", + "blockName": "背板", + "plateRemark": "2边排孔+2边侧槽+1边隐形件造型槽", + "remark1": "", + "remark2": "", + "remark3": "", + "remark4": "", + "remark5": "", + "extraRemark": {}, + "width": 1141.268, + "length": 1085.41, + "thickness": 18, + "area": 1.239, + "sealLeft": 0, + "sealRight": 0, + "sealTop": 0, + "sealBottom": 0, + "cutWidth": 1141.268, + "cutLength": 1085.41, + "cutArea": 1.23874369988, + "isAdditionalBlock": false, + "isRemainBlock": false, + "texture": 0, + "placeHole": 1, + "isUnRegular": true, + "isTurnFaceToPlace": true, + "isTwoFaceToPlace": false, + "isCurvedGroundLine": false, + "isPlaced": true, + "fullBoardId": 0, + "boardId": 2, + "placeId": 1, + "placeX": 3.005, + "placeY": 3.005, + "placeStyle": 4, + "cutRegion": 0, + "cutOrder": 0, + "cutPointId": 1, + "placeWidth": 1141.268, + "placeLength": 1085.41, + "placeSealLeft": 0, + "placeSealRight": 0, + "placeSealTop": 0, + "placeSealBottom": 0, + "orgSizeExpand": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "placeOffX": 3.005, + "placeOffY": 3.005, + "isAutoPlaced": true, + "isOutBoard": false, + "isOverlap": false, + "placeDirection": "→", + "placeDirection_Length": "↑", + "isDrilling": true, + "isModeling": true, + "overBlockFlag": 0, + "isCutOtherFace": false, + "isCutTurnOver": false, + "holeListFaceA": [], + "holeListFaceB": [], + "modelListFaceA": [], + "modelListFaceB": [ + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 10, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 381.1855575027534, + "y": 334.4101966249683, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 405.6878156830016, + "y": 258.99999999999994, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 733.2280038711823, + "y": 259, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 757.7302620514309, + "y": 334.4101966249683, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 733.2280038711823, + "y": 409.82039324993667, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 405.68781568300204, + "y": 409.8203932499368, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 381.1855575027534, + "y": 334.4101966249683, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 384.34, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 407.868, + "pointY": 406.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 731.049, + "pointY": 406.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 754.576, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 731.049, + "pointY": 262, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 407.868, + "pointY": 262, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 384.34, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 387.495, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 410.048, + "pointY": 265, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 728.869, + "pointY": 265, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 751.422, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 728.869, + "pointY": 403.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 410.048, + "pointY": 403.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 387.495, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 390.649, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.227, + "pointY": 268, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 726.69, + "pointY": 268, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 748.268, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 726.69, + "pointY": 400.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.227, + "pointY": 400.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 390.649, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 393.804, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 414.407, + "pointY": 271, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 724.51, + "pointY": 271, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 745.113, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 724.51, + "pointY": 397.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 414.407, + "pointY": 397.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 393.804, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 396.958, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 416.586, + "pointY": 274, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 722.33, + "pointY": 274, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 741.959, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 722.33, + "pointY": 394.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 416.586, + "pointY": 394.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 396.958, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 400.112, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 418.766, + "pointY": 277, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 720.151, + "pointY": 277, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 738.804, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 720.151, + "pointY": 391.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 418.766, + "pointY": 391.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 400.112, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 403.267, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 420.946, + "pointY": 280, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 717.971, + "pointY": 280, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 735.65, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 717.971, + "pointY": 388.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 420.946, + "pointY": 388.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 403.267, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 406.421, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 423.125, + "pointY": 283, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 715.791, + "pointY": 283, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 732.496, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 715.791, + "pointY": 385.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 423.125, + "pointY": 385.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 406.421, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 409.575, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.305, + "pointY": 286, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 713.612, + "pointY": 286, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 729.341, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 713.612, + "pointY": 382.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.305, + "pointY": 382.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 409.575, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.73, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 427.485, + "pointY": 289, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 711.432, + "pointY": 289, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 726.187, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 711.432, + "pointY": 379.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 427.485, + "pointY": 379.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.73, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 415.884, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 429.664, + "pointY": 292, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 709.253, + "pointY": 292, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 723.032, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 709.253, + "pointY": 376.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 429.664, + "pointY": 376.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 415.884, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 419.039, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.844, + "pointY": 295, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 707.073, + "pointY": 295, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 719.878, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 707.073, + "pointY": 373.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.844, + "pointY": 373.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 419.039, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 422.193, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.023, + "pointY": 298, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 704.893, + "pointY": 298, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 716.724, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 704.893, + "pointY": 370.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.023, + "pointY": 370.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 422.193, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.347, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 436.203, + "pointY": 301, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 702.714, + "pointY": 301, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 713.569, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 702.714, + "pointY": 367.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 436.203, + "pointY": 367.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.347, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 428.502, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 438.383, + "pointY": 304, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 700.534, + "pointY": 304, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 710.415, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 700.534, + "pointY": 364.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 438.383, + "pointY": 364.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 428.502, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.656, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 440.562, + "pointY": 307, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 698.354, + "pointY": 307, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 707.261, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 698.354, + "pointY": 361.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 440.562, + "pointY": 361.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.656, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.811, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 442.742, + "pointY": 310, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 696.175, + "pointY": 310, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 704.106, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 696.175, + "pointY": 358.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 442.742, + "pointY": 358.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.811, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 437.965, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.922, + "pointY": 313, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 693.995, + "pointY": 313, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 700.952, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 693.995, + "pointY": 355.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.922, + "pointY": 355.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 437.965, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 441.119, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.101, + "pointY": 316, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 691.816, + "pointY": 316, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 697.797, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 691.816, + "pointY": 352.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.101, + "pointY": 352.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 441.119, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.274, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 449.281, + "pointY": 319, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 689.636, + "pointY": 319, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 694.643, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 689.636, + "pointY": 349.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 449.281, + "pointY": 349.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.274, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.428, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 451.46, + "pointY": 322, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 687.456, + "pointY": 322, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 691.489, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 687.456, + "pointY": 346.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 451.46, + "pointY": 346.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.428, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 450.582, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.64, + "pointY": 325, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 685.277, + "pointY": 325, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 688.334, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 685.277, + "pointY": 343.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.64, + "pointY": 343.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 450.582, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.737, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 455.82, + "pointY": 328, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 683.097, + "pointY": 328, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 685.18, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 683.097, + "pointY": 340.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 455.82, + "pointY": 340.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.737, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 456.891, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 457.999, + "pointY": 331, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 680.917, + "pointY": 331, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 682.025, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 680.917, + "pointY": 337.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 457.999, + "pointY": 337.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 456.891, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.046, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.179, + "pointY": 334, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 678.738, + "pointY": 334, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 678.871, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 678.738, + "pointY": 334.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.179, + "pointY": 334.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.046, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 384.34, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 407.868, + "pointY": 406.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 731.049, + "pointY": 406.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 754.576, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 731.049, + "pointY": 262, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 407.868, + "pointY": 262, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 384.34, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 387.495, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 410.048, + "pointY": 265, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 728.869, + "pointY": 265, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 751.422, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 728.869, + "pointY": 403.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 410.048, + "pointY": 403.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 387.495, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 390.649, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.227, + "pointY": 268, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 726.69, + "pointY": 268, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 748.268, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 726.69, + "pointY": 400.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.227, + "pointY": 400.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 390.649, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 393.804, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 414.407, + "pointY": 271, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 724.51, + "pointY": 271, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 745.113, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 724.51, + "pointY": 397.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 414.407, + "pointY": 397.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 393.804, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 396.958, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 416.586, + "pointY": 274, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 722.33, + "pointY": 274, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 741.959, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 722.33, + "pointY": 394.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 416.586, + "pointY": 394.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 396.958, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 400.112, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 418.766, + "pointY": 277, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 720.151, + "pointY": 277, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 738.804, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 720.151, + "pointY": 391.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 418.766, + "pointY": 391.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 400.112, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 403.267, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 420.946, + "pointY": 280, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 717.971, + "pointY": 280, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 735.65, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 717.971, + "pointY": 388.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 420.946, + "pointY": 388.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 403.267, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 406.421, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 423.125, + "pointY": 283, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 715.791, + "pointY": 283, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 732.496, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 715.791, + "pointY": 385.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 423.125, + "pointY": 385.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 406.421, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 409.575, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.305, + "pointY": 286, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 713.612, + "pointY": 286, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 729.341, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 713.612, + "pointY": 382.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.305, + "pointY": 382.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 409.575, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.73, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 427.485, + "pointY": 289, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 711.432, + "pointY": 289, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 726.187, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 711.432, + "pointY": 379.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 427.485, + "pointY": 379.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 412.73, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 415.884, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 429.664, + "pointY": 292, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 709.253, + "pointY": 292, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 723.032, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 709.253, + "pointY": 376.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 429.664, + "pointY": 376.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 415.884, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 419.039, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.844, + "pointY": 295, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 707.073, + "pointY": 295, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 719.878, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 707.073, + "pointY": 373.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.844, + "pointY": 373.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 419.039, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 422.193, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.023, + "pointY": 298, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 704.893, + "pointY": 298, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 716.724, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 704.893, + "pointY": 370.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.023, + "pointY": 370.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 422.193, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.347, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 436.203, + "pointY": 301, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 702.714, + "pointY": 301, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 713.569, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 702.714, + "pointY": 367.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 436.203, + "pointY": 367.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 425.347, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 428.502, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 438.383, + "pointY": 304, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 700.534, + "pointY": 304, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 710.415, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 700.534, + "pointY": 364.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 438.383, + "pointY": 364.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 428.502, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.656, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 440.562, + "pointY": 307, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 698.354, + "pointY": 307, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 707.261, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 698.354, + "pointY": 361.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 440.562, + "pointY": 361.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 431.656, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.811, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 442.742, + "pointY": 310, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 696.175, + "pointY": 310, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 704.106, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 696.175, + "pointY": 358.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 442.742, + "pointY": 358.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 434.811, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 437.965, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.922, + "pointY": 313, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 693.995, + "pointY": 313, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 700.952, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 693.995, + "pointY": 355.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.922, + "pointY": 355.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 437.965, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 441.119, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.101, + "pointY": 316, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 691.816, + "pointY": 316, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 697.797, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 691.816, + "pointY": 352.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.101, + "pointY": 352.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 441.119, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.274, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 449.281, + "pointY": 319, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 689.636, + "pointY": 319, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 694.643, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 689.636, + "pointY": 349.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 449.281, + "pointY": 349.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 444.274, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.428, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 451.46, + "pointY": 322, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 687.456, + "pointY": 322, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 691.489, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 687.456, + "pointY": 346.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 451.46, + "pointY": 346.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 447.428, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 450.582, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.64, + "pointY": 325, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 685.277, + "pointY": 325, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 688.334, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 685.277, + "pointY": 343.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.64, + "pointY": 343.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 450.582, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.737, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 455.82, + "pointY": 328, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 683.097, + "pointY": 328, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 685.18, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 683.097, + "pointY": 340.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 455.82, + "pointY": 340.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 453.737, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 456.891, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 457.999, + "pointY": 331, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 680.917, + "pointY": 331, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 682.025, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 680.917, + "pointY": 337.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 457.999, + "pointY": 337.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 456.891, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.046, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.179, + "pointY": 334, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 678.738, + "pointY": 334, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 678.871, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 678.738, + "pointY": 334.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.179, + "pointY": 334.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 460.046, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 2, + "lineId": 2, + "face": 0, + "knifeName": "V90v-40", + "knifeRadius": 20, + "depth": 10, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": null, + "pointList": [ + { + "pointX": 776.821, + "pointY": 469.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 362.096, + "pointY": 469.82, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 318.098, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 362.096, + "pointY": 199, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 776.821, + "pointY": 199, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 820.818, + "pointY": 334.41, + "radius": 0, + "depth": 10, + "curve": 0 + }, + { + "pointX": 776.821, + "pointY": 469.82, + "radius": 0, + "depth": 10, + "curve": 0 + } + ], + "realKnifeRadius": 0, + "realPointList": [], + "realKnifeId": -1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [ + { + "name": "V90v-40", + "offset": 0, + "radius": 20, + "depth": 10, + "angle": 1.571 + }, + { + "name": "V90v-40", + "offset": -10, + "radius": 20, + "depth": 10, + "angle": 1.571 + }, + { + "name": "ZD5", + "offset": -2.5, + "radius": 2.5, + "depth": 10, + "angle": 0 + }, + { + "name": "ZD5", + "offset": -5, + "radius": 2.5, + "depth": 10, + "angle": 0 + }, + { + "name": "ZD5", + "offset": -7.5, + "radius": 2.5, + "depth": 10, + "angle": 0 + } + ], + "VLines": [ + { + "isFaceB": false, + "name": "V90v-40", + "value": 0, + "knifeId": -1, + "knifeRadius": 20, + "depth": 10, + "points": [ + { + "x": 784.0879243974632, + "y": 479.82203693949305, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 776.821, + "y": 469.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 362.096, + "y": 469.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 354.82912664182254, + "y": 479.82203693949305, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 362.096, + "y": 469.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 318.098, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 307.5812217510182, + "y": 334.40999999999997, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 318.098, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 362.096, + "y": 199, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 354.8291266418225, + "y": 188.99796306050692, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 362.096, + "y": 199, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 776.821, + "y": 199, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 784.0879243974632, + "y": 188.99796306050692, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 776.821, + "y": 199, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 820.818, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 831.3347554234352, + "y": 334.40999999999997, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 820.818, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 776.821, + "y": 469.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 784.0879243974632, + "y": 479.82203693949305, + "z": 10, + "bul": 0, + "r": 0 + } + ], + "offset": { + "name": "V90v-40", + "offset": 0, + "radius": 20, + "depth": 10, + "angle": 1.571 + } + }, + { + "isFaceB": false, + "name": "V90v-40", + "value": -10, + "knifeId": -1, + "knifeRadius": 20, + "depth": 10, + "points": [ + { + "x": 776.8224799270778, + "y": 469.82203693949305, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 769.5555555296146, + "y": 459.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 369.3613934414942, + "y": 459.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 362.0945200833167, + "y": 469.82203693949305, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 369.3613934414942, + "y": 459.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 328.6126364811515, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 318.0958582321697, + "y": 334.40999999999997, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 328.6126364811515, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 369.36139344149416, + "y": 209, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 362.0945200833167, + "y": 198.99796306050692, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 369.36139344149416, + "y": 209, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 769.5555555296145, + "y": 209, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 776.8224799270777, + "y": 198.99796306050695, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 769.5555555296145, + "y": 209, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 810.3033863397467, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 820.8201417631819, + "y": 334.41, + "z": 10, + "bul": 0, + "r": 0 + }, + { + "x": 810.3033863397467, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 769.5555555296146, + "y": 459.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 776.8224799270778, + "y": 469.82203693949305, + "z": 10, + "bul": 0, + "r": 0 + } + ], + "offset": { + "name": "V90v-40", + "offset": -10, + "radius": 20, + "depth": 10, + "angle": 1.571 + } + }, + { + "isFaceB": false, + "name": "ZD5", + "value": -2.5, + "knifeId": -1, + "knifeRadius": 2.5, + "depth": 10, + "points": [ + { + "x": 775.0046388824036, + "y": 467.32, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 363.9123483603736, + "y": 467.32, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 320.72665912028793, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 363.9123483603735, + "y": 201.5, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 775.0046388824036, + "y": 201.49999999999997, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 818.1893465849366, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 775.0046388824036, + "y": 467.32, + "z": 0, + "bul": 0, + "r": 0 + } + ], + "offset": { + "name": "ZD5", + "offset": -2.5, + "radius": 2.5, + "depth": 10, + "angle": 0 + } + }, + { + "isFaceB": false, + "name": "ZD5", + "value": -5, + "knifeId": -1, + "knifeRadius": 2.5, + "depth": 10, + "points": [ + { + "x": 773.1882777648073, + "y": 464.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 365.72869672074705, + "y": 464.82, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 323.35531824057574, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 365.72869672074705, + "y": 204, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 773.1882777648073, + "y": 204.00000000000003, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 815.5606931698733, + "y": 334.40999999999997, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 773.1882777648073, + "y": 464.82, + "z": 0, + "bul": 0, + "r": 0 + } + ], + "offset": { + "name": "ZD5", + "offset": -5, + "radius": 2.5, + "depth": 10, + "angle": 0 + } + }, + { + "isFaceB": false, + "name": "ZD5", + "value": -7.5, + "knifeId": -1, + "knifeRadius": 2.5, + "depth": 10, + "points": [ + { + "x": 771.3719166472108, + "y": 462.32, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 367.54504508112063, + "y": 462.32, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 325.9839773608636, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 367.54504508112063, + "y": 206.5, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 771.3719166472108, + "y": 206.5, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 812.9320397548099, + "y": 334.41, + "z": 0, + "bul": 0, + "r": 0 + }, + { + "x": 771.3719166472108, + "y": 462.32, + "z": 0, + "bul": 0, + "r": 0 + } + ], + "offset": { + "name": "ZD5", + "offset": -7.5, + "radius": 2.5, + "depth": 10, + "angle": 0 + } + } + ], + "offsetInfo": "4( )" + } + ], + "labelPosX": 1142.268, + "labelPosY": -1, + "isCncLabelA": false, + "isCncLabelB": false, + "isCncLabelTurnOver": false, + "type": 2, + "openDoorType": 0, + "_blockId": "1907276518426411009" + }, + { + "blockDetail": { + "organId": 0, + "blockId": "1907276518409633793", + "pointDetail": [], + "modelDetail": [], + "holeDetail": [], + "offsetX": 1.2, + "offsetY": -4.4, + "cutWidth": 164.2, + "cutLength": 1032.511, + "points": [], + "orgPoints": [], + "orgContourData": null, + "holes": [], + "holeListFaceA": [], + "holeListFaceB": [], + "holeListThrough": [], + "holeListSide": [], + "models": [], + "modelListFaceA": [], + "modelListFaceB": [], + "modelListThrough": [], + "modelListSide": [], + "thickness": 18, + "isUnRegular": false, + "bigHoleInFaceA": false, + "holeCountFront": 0, + "holeCountBack": 0, + "holeCountThrough": 0, + "holeCountSide": 0, + "holeCountLeft": 0, + "holeCountRight": 0, + "holeCountTop": 0, + "holeCountBottom": 0, + "holeCountBevelled": 0, + "modelCountFront": 0, + "modelCountBack": 0, + "modelCountThrough": 0, + "hasModelThrogh": false, + "isTwoFaceProcess": false, + "placeStyleFront": 0, + "placeStyleFrontReverse": 1, + "placeStyleBack": 4, + "placeStyleBackReverse": 7, + "labelPosX": -1, + "labelPosY": -1, + "isInited": false, + "isChecked": false, + "isOffsetRounding": false, + "offsetKnifeRadius": 3, + "preMillingSize": 0, + "isUseSameKnifeToHelpCut": false, + "useSameKnifeToHelpCutGap": 0, + "preMillingExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "modelExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "vKnifeModelExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "sameKnifeHelpExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "currentSizeExpand": { + "left": 3.005, + "right": 3.005, + "top": 3.005, + "bottom": 3.005, + "width": 6.01, + "length": 6.01 + }, + "borderContour": { + "placeStyle": 0, + "borderFinal": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 166, + "m_Y": 0 + }, + "tagData": 0, + "m_Length": 166 + }, + { + "m_StartPoint": { + "m_X": 166, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 166, + "m_Y": 1023.711 + }, + "tagData": 1, + "m_Length": 1023.711 + }, + { + "m_StartPoint": { + "m_X": 166, + "m_Y": 1023.711 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 1023.711 + }, + "tagData": 0, + "m_Length": 166 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 1023.711 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "tagData": 0, + "m_Length": 1023.711 + } + ], + "borderOrg": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 164.2, + "m_Y": 0 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 164.2, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 164.2, + "m_Y": 1032.511 + }, + "m_Length": 1032.511 + }, + { + "m_StartPoint": { + "m_X": 164.2, + "m_Y": 1032.511 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 1032.511 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 1032.511 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 1032.511 + } + ], + "borderPreMilling": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 164.2, + "m_Y": 0 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 164.2, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 164.2, + "m_Y": 1032.511 + }, + "m_Length": 1032.511 + }, + { + "m_StartPoint": { + "m_X": 164.2, + "m_Y": 1032.511 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 1032.511 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 1032.511 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 1032.511 + } + ], + "polylineOrg": { + "_isErase": false, + "IsEmbedEntity": false, + "OnlyRenderType": true, + "HasEdgeRenderType": false, + "HasPlaceFaceRenderType": false, + "HasBigHoleFaceRenderType": false, + "_CacheDrawObject": {}, + "_Color": 7, + "_Matrix": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_SpaceOCS": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_Visible": true, + "_VisibleInRender": true, + "_Freeze": false, + "_LockMaterial": false, + "__ProcessingGroupList": [], + "NeedUpdateFlag": 0, + "AutoUpdate": true, + "__UpdateVersion__": 1, + "_RoomName": "", + "_CabinetName": "", + "_LineData": [ + { + "pt": { + "x": 0, + "y": 0 + }, + "bul": 0 + }, + { + "pt": { + "x": 164.2, + "y": 0 + }, + "bul": 0 + }, + { + "pt": { + "x": 164.2, + "y": 1032.511 + }, + "bul": 0 + }, + { + "pt": { + "x": 0, + "y": 1032.511 + }, + "bul": 0 + } + ], + "_DisplayAccuracy": 0, + "_ClosedMark": true + }, + "border": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 164.2, + "m_Y": 0 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 164.2, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 164.2, + "m_Y": 1032.511 + }, + "m_Length": 1032.511 + }, + { + "m_StartPoint": { + "m_X": 164.2, + "m_Y": 1032.511 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 1032.511 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 1032.511 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 1032.511 + } + ], + "borderModelThrough": [], + "borderModelThroughR": [], + "cutLinesModelThrough": [], + "borderInnerPlace": [], + "blockInnerSpace": [], + "polylines2vModel": [], + "polylinesOutModel": [], + "placeContours": [ + { + "placeStyle": 4, + "borderFinal": [ + { + "m_StartPoint": { + "m_X": 166, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 166, + "m_Y": 1023.711 + }, + "tagData": 0, + "m_Length": 1023.711 + }, + { + "m_StartPoint": { + "m_X": 166, + "m_Y": 1023.711 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 1023.711 + }, + "tagData": 0, + "m_Length": 166 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 1023.711 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "tagData": 1, + "m_Length": 1023.711 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 166, + "m_Y": 0 + }, + "tagData": 0, + "m_Length": 166 + } + ], + "borderOrg": [ + { + "m_StartPoint": { + "m_X": 165, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 165, + "m_Y": 1032.511 + }, + "m_Length": 1032.511 + }, + { + "m_StartPoint": { + "m_X": 165, + "m_Y": 1032.511 + }, + "m_EndPoint": { + "m_X": 0.8000000000000114, + "m_Y": 1032.511 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 0.8000000000000114, + "m_Y": 1032.511 + }, + "m_EndPoint": { + "m_X": 0.8000000000000114, + "m_Y": 0 + }, + "m_Length": 1032.511 + }, + { + "m_StartPoint": { + "m_X": 0.8000000000000114, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 165, + "m_Y": 0 + }, + "m_Length": 164.2 + } + ], + "border": [ + { + "m_StartPoint": { + "m_X": 165, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 165, + "m_Y": 1032.511 + }, + "m_Length": 1032.511 + }, + { + "m_StartPoint": { + "m_X": 165, + "m_Y": 1032.511 + }, + "m_EndPoint": { + "m_X": 0.8000000000000114, + "m_Y": 1032.511 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 0.8000000000000114, + "m_Y": 1032.511 + }, + "m_EndPoint": { + "m_X": 0.8000000000000114, + "m_Y": 0 + }, + "m_Length": 1032.511 + }, + { + "m_StartPoint": { + "m_X": 0.8000000000000114, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 165, + "m_Y": 0 + }, + "m_Length": 164.2 + } + ], + "placeContours": [] + } + ] + }, + "remarkParams": {} + }, + "orderId": "1907276351086264320", + "goodsId": "BD10010006", + "roomId": 0, + "bodyId": 0, + "blockId": "1907276518409633793", + "oldBlockId": "1907276518409633793", + "blockNo": "25044454402", + "customPlateNo": "F007-R001-C001-P003", + "labelNo": "", + "blockName": "层板", + "plateRemark": "上下侧面正面斜切63度,斜边隐形连接件", + "remark1": "", + "remark2": "", + "remark3": "", + "remark4": "", + "remark5": "", + "extraRemark": {}, + "width": 166, + "length": 1023.711, + "thickness": 6, + "area": 0.17, + "sealLeft": 0, + "sealRight": 1, + "sealTop": 0, + "sealBottom": 0, + "cutWidth": 165, + "cutLength": 1023.711, + "cutArea": 0.168912315, + "isAdditionalBlock": false, + "isRemainBlock": false, + "texture": 0, + "placeHole": 1, + "isUnRegular": false, + "isTurnFaceToPlace": true, + "isTwoFaceToPlace": false, + "isCurvedGroundLine": false, + "isPlaced": true, + "fullBoardId": 0, + "boardId": 2, + "placeId": 2, + "placeX": 3.005, + "placeY": 1094.4250000000002, + "placeStyle": 4, + "cutRegion": 0, + "cutOrder": 0, + "cutPointId": 3, + "placeWidth": 165, + "placeLength": 1023.711, + "placeSealLeft": 1, + "placeSealRight": 0, + "placeSealTop": 0, + "placeSealBottom": 0, + "orgSizeExpand": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "placeOffX": 3.005, + "placeOffY": 3.005, + "isAutoPlaced": true, + "isOutBoard": false, + "isOverlap": false, + "placeDirection": "→", + "placeDirection_Length": "→", + "isDrilling": true, + "isModeling": true, + "overBlockFlag": 0, + "isCutOtherFace": false, + "isCutTurnOver": false, + "holeListFaceA": [], + "holeListFaceB": [], + "modelListFaceA": [], + "modelListFaceB": [], + "labelPosX": 166, + "labelPosY": -1, + "isCncLabelA": false, + "isCncLabelB": false, + "isCncLabelTurnOver": false, + "type": 2, + "openDoorType": 0, + "_blockId": "1907276518409633793" + }, + { + "blockDetail": { + "organId": 0, + "blockId": "1907276518397050890", + "pointDetail": [], + "modelDetail": [], + "holeDetail": [], + "offsetX": 1.2, + "offsetY": 0.6, + "cutWidth": 498.2, + "cutLength": 798.2, + "points": [], + "orgPoints": [], + "orgContourData": null, + "holes": [], + "holeListFaceA": [], + "holeListFaceB": [], + "holeListThrough": [], + "holeListSide": [], + "models": [ + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 1, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.7999999999998, + "y": 99.4, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336662, + "y": 129.15333561439692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915563, + "y": 177.29524391717393, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.49030100844396, + "y": 177.29524391717422, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 136.375, + "pointY": 130.299, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 150.67, + "pointY": 174.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.93, + "pointY": 174.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 211.225, + "pointY": 130.299, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 103.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.375, + "pointY": 130.299, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 136.375, + "pointY": 130.299, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 150.67, + "pointY": 174.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.93, + "pointY": 174.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 211.225, + "pointY": 130.299, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 103.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.375, + "pointY": 130.299, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 2, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.7999999999998, + "y": 99.4, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336662, + "y": 129.15333561439692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915563, + "y": 177.29524391717393, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.49030100844396, + "y": 177.29524391717422, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 142.081, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.947, + "pointY": 108.181, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053626 + }, + { + "pointX": 176.653, + "pointY": 108.181, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 205.519, + "pointY": 129.153, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053591 + }, + { + "pointX": 207.282, + "pointY": 134.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.257, + "pointY": 168.514, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053571 + }, + { + "pointX": 191.64, + "pointY": 171.868, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 158.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 155.96, + "pointY": 171.868, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053641 + }, + { + "pointX": 151.343, + "pointY": 168.514, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 134.58, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053626 + }, + { + "pointX": 142.081, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.646, + "pointY": 109.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 142.081, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.947, + "pointY": 108.181, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053626 + }, + { + "pointX": 176.653, + "pointY": 108.181, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 205.519, + "pointY": 129.153, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053591 + }, + { + "pointX": 207.282, + "pointY": 134.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.257, + "pointY": 168.514, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053571 + }, + { + "pointX": 191.64, + "pointY": 171.868, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 158.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 155.96, + "pointY": 171.868, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053641 + }, + { + "pointX": 151.343, + "pointY": 168.514, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 134.58, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053626 + }, + { + "pointX": 142.081, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.646, + "pointY": 109.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 3, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.7999999999998, + "y": 99.4, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336662, + "y": 129.15333561439692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915563, + "y": 177.29524391717393, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.49030100844396, + "y": 177.29524391717422, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 141.106, + "pointY": 135.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 167.587, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 141.106, + "pointY": 135.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 143.007, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 148.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 157.879, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 143.007, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 141.106, + "pointY": 135.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 167.587, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 141.106, + "pointY": 135.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 143.007, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 148.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 157.879, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 143.007, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 4, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.7999999999998, + "y": 99.4, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336662, + "y": 129.15333561439692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915563, + "y": 177.29524391717393, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.49030100844396, + "y": 177.29524391717422, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 152.289, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.939, + "pointY": 116.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 152.289, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 152.289, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.939, + "pointY": 116.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 152.289, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 5, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.7999999999998, + "y": 99.4, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336662, + "y": 129.15333561439692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915563, + "y": 177.29524391717393, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.49030100844396, + "y": 177.29524391717422, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 176.954, + "pointY": 109.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 204.544, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.954, + "pointY": 109.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 116.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.311, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 116.962, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 176.954, + "pointY": 109.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 204.544, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.954, + "pointY": 109.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 116.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.311, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 116.962, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 6, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.7999999999998, + "y": 99.4, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336662, + "y": 129.15333561439692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915563, + "y": 177.29524391717393, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.49030100844396, + "y": 177.29524391717422, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 189.442, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 206.494, + "pointY": 135.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 167.587, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 148.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 200.787, + "pointY": 143.007, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 157.879, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 148.688, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 189.442, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 206.494, + "pointY": 135.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 167.587, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 148.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 200.787, + "pointY": 143.007, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 157.879, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 148.688, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 7, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.7999999999998, + "y": 99.4, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336662, + "y": 129.15333561439692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915563, + "y": 177.29524391717393, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.49030100844396, + "y": 177.29524391717422, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 165.982, + "pointY": 168.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 162.615, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 181.618, + "pointY": 168.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 165.982, + "pointY": 168.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 171.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 158.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 190.851, + "pointY": 171.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 171.295, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 165.982, + "pointY": 168.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 162.615, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 181.618, + "pointY": 168.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 165.982, + "pointY": 168.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 171.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 158.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 190.851, + "pointY": 171.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 171.295, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 2, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.15, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 148.79999999999987, + "y": 504.7423027509691, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 198.80000000000007, + "y": 504.7423027509692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 198.80000000000047, + "y": 604.7423027509692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.80000000000024, + "y": 604.7423027509692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.79999999999987, + "y": 504.7423027509691, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 6, + "addWidth": 0.1, + "addDepth": 0.15 + }, + "pointList": [ + { + "pointX": 151.75, + "pointY": 504.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 604.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 604.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 504.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 504.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 510.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 510.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 598.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 598.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 510.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 516.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 516.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 592.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 592.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 516.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 522.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 522.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 586.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 586.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 522.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 526.792, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 582.692, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 151.75, + "pointY": 504.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 604.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 604.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 504.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 504.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 510.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 510.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 598.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 598.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 510.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 516.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 516.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 592.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 592.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 516.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 522.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 522.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 586.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 586.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 522.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 526.792, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 582.692, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 3, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.15, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 198.80000000000013, + "y": 454.74230275096886, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 148.80000000000013, + "y": 454.74230275096886, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 198.80000000000013, + "y": 454.74230275096886, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 6, + "addWidth": 0.1, + "addDepth": 0.15 + }, + "pointList": [ + { + "pointX": 151.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 195.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 151.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 154.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 192.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 154.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 189.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 157.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 160.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 186.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 160.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 183.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 163.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 166.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 180.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 166.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 177.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 169.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 172.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 174.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 172.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 151.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 195.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 151.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 154.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 192.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 154.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 189.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 157.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 160.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 186.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 160.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 183.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 163.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 166.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 180.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 166.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 177.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 169.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 172.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 174.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 172.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737137, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 133.741, + "pointY": 242.459, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 213.859, + "pointY": 242.459, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 133.741, + "pointY": 242.459, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.741, + "pointY": 242.459, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 210.859, + "pointY": 242.459, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 136.741, + "pointY": 242.459, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.829, + "pointY": 240.113, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 248.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 150.123, + "pointY": 262.562, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611474 + }, + { + "pointX": 142.829, + "pointY": 240.113, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.614, + "pointY": 234.796, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.457, + "pointY": 268.166, + "radius": 34.059, + "depth": 2, + "curve": 0.27735861872683165 + }, + { + "pointX": 140.614, + "pointY": 234.796, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 234.58, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053575 + }, + { + "pointX": 142.081, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.947, + "pointY": 208.181, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053642 + }, + { + "pointX": 176.653, + "pointY": 208.181, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 205.519, + "pointY": 229.153, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053541 + }, + { + "pointX": 207.282, + "pointY": 234.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.257, + "pointY": 268.514, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053606 + }, + { + "pointX": 191.64, + "pointY": 271.868, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 258.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 155.96, + "pointY": 271.868, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053635 + }, + { + "pointX": 151.343, + "pointY": 268.514, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 234.58, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 133.741, + "pointY": 242.459, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 213.859, + "pointY": 242.459, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 133.741, + "pointY": 242.459, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.741, + "pointY": 242.459, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 210.859, + "pointY": 242.459, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 136.741, + "pointY": 242.459, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.829, + "pointY": 240.113, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 248.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 150.123, + "pointY": 262.562, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611474 + }, + { + "pointX": 142.829, + "pointY": 240.113, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.614, + "pointY": 234.796, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.457, + "pointY": 268.166, + "radius": 34.059, + "depth": 2, + "curve": 0.27735861872683165 + }, + { + "pointX": 140.614, + "pointY": 234.796, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 234.58, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053575 + }, + { + "pointX": 142.081, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.947, + "pointY": 208.181, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053642 + }, + { + "pointX": 176.653, + "pointY": 208.181, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 205.519, + "pointY": 229.153, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053541 + }, + { + "pointX": 207.282, + "pointY": 234.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.257, + "pointY": 268.514, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053606 + }, + { + "pointX": 191.64, + "pointY": 271.868, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 258.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 155.96, + "pointY": 271.868, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053635 + }, + { + "pointX": 151.343, + "pointY": 268.514, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 234.58, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 2, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737137, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 142.447, + "pointY": 229.153, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268403 + }, + { + "pointX": 170.834, + "pointY": 208.529, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.447, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 147.365, + "pointY": 226.153, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611564 + }, + { + "pointX": 166.461, + "pointY": 212.28, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 147.365, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 153.438, + "pointY": 223.153, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030141409 + }, + { + "pointX": 161.731, + "pointY": 217.128, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 159.773, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 153.438, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 142.447, + "pointY": 229.153, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268403 + }, + { + "pointX": 170.834, + "pointY": 208.529, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.447, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 147.365, + "pointY": 226.153, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611564 + }, + { + "pointX": 166.461, + "pointY": 212.28, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 147.365, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 153.438, + "pointY": 223.153, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030141409 + }, + { + "pointX": 161.731, + "pointY": 217.128, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 159.773, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 153.438, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 3, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737137, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 145.979, + "pointY": 246.11, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.104, + "pointY": 249.834, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 149.147, + "pointY": 255.859, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140445 + }, + { + "pointX": 145.979, + "pointY": 246.11, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 145.979, + "pointY": 246.11, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.104, + "pointY": 249.834, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 149.147, + "pointY": 255.859, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140445 + }, + { + "pointX": 145.979, + "pointY": 246.11, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 4, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737137, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 156.256, + "pointY": 271.653, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 258.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 191.344, + "pointY": 271.653, + "radius": 34.059, + "depth": 2, + "curve": 0.27735861872682543 + }, + { + "pointX": 156.256, + "pointY": 271.653, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.998, + "pointY": 271.189, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 262.615, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.602, + "pointY": 271.189, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611406 + }, + { + "pointX": 161.998, + "pointY": 271.189, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 168.675, + "pointY": 270.047, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 266.323, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 178.925, + "pointY": 270.047, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030139656 + }, + { + "pointX": 168.675, + "pointY": 270.047, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 156.256, + "pointY": 271.653, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 258.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 191.344, + "pointY": 271.653, + "radius": 34.059, + "depth": 2, + "curve": 0.27735861872682543 + }, + { + "pointX": 156.256, + "pointY": 271.653, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.998, + "pointY": 271.189, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 262.615, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.602, + "pointY": 271.189, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611406 + }, + { + "pointX": 161.998, + "pointY": 271.189, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 168.675, + "pointY": 270.047, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 266.323, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 178.925, + "pointY": 270.047, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030139656 + }, + { + "pointX": 168.675, + "pointY": 270.047, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 5, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737137, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 189.442, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 206.986, + "pointY": 234.796, + "radius": 34.059, + "depth": 2, + "curve": 0.27735861872683215 + }, + { + "pointX": 196.143, + "pointY": 268.166, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 248.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 204.771, + "pointY": 240.113, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114788 + }, + { + "pointX": 197.477, + "pointY": 262.562, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 248.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 249.834, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 201.621, + "pointY": 246.11, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140512 + }, + { + "pointX": 198.453, + "pointY": 255.859, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 249.834, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 189.442, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 206.986, + "pointY": 234.796, + "radius": 34.059, + "depth": 2, + "curve": 0.27735861872683215 + }, + { + "pointX": 196.143, + "pointY": 268.166, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 248.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 204.771, + "pointY": 240.113, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114788 + }, + { + "pointX": 197.477, + "pointY": 262.562, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 248.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 249.834, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 201.621, + "pointY": 246.11, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140512 + }, + { + "pointX": 198.453, + "pointY": 255.859, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 249.834, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 6, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737137, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 183.467, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.766, + "pointY": 208.529, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268398 + }, + { + "pointX": 205.153, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 181.139, + "pointY": 212.28, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486115573 + }, + { + "pointX": 200.235, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.869, + "pointY": 217.128, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030141397 + }, + { + "pointX": 194.162, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 183.467, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.766, + "pointY": 208.529, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268398 + }, + { + "pointX": 205.153, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 181.139, + "pointY": 212.28, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486115573 + }, + { + "pointX": 200.235, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.869, + "pointY": 217.128, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030141397 + }, + { + "pointX": 194.162, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 5, + "lineId": 1, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.3, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 228.80000000000015, + "y": 504.74230275096863, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 278.8000000000002, + "y": 504.74230275096863, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 278.80000000000047, + "y": 604.7423027509686, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 228.80000000000047, + "y": 604.7423027509687, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 228.80000000000015, + "y": 504.74230275096863, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 7, + "addWidth": 0.2, + "addDepth": 0.3 + }, + "pointList": [ + { + "pointX": 231.7, + "pointY": 504.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 605.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 605.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 504.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 504.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 510.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 510.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 599.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 599.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 510.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 516.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 516.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 593.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 593.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 516.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 522.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 522.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 587.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 587.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 522.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 526.342, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 583.142, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 231.7, + "pointY": 504.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 605.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 605.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 504.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 504.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 510.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 510.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 599.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 599.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 510.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 516.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 516.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 593.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 593.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 516.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 522.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 522.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 587.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 587.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 522.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 526.342, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 583.142, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 6, + "lineId": 1, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.3, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 278.8000000000001, + "y": 454.74230275096863, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 228.80000000000013, + "y": 454.74230275096863, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 278.8000000000001, + "y": 454.74230275096863, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 7, + "addWidth": 0.2, + "addDepth": 0.3 + }, + "pointList": [ + { + "pointX": 231.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 275.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 231.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 234.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 272.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 234.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 269.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 237.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 240.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 266.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 240.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 263.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 243.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 246.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 260.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 246.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 257.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 249.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 252.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 254.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 252.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 231.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 275.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 231.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 234.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 272.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 234.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 269.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 237.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 240.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 266.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 240.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 263.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 243.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 246.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 260.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 246.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 257.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 249.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 252.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 254.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 252.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + } + ], + "modelListFaceA": [ + { + "orderId": "", + "blockId": 0, + "modelId": 2, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.15, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 148.79999999999987, + "y": 504.7423027509691, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 198.80000000000007, + "y": 504.7423027509692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 198.80000000000047, + "y": 604.7423027509692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.80000000000024, + "y": 604.7423027509692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.79999999999987, + "y": 504.7423027509691, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 6, + "addWidth": 0.1, + "addDepth": 0.15 + }, + "pointList": [ + { + "pointX": 151.75, + "pointY": 504.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 604.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 604.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 504.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 504.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 510.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 510.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 598.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 598.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 510.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 516.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 516.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 592.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 592.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 516.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 522.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 522.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 586.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 586.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 522.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 526.792, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 582.692, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 151.75, + "pointY": 504.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 604.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 604.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 504.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 504.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 510.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 510.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 598.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 598.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 510.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 516.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 516.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 592.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 592.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 516.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 522.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 522.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 586.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 586.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 522.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 526.792, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 582.692, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 3, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.15, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 198.80000000000013, + "y": 454.74230275096886, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 148.80000000000013, + "y": 454.74230275096886, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 198.80000000000013, + "y": 454.74230275096886, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 6, + "addWidth": 0.1, + "addDepth": 0.15 + }, + "pointList": [ + { + "pointX": 151.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 195.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 151.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 154.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 192.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 154.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 189.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 157.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 160.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 186.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 160.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 183.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 163.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 166.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 180.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 166.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 177.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 169.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 172.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 174.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 172.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 151.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 195.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 151.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 154.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 192.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 154.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 189.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 157.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 160.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 186.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 160.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 183.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 163.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 166.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 180.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 166.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 177.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 169.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 172.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 174.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 172.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737137, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 133.741, + "pointY": 242.459, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 213.859, + "pointY": 242.459, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 133.741, + "pointY": 242.459, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.741, + "pointY": 242.459, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 210.859, + "pointY": 242.459, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 136.741, + "pointY": 242.459, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.829, + "pointY": 240.113, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 248.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 150.123, + "pointY": 262.562, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611474 + }, + { + "pointX": 142.829, + "pointY": 240.113, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.614, + "pointY": 234.796, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.457, + "pointY": 268.166, + "radius": 34.059, + "depth": 2, + "curve": 0.27735861872683165 + }, + { + "pointX": 140.614, + "pointY": 234.796, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 234.58, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053575 + }, + { + "pointX": 142.081, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.947, + "pointY": 208.181, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053642 + }, + { + "pointX": 176.653, + "pointY": 208.181, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 205.519, + "pointY": 229.153, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053541 + }, + { + "pointX": 207.282, + "pointY": 234.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.257, + "pointY": 268.514, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053606 + }, + { + "pointX": 191.64, + "pointY": 271.868, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 258.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 155.96, + "pointY": 271.868, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053635 + }, + { + "pointX": 151.343, + "pointY": 268.514, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 234.58, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 133.741, + "pointY": 242.459, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 213.859, + "pointY": 242.459, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 133.741, + "pointY": 242.459, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.741, + "pointY": 242.459, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 210.859, + "pointY": 242.459, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 136.741, + "pointY": 242.459, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.829, + "pointY": 240.113, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 248.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 150.123, + "pointY": 262.562, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611474 + }, + { + "pointX": 142.829, + "pointY": 240.113, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.614, + "pointY": 234.796, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.457, + "pointY": 268.166, + "radius": 34.059, + "depth": 2, + "curve": 0.27735861872683165 + }, + { + "pointX": 140.614, + "pointY": 234.796, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 234.58, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053575 + }, + { + "pointX": 142.081, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.947, + "pointY": 208.181, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053642 + }, + { + "pointX": 176.653, + "pointY": 208.181, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 205.519, + "pointY": 229.153, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053541 + }, + { + "pointX": 207.282, + "pointY": 234.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.257, + "pointY": 268.514, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053606 + }, + { + "pointX": 191.64, + "pointY": 271.868, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 258.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 155.96, + "pointY": 271.868, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053635 + }, + { + "pointX": 151.343, + "pointY": 268.514, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 234.58, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 2, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737137, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 142.447, + "pointY": 229.153, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268403 + }, + { + "pointX": 170.834, + "pointY": 208.529, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.447, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 147.365, + "pointY": 226.153, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611564 + }, + { + "pointX": 166.461, + "pointY": 212.28, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 147.365, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 153.438, + "pointY": 223.153, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030141409 + }, + { + "pointX": 161.731, + "pointY": 217.128, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 159.773, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 153.438, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 142.447, + "pointY": 229.153, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268403 + }, + { + "pointX": 170.834, + "pointY": 208.529, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.447, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 147.365, + "pointY": 226.153, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611564 + }, + { + "pointX": 166.461, + "pointY": 212.28, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 147.365, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 153.438, + "pointY": 223.153, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030141409 + }, + { + "pointX": 161.731, + "pointY": 217.128, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 159.773, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 153.438, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 3, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737137, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 145.979, + "pointY": 246.11, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.104, + "pointY": 249.834, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 149.147, + "pointY": 255.859, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140445 + }, + { + "pointX": 145.979, + "pointY": 246.11, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 145.979, + "pointY": 246.11, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.104, + "pointY": 249.834, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 149.147, + "pointY": 255.859, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140445 + }, + { + "pointX": 145.979, + "pointY": 246.11, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 4, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737137, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 156.256, + "pointY": 271.653, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 258.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 191.344, + "pointY": 271.653, + "radius": 34.059, + "depth": 2, + "curve": 0.27735861872682543 + }, + { + "pointX": 156.256, + "pointY": 271.653, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.998, + "pointY": 271.189, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 262.615, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.602, + "pointY": 271.189, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611406 + }, + { + "pointX": 161.998, + "pointY": 271.189, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 168.675, + "pointY": 270.047, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 266.323, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 178.925, + "pointY": 270.047, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030139656 + }, + { + "pointX": 168.675, + "pointY": 270.047, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 156.256, + "pointY": 271.653, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 258.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 191.344, + "pointY": 271.653, + "radius": 34.059, + "depth": 2, + "curve": 0.27735861872682543 + }, + { + "pointX": 156.256, + "pointY": 271.653, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.998, + "pointY": 271.189, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 262.615, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.602, + "pointY": 271.189, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611406 + }, + { + "pointX": 161.998, + "pointY": 271.189, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 168.675, + "pointY": 270.047, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 266.323, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 178.925, + "pointY": 270.047, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030139656 + }, + { + "pointX": 168.675, + "pointY": 270.047, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 5, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737137, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 189.442, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 206.986, + "pointY": 234.796, + "radius": 34.059, + "depth": 2, + "curve": 0.27735861872683215 + }, + { + "pointX": 196.143, + "pointY": 268.166, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 248.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 204.771, + "pointY": 240.113, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114788 + }, + { + "pointX": 197.477, + "pointY": 262.562, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 248.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 249.834, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 201.621, + "pointY": 246.11, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140512 + }, + { + "pointX": 198.453, + "pointY": 255.859, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 249.834, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 189.442, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 206.986, + "pointY": 234.796, + "radius": 34.059, + "depth": 2, + "curve": 0.27735861872683215 + }, + { + "pointX": 196.143, + "pointY": 268.166, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 248.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 204.771, + "pointY": 240.113, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114788 + }, + { + "pointX": 197.477, + "pointY": 262.562, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 248.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 249.834, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 201.621, + "pointY": 246.11, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140512 + }, + { + "pointX": 198.453, + "pointY": 255.859, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 249.834, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 6, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737137, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 183.467, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.766, + "pointY": 208.529, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268398 + }, + { + "pointX": 205.153, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 181.139, + "pointY": 212.28, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486115573 + }, + { + "pointX": 200.235, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.869, + "pointY": 217.128, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030141397 + }, + { + "pointX": 194.162, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 183.467, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.766, + "pointY": 208.529, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268398 + }, + { + "pointX": 205.153, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 181.139, + "pointY": 212.28, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486115573 + }, + { + "pointX": 200.235, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.869, + "pointY": 217.128, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030141397 + }, + { + "pointX": 194.162, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + } + ], + "modelListFaceB": [ + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 1, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.7999999999998, + "y": 99.4, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336662, + "y": 129.15333561439692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915563, + "y": 177.29524391717393, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.49030100844396, + "y": 177.29524391717422, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 136.375, + "pointY": 130.299, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 150.67, + "pointY": 174.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.93, + "pointY": 174.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 211.225, + "pointY": 130.299, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 103.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.375, + "pointY": 130.299, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 136.375, + "pointY": 130.299, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 150.67, + "pointY": 174.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.93, + "pointY": 174.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 211.225, + "pointY": 130.299, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 103.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.375, + "pointY": 130.299, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 2, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.7999999999998, + "y": 99.4, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336662, + "y": 129.15333561439692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915563, + "y": 177.29524391717393, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.49030100844396, + "y": 177.29524391717422, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 142.081, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.947, + "pointY": 108.181, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053626 + }, + { + "pointX": 176.653, + "pointY": 108.181, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 205.519, + "pointY": 129.153, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053591 + }, + { + "pointX": 207.282, + "pointY": 134.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.257, + "pointY": 168.514, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053571 + }, + { + "pointX": 191.64, + "pointY": 171.868, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 158.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 155.96, + "pointY": 171.868, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053641 + }, + { + "pointX": 151.343, + "pointY": 168.514, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 134.58, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053626 + }, + { + "pointX": 142.081, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.646, + "pointY": 109.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 142.081, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.947, + "pointY": 108.181, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053626 + }, + { + "pointX": 176.653, + "pointY": 108.181, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 205.519, + "pointY": 129.153, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053591 + }, + { + "pointX": 207.282, + "pointY": 134.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.257, + "pointY": 168.514, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053571 + }, + { + "pointX": 191.64, + "pointY": 171.868, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 158.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 155.96, + "pointY": 171.868, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053641 + }, + { + "pointX": 151.343, + "pointY": 168.514, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 134.58, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053626 + }, + { + "pointX": 142.081, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.646, + "pointY": 109.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 3, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.7999999999998, + "y": 99.4, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336662, + "y": 129.15333561439692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915563, + "y": 177.29524391717393, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.49030100844396, + "y": 177.29524391717422, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 141.106, + "pointY": 135.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 167.587, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 141.106, + "pointY": 135.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 143.007, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 148.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 157.879, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 143.007, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 141.106, + "pointY": 135.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 167.587, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 141.106, + "pointY": 135.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 143.007, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 148.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 157.879, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 143.007, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 4, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.7999999999998, + "y": 99.4, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336662, + "y": 129.15333561439692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915563, + "y": 177.29524391717393, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.49030100844396, + "y": 177.29524391717422, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 152.289, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.939, + "pointY": 116.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 152.289, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 152.289, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.939, + "pointY": 116.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 152.289, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 5, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.7999999999998, + "y": 99.4, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336662, + "y": 129.15333561439692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915563, + "y": 177.29524391717393, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.49030100844396, + "y": 177.29524391717422, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 176.954, + "pointY": 109.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 204.544, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.954, + "pointY": 109.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 116.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.311, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 116.962, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 176.954, + "pointY": 109.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 204.544, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.954, + "pointY": 109.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 116.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.311, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 116.962, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 6, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.7999999999998, + "y": 99.4, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336662, + "y": 129.15333561439692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915563, + "y": 177.29524391717393, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.49030100844396, + "y": 177.29524391717422, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 189.442, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 206.494, + "pointY": 135.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 167.587, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 148.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 200.787, + "pointY": 143.007, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 157.879, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 148.688, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 189.442, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 206.494, + "pointY": 135.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 167.587, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 148.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 200.787, + "pointY": 143.007, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 157.879, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 148.688, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 7, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.7999999999998, + "y": 99.4, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336662, + "y": 129.15333561439692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915563, + "y": 177.29524391717393, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.49030100844396, + "y": 177.29524391717422, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 165.982, + "pointY": 168.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 162.615, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 181.618, + "pointY": 168.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 165.982, + "pointY": 168.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 171.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 158.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 190.851, + "pointY": 171.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 171.295, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 165.982, + "pointY": 168.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 162.615, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 181.618, + "pointY": 168.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 165.982, + "pointY": 168.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 171.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 158.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 190.851, + "pointY": 171.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 171.295, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 5, + "lineId": 1, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.3, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 228.80000000000015, + "y": 504.74230275096863, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 278.8000000000002, + "y": 504.74230275096863, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 278.80000000000047, + "y": 604.7423027509686, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 228.80000000000047, + "y": 604.7423027509687, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 228.80000000000015, + "y": 504.74230275096863, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 7, + "addWidth": 0.2, + "addDepth": 0.3 + }, + "pointList": [ + { + "pointX": 231.7, + "pointY": 504.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 605.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 605.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 504.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 504.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 510.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 510.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 599.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 599.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 510.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 516.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 516.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 593.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 593.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 516.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 522.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 522.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 587.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 587.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 522.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 526.342, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 583.142, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 231.7, + "pointY": 504.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 605.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 605.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 504.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 504.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 510.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 510.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 599.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 599.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 510.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 516.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 516.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 593.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 593.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 516.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 522.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 522.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 587.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 587.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 522.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 526.342, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 583.142, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 6, + "lineId": 1, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.3, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 278.8000000000001, + "y": 454.74230275096863, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 228.80000000000013, + "y": 454.74230275096863, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 278.8000000000001, + "y": 454.74230275096863, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 7, + "addWidth": 0.2, + "addDepth": 0.3 + }, + "pointList": [ + { + "pointX": 231.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 275.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 231.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 234.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 272.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 234.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 269.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 237.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 240.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 266.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 240.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 263.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 243.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 246.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 260.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 246.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 257.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 249.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 252.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 254.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 252.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 231.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 275.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 231.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 234.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 272.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 234.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 269.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 237.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 240.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 266.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 240.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 263.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 243.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 246.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 260.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 246.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 257.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 249.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 252.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 254.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 252.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + } + ], + "modelListThrough": [], + "modelListSide": [], + "thickness": 18, + "isUnRegular": false, + "bigHoleInFaceA": false, + "holeCountFront": 0, + "holeCountBack": 0, + "holeCountThrough": 0, + "holeCountSide": 0, + "holeCountLeft": 0, + "holeCountRight": 0, + "holeCountTop": 0, + "holeCountBottom": 0, + "holeCountBevelled": 0, + "modelCountFront": 8, + "modelCountBack": 9, + "modelCountThrough": 0, + "hasModelThrogh": false, + "isTwoFaceProcess": false, + "placeStyleFront": 0, + "placeStyleFrontReverse": 1, + "placeStyleBack": 4, + "placeStyleBackReverse": 7, + "labelPosX": -1, + "labelPosY": -1, + "isInited": false, + "isChecked": false, + "isOffsetRounding": false, + "offsetKnifeRadius": 3, + "preMillingSize": 0, + "isUseSameKnifeToHelpCut": false, + "useSameKnifeToHelpCutGap": 0, + "preMillingExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "modelExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "vKnifeModelExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "sameKnifeHelpExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "currentSizeExpand": { + "left": 3.005, + "right": 3.005, + "top": 3.005, + "bottom": 3.005, + "width": 6.01, + "length": 6.01 + }, + "borderContour": { + "placeStyle": 0, + "borderFinal": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 500, + "m_Y": 0 + }, + "tagData": 0, + "m_Length": 500 + }, + { + "m_StartPoint": { + "m_X": 500, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 500, + "m_Y": 800 + }, + "tagData": 1, + "m_Length": 800 + }, + { + "m_StartPoint": { + "m_X": 500, + "m_Y": 800 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 800 + }, + "tagData": 1, + "m_Length": 500 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 800 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "tagData": 0, + "m_Length": 800 + } + ], + "borderOrg": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 498.2, + "m_Y": 0 + }, + "m_Length": 498.2 + }, + { + "m_StartPoint": { + "m_X": 498.2, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 498.2, + "m_Y": 798.2 + }, + "m_Length": 798.2 + }, + { + "m_StartPoint": { + "m_X": 498.2, + "m_Y": 798.2 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 798.2 + }, + "m_Length": 498.2 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 798.2 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 798.2 + } + ], + "borderPreMilling": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 498.2, + "m_Y": 0 + }, + "m_Length": 498.2 + }, + { + "m_StartPoint": { + "m_X": 498.2, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 498.2, + "m_Y": 798.2 + }, + "m_Length": 798.2 + }, + { + "m_StartPoint": { + "m_X": 498.2, + "m_Y": 798.2 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 798.2 + }, + "m_Length": 498.2 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 798.2 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 798.2 + } + ], + "polylineOrg": { + "_isErase": false, + "IsEmbedEntity": false, + "OnlyRenderType": true, + "HasEdgeRenderType": false, + "HasPlaceFaceRenderType": false, + "HasBigHoleFaceRenderType": false, + "_CacheDrawObject": {}, + "_Color": 7, + "_Matrix": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_SpaceOCS": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_Visible": true, + "_VisibleInRender": true, + "_Freeze": false, + "_LockMaterial": false, + "__ProcessingGroupList": [], + "NeedUpdateFlag": 0, + "AutoUpdate": true, + "__UpdateVersion__": 1, + "_RoomName": "", + "_CabinetName": "", + "_LineData": [ + { + "pt": { + "x": 0, + "y": 0 + }, + "bul": 0 + }, + { + "pt": { + "x": 498.2, + "y": 0 + }, + "bul": 0 + }, + { + "pt": { + "x": 498.2, + "y": 798.2 + }, + "bul": 0 + }, + { + "pt": { + "x": 0, + "y": 798.2 + }, + "bul": 0 + } + ], + "_DisplayAccuracy": 0, + "_ClosedMark": true + }, + "border": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 498.2, + "m_Y": 0 + }, + "m_Length": 498.2 + }, + { + "m_StartPoint": { + "m_X": 498.2, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 498.2, + "m_Y": 798.2 + }, + "m_Length": 798.2 + }, + { + "m_StartPoint": { + "m_X": 498.2, + "m_Y": 798.2 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 798.2 + }, + "m_Length": 498.2 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 798.2 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 798.2 + } + ], + "borderModelThrough": [], + "borderModelThroughR": [], + "cutLinesModelThrough": [], + "borderInnerPlace": [], + "blockInnerSpace": [], + "polylines2vModel": [], + "polylinesOutModel": [], + "placeContours": [ + { + "placeStyle": 4, + "borderFinal": [ + { + "m_StartPoint": { + "m_X": 500, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 500, + "m_Y": 800 + }, + "tagData": 0, + "m_Length": 800 + }, + { + "m_StartPoint": { + "m_X": 500, + "m_Y": 800 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 800 + }, + "tagData": 1, + "m_Length": 500 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 800 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "tagData": 1, + "m_Length": 800 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 500, + "m_Y": 0 + }, + "tagData": 0, + "m_Length": 500 + } + ], + "borderOrg": [ + { + "m_StartPoint": { + "m_X": 499, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 499, + "m_Y": 798.2 + }, + "m_Length": 798.2 + }, + { + "m_StartPoint": { + "m_X": 499, + "m_Y": 798.2 + }, + "m_EndPoint": { + "m_X": 0.8000000000000114, + "m_Y": 798.2 + }, + "m_Length": 498.2 + }, + { + "m_StartPoint": { + "m_X": 0.8000000000000114, + "m_Y": 798.2 + }, + "m_EndPoint": { + "m_X": 0.8000000000000114, + "m_Y": 0 + }, + "m_Length": 798.2 + }, + { + "m_StartPoint": { + "m_X": 0.8000000000000114, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 499, + "m_Y": 0 + }, + "m_Length": 498.2 + } + ], + "border": [ + { + "m_StartPoint": { + "m_X": 499, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 499, + "m_Y": 798.2 + }, + "m_Length": 798.2 + }, + { + "m_StartPoint": { + "m_X": 499, + "m_Y": 798.2 + }, + "m_EndPoint": { + "m_X": 0.8000000000000114, + "m_Y": 798.2 + }, + "m_Length": 498.2 + }, + { + "m_StartPoint": { + "m_X": 0.8000000000000114, + "m_Y": 798.2 + }, + "m_EndPoint": { + "m_X": 0.8000000000000114, + "m_Y": 0 + }, + "m_Length": 798.2 + }, + { + "m_StartPoint": { + "m_X": 0.8000000000000114, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 499, + "m_Y": 0 + }, + "m_Length": 498.2 + } + ], + "placeContours": [] + } + ] + }, + "remarkParams": {} + }, + "orderId": "1907276351086264320", + "goodsId": "BD10010006", + "roomId": 0, + "bodyId": 0, + "blockId": "1907276518397050890", + "oldBlockId": "1907276518397050890", + "blockNo": "25044454401", + "customPlateNo": "F007-R001-C001-P002", + "labelNo": "", + "blockName": "顶板1", + "plateRemark": "前边封厚边", + "remark1": "", + "remark2": "", + "remark3": "", + "remark4": "", + "remark5": "", + "extraRemark": {}, + "width": 500, + "length": 800, + "thickness": 20, + "area": 0.4, + "sealLeft": 0, + "sealRight": 1, + "sealTop": 1, + "sealBottom": 0, + "cutWidth": 499, + "cutLength": 799, + "cutArea": 0.39870099999999997, + "isAdditionalBlock": false, + "isRemainBlock": false, + "texture": 0, + "placeHole": 1, + "isUnRegular": false, + "isTurnFaceToPlace": true, + "isTwoFaceToPlace": false, + "isCurvedGroundLine": false, + "isPlaced": true, + "fullBoardId": 0, + "boardId": 2, + "placeId": 3, + "placeX": 174.015, + "placeY": 1094.4250000000002, + "placeStyle": 4, + "cutRegion": 0, + "cutOrder": 0, + "cutPointId": 0, + "placeWidth": 499, + "placeLength": 799, + "placeSealLeft": 1, + "placeSealRight": 0, + "placeSealTop": 1, + "placeSealBottom": 0, + "orgSizeExpand": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "placeOffX": 3.005, + "placeOffY": 3.005, + "isAutoPlaced": true, + "isOutBoard": false, + "isOverlap": false, + "placeDirection": "→", + "placeDirection_Length": "→", + "isDrilling": true, + "isModeling": true, + "overBlockFlag": 0, + "isCutOtherFace": false, + "isCutTurnOver": false, + "holeListFaceA": [], + "holeListFaceB": [], + "modelListFaceA": [ + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 1, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.7999999999998, + "y": 99.4, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336662, + "y": 129.15333561439692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915563, + "y": 177.29524391717393, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.49030100844396, + "y": 177.29524391717422, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 136.375, + "pointY": 130.299, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 150.67, + "pointY": 174.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.93, + "pointY": 174.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 211.225, + "pointY": 130.299, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 103.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.375, + "pointY": 130.299, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 136.375, + "pointY": 130.299, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 150.67, + "pointY": 174.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.93, + "pointY": 174.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 211.225, + "pointY": 130.299, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 103.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.375, + "pointY": 130.299, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 2, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.7999999999998, + "y": 99.4, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336662, + "y": 129.15333561439692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915563, + "y": 177.29524391717393, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.49030100844396, + "y": 177.29524391717422, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 142.081, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.947, + "pointY": 108.181, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053626 + }, + { + "pointX": 176.653, + "pointY": 108.181, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 205.519, + "pointY": 129.153, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053591 + }, + { + "pointX": 207.282, + "pointY": 134.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.257, + "pointY": 168.514, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053571 + }, + { + "pointX": 191.64, + "pointY": 171.868, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 158.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 155.96, + "pointY": 171.868, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053641 + }, + { + "pointX": 151.343, + "pointY": 168.514, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 134.58, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053626 + }, + { + "pointX": 142.081, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.646, + "pointY": 109.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 142.081, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.947, + "pointY": 108.181, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053626 + }, + { + "pointX": 176.653, + "pointY": 108.181, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 205.519, + "pointY": 129.153, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053591 + }, + { + "pointX": 207.282, + "pointY": 134.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.257, + "pointY": 168.514, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053571 + }, + { + "pointX": 191.64, + "pointY": 171.868, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 158.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 155.96, + "pointY": 171.868, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053641 + }, + { + "pointX": 151.343, + "pointY": 168.514, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 134.58, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053626 + }, + { + "pointX": 142.081, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.646, + "pointY": 109.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 3, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.7999999999998, + "y": 99.4, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336662, + "y": 129.15333561439692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915563, + "y": 177.29524391717393, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.49030100844396, + "y": 177.29524391717422, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 141.106, + "pointY": 135.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 167.587, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 141.106, + "pointY": 135.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 143.007, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 148.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 157.879, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 143.007, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 141.106, + "pointY": 135.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 167.587, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 141.106, + "pointY": 135.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 143.007, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 148.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 157.879, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 143.007, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 4, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.7999999999998, + "y": 99.4, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336662, + "y": 129.15333561439692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915563, + "y": 177.29524391717393, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.49030100844396, + "y": 177.29524391717422, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 152.289, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.939, + "pointY": 116.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 152.289, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 152.289, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.939, + "pointY": 116.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 152.289, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 5, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.7999999999998, + "y": 99.4, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336662, + "y": 129.15333561439692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915563, + "y": 177.29524391717393, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.49030100844396, + "y": 177.29524391717422, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 176.954, + "pointY": 109.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 204.544, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.954, + "pointY": 109.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 116.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.311, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 116.962, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 176.954, + "pointY": 109.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 204.544, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 129.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.954, + "pointY": 109.108, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 116.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.311, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 126.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 116.962, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 6, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.7999999999998, + "y": 99.4, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336662, + "y": 129.15333561439692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915563, + "y": 177.29524391717393, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.49030100844396, + "y": 177.29524391717422, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 189.442, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 206.494, + "pointY": 135.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 167.587, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 148.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 200.787, + "pointY": 143.007, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 157.879, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 148.688, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 189.442, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 206.494, + "pointY": 135.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 167.587, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 147.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 148.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 200.787, + "pointY": 143.007, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 157.879, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 148.688, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 7, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.7999999999998, + "y": 99.4, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336662, + "y": 129.15333561439692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915563, + "y": 177.29524391717393, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.49030100844396, + "y": 177.29524391717422, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663306, + "y": 129.15333561439746, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 165.982, + "pointY": 168.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 162.615, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 181.618, + "pointY": 168.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 165.982, + "pointY": 168.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 171.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 158.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 190.851, + "pointY": 171.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 171.295, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 165.982, + "pointY": 168.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 162.615, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 181.618, + "pointY": 168.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 165.982, + "pointY": 168.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 171.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 158.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 190.851, + "pointY": 171.295, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 171.295, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 5, + "lineId": 1, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.3, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 228.80000000000015, + "y": 504.74230275096863, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 278.8000000000002, + "y": 504.74230275096863, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 278.80000000000047, + "y": 604.7423027509686, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 228.80000000000047, + "y": 604.7423027509687, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 228.80000000000015, + "y": 504.74230275096863, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 7, + "addWidth": 0.2, + "addDepth": 0.3 + }, + "pointList": [ + { + "pointX": 231.7, + "pointY": 504.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 605.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 605.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 504.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 504.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 510.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 510.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 599.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 599.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 510.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 516.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 516.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 593.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 593.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 516.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 522.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 522.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 587.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 587.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 522.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 526.342, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 583.142, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 231.7, + "pointY": 504.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 605.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 605.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 504.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 504.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 510.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 510.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 599.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 599.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 510.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 516.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 516.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 593.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 593.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 516.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 522.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 522.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 587.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 587.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 522.242, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 526.342, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 583.142, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 6, + "lineId": 1, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.3, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 278.8000000000001, + "y": 454.74230275096863, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 228.80000000000013, + "y": 454.74230275096863, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 278.8000000000001, + "y": 454.74230275096863, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 7, + "addWidth": 0.2, + "addDepth": 0.3 + }, + "pointList": [ + { + "pointX": 231.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 275.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 231.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 234.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 272.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 234.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 269.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 237.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 240.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 266.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 240.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 263.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 243.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 246.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 260.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 246.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 257.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 249.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 252.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 254.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 252.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 231.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 275.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 231.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 234.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 272.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 234.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 269.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 237.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 240.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 266.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 240.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 263.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 243.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 246.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 260.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 246.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 257.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 249.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 252.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 254.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 252.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + } + ], + "modelListFaceB": [ + { + "orderId": "", + "blockId": 0, + "modelId": 2, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.15, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 148.79999999999987, + "y": 504.7423027509691, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 198.80000000000007, + "y": 504.7423027509692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 198.80000000000047, + "y": 604.7423027509692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.80000000000024, + "y": 604.7423027509692, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.79999999999987, + "y": 504.7423027509691, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 6, + "addWidth": 0.1, + "addDepth": 0.15 + }, + "pointList": [ + { + "pointX": 151.75, + "pointY": 504.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 604.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 604.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 504.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 504.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 510.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 510.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 598.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 598.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 510.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 516.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 516.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 592.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 592.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 516.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 522.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 522.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 586.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 586.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 522.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 526.792, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 582.692, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 151.75, + "pointY": 504.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 604.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 604.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 504.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 504.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 510.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 510.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 598.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 598.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 510.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 516.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 516.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 592.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 592.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 516.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 522.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 522.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 586.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 586.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 522.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 526.792, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 582.692, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 3, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.15, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 198.80000000000013, + "y": 454.74230275096886, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 148.80000000000013, + "y": 454.74230275096886, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 198.80000000000013, + "y": 454.74230275096886, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 6, + "addWidth": 0.1, + "addDepth": 0.15 + }, + "pointList": [ + { + "pointX": 151.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 195.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 151.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 154.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 192.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 154.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 189.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 157.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 160.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 186.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 160.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 183.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 163.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 166.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 180.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 166.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 177.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 169.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 172.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 174.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 172.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 151.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 195.8, + "pointY": 454.742, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 151.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 154.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 192.8, + "pointY": 454.742, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 154.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 189.8, + "pointY": 454.742, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 157.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 160.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 186.8, + "pointY": 454.742, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 160.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 183.8, + "pointY": 454.742, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 163.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 166.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 180.8, + "pointY": 454.742, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 166.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 177.8, + "pointY": 454.742, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 169.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 172.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 174.8, + "pointY": 454.742, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 172.8, + "pointY": 454.742, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737137, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 133.741, + "pointY": 242.459, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 213.859, + "pointY": 242.459, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 133.741, + "pointY": 242.459, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.741, + "pointY": 242.459, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 210.859, + "pointY": 242.459, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 136.741, + "pointY": 242.459, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.829, + "pointY": 240.113, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 248.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 150.123, + "pointY": 262.562, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611474 + }, + { + "pointX": 142.829, + "pointY": 240.113, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.614, + "pointY": 234.796, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.457, + "pointY": 268.166, + "radius": 34.059, + "depth": 2, + "curve": 0.27735861872683165 + }, + { + "pointX": 140.614, + "pointY": 234.796, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 234.58, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053575 + }, + { + "pointX": 142.081, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.947, + "pointY": 208.181, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053642 + }, + { + "pointX": 176.653, + "pointY": 208.181, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 205.519, + "pointY": 229.153, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053541 + }, + { + "pointX": 207.282, + "pointY": 234.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.257, + "pointY": 268.514, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053606 + }, + { + "pointX": 191.64, + "pointY": 271.868, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 258.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 155.96, + "pointY": 271.868, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053635 + }, + { + "pointX": 151.343, + "pointY": 268.514, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 234.58, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 133.741, + "pointY": 242.459, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 213.859, + "pointY": 242.459, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 133.741, + "pointY": 242.459, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.741, + "pointY": 242.459, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 210.859, + "pointY": 242.459, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 136.741, + "pointY": 242.459, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.829, + "pointY": 240.113, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 248.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 150.123, + "pointY": 262.562, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611474 + }, + { + "pointX": 142.829, + "pointY": 240.113, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.614, + "pointY": 234.796, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.457, + "pointY": 268.166, + "radius": 34.059, + "depth": 2, + "curve": 0.27735861872683165 + }, + { + "pointX": 140.614, + "pointY": 234.796, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 234.58, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053575 + }, + { + "pointX": 142.081, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.947, + "pointY": 208.181, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053642 + }, + { + "pointX": 176.653, + "pointY": 208.181, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 205.519, + "pointY": 229.153, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053541 + }, + { + "pointX": 207.282, + "pointY": 234.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.257, + "pointY": 268.514, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053606 + }, + { + "pointX": 191.64, + "pointY": 271.868, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 258.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 155.96, + "pointY": 271.868, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053635 + }, + { + "pointX": 151.343, + "pointY": 268.514, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 234.58, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 2, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737137, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 142.447, + "pointY": 229.153, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268403 + }, + { + "pointX": 170.834, + "pointY": 208.529, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.447, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 147.365, + "pointY": 226.153, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611564 + }, + { + "pointX": 166.461, + "pointY": 212.28, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 147.365, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 153.438, + "pointY": 223.153, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030141409 + }, + { + "pointX": 161.731, + "pointY": 217.128, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 159.773, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 153.438, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 142.447, + "pointY": 229.153, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268403 + }, + { + "pointX": 170.834, + "pointY": 208.529, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.447, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 147.365, + "pointY": 226.153, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611564 + }, + { + "pointX": 166.461, + "pointY": 212.28, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 147.365, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 153.438, + "pointY": 223.153, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030141409 + }, + { + "pointX": 161.731, + "pointY": 217.128, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 159.773, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 153.438, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 3, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737137, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 145.979, + "pointY": 246.11, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.104, + "pointY": 249.834, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 149.147, + "pointY": 255.859, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140445 + }, + { + "pointX": 145.979, + "pointY": 246.11, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 145.979, + "pointY": 246.11, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.104, + "pointY": 249.834, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 149.147, + "pointY": 255.859, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140445 + }, + { + "pointX": 145.979, + "pointY": 246.11, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 4, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737137, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 156.256, + "pointY": 271.653, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 258.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 191.344, + "pointY": 271.653, + "radius": 34.059, + "depth": 2, + "curve": 0.27735861872682543 + }, + { + "pointX": 156.256, + "pointY": 271.653, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.998, + "pointY": 271.189, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 262.615, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.602, + "pointY": 271.189, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611406 + }, + { + "pointX": 161.998, + "pointY": 271.189, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 168.675, + "pointY": 270.047, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 266.323, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 178.925, + "pointY": 270.047, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030139656 + }, + { + "pointX": 168.675, + "pointY": 270.047, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 156.256, + "pointY": 271.653, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 258.907, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 191.344, + "pointY": 271.653, + "radius": 34.059, + "depth": 2, + "curve": 0.27735861872682543 + }, + { + "pointX": 156.256, + "pointY": 271.653, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.998, + "pointY": 271.189, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 262.615, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.602, + "pointY": 271.189, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611406 + }, + { + "pointX": 161.998, + "pointY": 271.189, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 168.675, + "pointY": 270.047, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 266.323, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 178.925, + "pointY": 270.047, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030139656 + }, + { + "pointX": 168.675, + "pointY": 270.047, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 5, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737137, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 189.442, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 206.986, + "pointY": 234.796, + "radius": 34.059, + "depth": 2, + "curve": 0.27735861872683215 + }, + { + "pointX": 196.143, + "pointY": 268.166, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 248.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 204.771, + "pointY": 240.113, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114788 + }, + { + "pointX": 197.477, + "pointY": 262.562, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 248.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 249.834, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 201.621, + "pointY": 246.11, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140512 + }, + { + "pointX": 198.453, + "pointY": 255.859, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 249.834, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 189.442, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 206.986, + "pointY": 234.796, + "radius": 34.059, + "depth": 2, + "curve": 0.27735861872683215 + }, + { + "pointX": 196.143, + "pointY": 268.166, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 247.542, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 248.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 204.771, + "pointY": 240.113, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114788 + }, + { + "pointX": 197.477, + "pointY": 262.562, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 248.688, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 249.834, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 201.621, + "pointY": 246.11, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140512 + }, + { + "pointX": 198.453, + "pointY": 255.859, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 249.834, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 6, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737137, + "y": 242.45943181262854, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262797, + "y": 242.45943181262854, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 183.467, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.766, + "pointY": 208.529, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268398 + }, + { + "pointX": 205.153, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 181.139, + "pointY": 212.28, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486115573 + }, + { + "pointX": 200.235, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.869, + "pointY": 217.128, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030141397 + }, + { + "pointX": 194.162, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 183.467, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.766, + "pointY": 208.529, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268398 + }, + { + "pointX": 205.153, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 229.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 181.139, + "pointY": 212.28, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486115573 + }, + { + "pointX": 200.235, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 226.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.869, + "pointY": 217.128, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030141397 + }, + { + "pointX": 194.162, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 223.153, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + } + ], + "labelPosX": 500, + "labelPosY": -1, + "isCncLabelA": false, + "isCncLabelB": false, + "isCncLabelTurnOver": false, + "type": 2, + "openDoorType": 0, + "_blockId": "1907276518397050890" + }, + { + "blockDetail": { + "organId": 0, + "blockId": "1907276518380273665", + "pointDetail": [], + "modelDetail": [], + "holeDetail": [], + "offsetX": 1.2, + "offsetY": 1.2, + "cutWidth": 348.2, + "cutLength": 703.542, + "points": [ + { + "pointX": 0, + "pointY": 703.542, + "curve": 0, + "radius": 0, + "sealSize": 0, + "isPreCutRequired": false + }, + { + "pointX": 0, + "pointY": 48.8, + "curve": 0.41421356237309476, + "radius": 48.80000000000001, + "sealSize": 0, + "isPreCutRequired": false + }, + { + "pointX": 48.8, + "pointY": 0, + "curve": 0, + "radius": 0, + "sealSize": 0, + "isPreCutRequired": false + }, + { + "pointX": 348.2, + "pointY": 0, + "curve": 0, + "radius": 0, + "sealSize": 0, + "isPreCutRequired": false + }, + { + "pointX": 348.2, + "pointY": 703.542, + "curve": 0, + "radius": 0, + "sealSize": 0, + "isPreCutRequired": false + } + ], + "orgPoints": [ + { + "pointX": 0, + "pointY": 705.342, + "curve": 0, + "radius": 0, + "sealSize": 1, + "isPreCutRequired": false + }, + { + "pointX": 0, + "pointY": 50, + "curve": 0.41421356237309476, + "radius": 50.00000000000002, + "sealSize": 1, + "isPreCutRequired": false + }, + { + "pointX": 50, + "pointY": 0, + "curve": 0, + "radius": 0, + "sealSize": 1, + "isPreCutRequired": false + }, + { + "pointX": 350, + "pointY": 0, + "curve": 0, + "radius": 0, + "sealSize": 0, + "isPreCutRequired": false + }, + { + "pointX": 350, + "pointY": 705.342, + "curve": 0, + "radius": 0, + "sealSize": 0, + "isPreCutRequired": false + } + ], + "orgContourData": null, + "holes": [], + "holeListFaceA": [], + "holeListFaceB": [], + "holeListThrough": [], + "holeListSide": [], + "models": [ + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 1, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.4903010084442, + "y": 526.2470588337941, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915565, + "y": 526.2470588337942, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336713, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.80000000000035, + "y": 604.1423027509678, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 136.375, + "pointY": 573.243, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 600.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 211.225, + "pointY": 573.243, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.93, + "pointY": 529.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 150.67, + "pointY": 529.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.375, + "pointY": 573.243, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 136.375, + "pointY": 573.243, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 600.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 211.225, + "pointY": 573.243, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.93, + "pointY": 529.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 150.67, + "pointY": 529.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.375, + "pointY": 573.243, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 2, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.4903010084442, + "y": 526.2470588337941, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915565, + "y": 526.2470588337942, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336713, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.80000000000035, + "y": 604.1423027509678, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 142.081, + "pointY": 574.389, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053597 + }, + { + "pointX": 140.318, + "pointY": 568.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.343, + "pointY": 535.028, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053655 + }, + { + "pointX": 155.96, + "pointY": 531.674, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 544.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 191.64, + "pointY": 531.674, + "radius": 3, + "depth": 2, + "curve": 0.726542528005359 + }, + { + "pointX": 196.257, + "pointY": 535.028, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 207.282, + "pointY": 568.962, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053639 + }, + { + "pointX": 205.519, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.653, + "pointY": 595.361, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053636 + }, + { + "pointX": 170.947, + "pointY": 595.361, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.081, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.646, + "pointY": 594.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 142.081, + "pointY": 574.389, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053597 + }, + { + "pointX": 140.318, + "pointY": 568.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.343, + "pointY": 535.028, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053655 + }, + { + "pointX": 155.96, + "pointY": 531.674, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 544.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 191.64, + "pointY": 531.674, + "radius": 3, + "depth": 2, + "curve": 0.726542528005359 + }, + { + "pointX": 196.257, + "pointY": 535.028, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 207.282, + "pointY": 568.962, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053639 + }, + { + "pointX": 205.519, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.653, + "pointY": 595.361, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053636 + }, + { + "pointX": 170.947, + "pointY": 595.361, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.081, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.646, + "pointY": 594.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 3, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.4903010084442, + "y": 526.2470588337941, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915565, + "y": 526.2470588337942, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336713, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.80000000000035, + "y": 604.1423027509678, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 141.106, + "pointY": 568.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 535.955, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 141.106, + "pointY": 568.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 560.535, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 545.663, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 554.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 560.535, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 141.106, + "pointY": 568.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 535.955, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 141.106, + "pointY": 568.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 560.535, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 545.663, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 554.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 560.535, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 4, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.4903010084442, + "y": 526.2470588337941, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915565, + "y": 526.2470588337942, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336713, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.80000000000035, + "y": 604.1423027509678, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 152.289, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.939, + "pointY": 586.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 152.289, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 152.289, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.939, + "pointY": 586.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 152.289, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 5, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.4903010084442, + "y": 526.2470588337941, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915565, + "y": 526.2470588337942, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336713, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.80000000000035, + "y": 604.1423027509678, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 176.954, + "pointY": 594.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 204.544, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.954, + "pointY": 594.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 586.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.311, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 586.58, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 176.954, + "pointY": 594.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 204.544, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.954, + "pointY": 594.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 586.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.311, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 586.58, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 6, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.4903010084442, + "y": 526.2470588337941, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915565, + "y": 526.2470588337942, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336713, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.80000000000035, + "y": 604.1423027509678, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 189.442, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 535.955, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 206.494, + "pointY": 568.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 554.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 545.663, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 200.787, + "pointY": 560.535, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 554.854, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 189.442, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 535.955, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 206.494, + "pointY": 568.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 554.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 545.663, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 200.787, + "pointY": 560.535, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 554.854, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 7, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.4903010084442, + "y": 526.2470588337941, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915565, + "y": 526.2470588337942, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336713, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.80000000000035, + "y": 604.1423027509678, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 165.982, + "pointY": 535.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 181.618, + "pointY": 535.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 540.927, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 165.982, + "pointY": 535.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 532.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 190.851, + "pointY": 532.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 544.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 532.247, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 165.982, + "pointY": 535.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 181.618, + "pointY": 535.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 540.927, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 165.982, + "pointY": 535.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 532.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 190.851, + "pointY": 532.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 544.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 532.247, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 2, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.15, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 148.80000000000024, + "y": 198.7999999999999, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.80000000000024, + "y": 98.8, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 198.80000000000035, + "y": 98.8, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 198.80000000000035, + "y": 198.7999999999999, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.80000000000024, + "y": 198.7999999999999, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 6, + "addWidth": 0.1, + "addDepth": 0.15 + }, + "pointList": [ + { + "pointX": 151.75, + "pointY": 98.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 198.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 198.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 98.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 98.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 104.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 104.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 192.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 192.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 104.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 110.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 110.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 186.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 186.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 110.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 116.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 116.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 180.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 180.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 116.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 120.85, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 176.75, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 151.75, + "pointY": 98.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 198.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 198.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 98.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 98.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 104.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 104.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 192.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 192.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 104.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 110.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 110.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 186.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 186.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 110.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 116.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 116.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 180.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 180.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 116.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 120.85, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 176.75, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 3, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.15, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 198.80000000000035, + "y": 248.79999999999978, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 148.80000000000035, + "y": 248.79999999999978, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 198.80000000000035, + "y": 248.79999999999978, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 6, + "addWidth": 0.1, + "addDepth": 0.15 + }, + "pointList": [ + { + "pointX": 151.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 195.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 151.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 154.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 192.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 154.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 189.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 157.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 160.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 186.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 160.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 183.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 163.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 166.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 180.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 166.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 177.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 169.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 172.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 174.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 172.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 151.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 195.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 151.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 154.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 192.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 154.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 189.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 157.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 160.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 186.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 160.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 183.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 163.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 166.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 180.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 166.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 177.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 169.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 172.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 174.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 172.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737182, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 133.741, + "pointY": 461.083, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 213.859, + "pointY": 461.083, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 133.741, + "pointY": 461.083, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.741, + "pointY": 461.083, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 210.859, + "pointY": 461.083, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 136.741, + "pointY": 461.083, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.829, + "pointY": 463.429, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486115215 + }, + { + "pointX": 150.123, + "pointY": 440.981, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 454.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.829, + "pointY": 463.429, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.614, + "pointY": 468.747, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268363 + }, + { + "pointX": 151.457, + "pointY": 435.376, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.614, + "pointY": 468.747, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 468.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.343, + "pointY": 435.028, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053616 + }, + { + "pointX": 155.96, + "pointY": 431.674, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 444.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 191.64, + "pointY": 431.674, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053599 + }, + { + "pointX": 196.257, + "pointY": 435.028, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 207.282, + "pointY": 468.962, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053603 + }, + { + "pointX": 205.519, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.653, + "pointY": 495.361, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053646 + }, + { + "pointX": 170.947, + "pointY": 495.361, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.081, + "pointY": 474.389, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053591 + }, + { + "pointX": 140.318, + "pointY": 468.962, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 133.741, + "pointY": 461.083, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 213.859, + "pointY": 461.083, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 133.741, + "pointY": 461.083, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.741, + "pointY": 461.083, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 210.859, + "pointY": 461.083, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 136.741, + "pointY": 461.083, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.829, + "pointY": 463.429, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486115215 + }, + { + "pointX": 150.123, + "pointY": 440.981, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 454.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.829, + "pointY": 463.429, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.614, + "pointY": 468.747, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268363 + }, + { + "pointX": 151.457, + "pointY": 435.376, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.614, + "pointY": 468.747, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 468.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.343, + "pointY": 435.028, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053616 + }, + { + "pointX": 155.96, + "pointY": 431.674, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 444.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 191.64, + "pointY": 431.674, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053599 + }, + { + "pointX": 196.257, + "pointY": 435.028, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 207.282, + "pointY": 468.962, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053603 + }, + { + "pointX": 205.519, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.653, + "pointY": 495.361, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053646 + }, + { + "pointX": 170.947, + "pointY": 495.361, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.081, + "pointY": 474.389, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053591 + }, + { + "pointX": 140.318, + "pointY": 468.962, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 2, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737182, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 142.447, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.834, + "pointY": 495.013, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268357 + }, + { + "pointX": 142.447, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 147.365, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 166.461, + "pointY": 491.263, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611515 + }, + { + "pointX": 147.365, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 153.438, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 159.773, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.731, + "pointY": 486.414, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140894 + }, + { + "pointX": 153.438, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 142.447, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.834, + "pointY": 495.013, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268357 + }, + { + "pointX": 142.447, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 147.365, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 166.461, + "pointY": 491.263, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611515 + }, + { + "pointX": 147.365, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 153.438, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 159.773, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.731, + "pointY": 486.414, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140894 + }, + { + "pointX": 153.438, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 3, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737182, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 145.979, + "pointY": 457.432, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140949 + }, + { + "pointX": 149.147, + "pointY": 447.683, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.104, + "pointY": 453.709, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 145.979, + "pointY": 457.432, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 145.979, + "pointY": 457.432, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140949 + }, + { + "pointX": 149.147, + "pointY": 447.683, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.104, + "pointY": 453.709, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 145.979, + "pointY": 457.432, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 4, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737182, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 156.256, + "pointY": 431.889, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268329 + }, + { + "pointX": 191.344, + "pointY": 431.889, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 444.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.256, + "pointY": 431.889, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.998, + "pointY": 432.353, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114835 + }, + { + "pointX": 185.602, + "pointY": 432.353, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 440.927, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.998, + "pointY": 432.353, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 168.675, + "pointY": 433.495, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140479 + }, + { + "pointX": 178.925, + "pointY": 433.495, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 437.219, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 168.675, + "pointY": 433.495, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 156.256, + "pointY": 431.889, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268329 + }, + { + "pointX": 191.344, + "pointY": 431.889, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 444.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.256, + "pointY": 431.889, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.998, + "pointY": 432.353, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114835 + }, + { + "pointX": 185.602, + "pointY": 432.353, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 440.927, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.998, + "pointY": 432.353, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 168.675, + "pointY": 433.495, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140479 + }, + { + "pointX": 178.925, + "pointY": 433.495, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 437.219, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 168.675, + "pointY": 433.495, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 5, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737182, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 189.442, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.143, + "pointY": 435.376, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268338 + }, + { + "pointX": 206.986, + "pointY": 468.747, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 454.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 197.477, + "pointY": 440.981, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114949 + }, + { + "pointX": 204.771, + "pointY": 463.429, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 454.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 453.709, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 198.453, + "pointY": 447.683, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140658 + }, + { + "pointX": 201.621, + "pointY": 457.432, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 453.709, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 189.442, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.143, + "pointY": 435.376, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268338 + }, + { + "pointX": 206.986, + "pointY": 468.747, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 454.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 197.477, + "pointY": 440.981, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114949 + }, + { + "pointX": 204.771, + "pointY": 463.429, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 454.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 453.709, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 198.453, + "pointY": 447.683, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140658 + }, + { + "pointX": 201.621, + "pointY": 457.432, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 453.709, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 6, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737182, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 183.467, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 205.153, + "pointY": 474.389, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268312 + }, + { + "pointX": 176.766, + "pointY": 495.013, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 200.235, + "pointY": 477.389, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114727 + }, + { + "pointX": 181.139, + "pointY": 491.263, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 194.162, + "pointY": 480.389, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140522 + }, + { + "pointX": 185.869, + "pointY": 486.414, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 183.467, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 205.153, + "pointY": 474.389, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268312 + }, + { + "pointX": 176.766, + "pointY": 495.013, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 200.235, + "pointY": 477.389, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114727 + }, + { + "pointX": 181.139, + "pointY": 491.263, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 194.162, + "pointY": 480.389, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140522 + }, + { + "pointX": 185.869, + "pointY": 486.414, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 5, + "lineId": 1, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.3, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 228.80000000000035, + "y": 198.7999999999999, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 228.80000000000035, + "y": 98.8, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 278.80000000000035, + "y": 98.8, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 278.80000000000035, + "y": 198.7999999999999, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 228.80000000000035, + "y": 198.7999999999999, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 7, + "addWidth": 0.2, + "addDepth": 0.3 + }, + "pointList": [ + { + "pointX": 231.7, + "pointY": 98.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 199.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 199.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 98.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 98.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 104.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 104.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 193.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 193.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 104.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 110.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 110.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 187.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 187.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 110.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 116.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 116.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 181.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 181.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 116.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 120.4, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 177.2, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 231.7, + "pointY": 98.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 199.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 199.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 98.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 98.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 104.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 104.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 193.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 193.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 104.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 110.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 110.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 187.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 187.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 110.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 116.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 116.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 181.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 181.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 116.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 120.4, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 177.2, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 6, + "lineId": 1, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.3, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 278.80000000000035, + "y": 248.79999999999978, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 228.80000000000035, + "y": 248.79999999999978, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 278.80000000000035, + "y": 248.79999999999978, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 7, + "addWidth": 0.2, + "addDepth": 0.3 + }, + "pointList": [ + { + "pointX": 231.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 275.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 231.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 234.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 272.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 234.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 269.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 237.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 240.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 266.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 240.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 263.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 243.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 246.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 260.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 246.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 257.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 249.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 252.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 254.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 252.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 231.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 275.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 231.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 234.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 272.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 234.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 269.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 237.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 240.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 266.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 240.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 263.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 243.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 246.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 260.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 246.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 257.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 249.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 252.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 254.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 252.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + } + ], + "modelListFaceA": [ + { + "orderId": "", + "blockId": 0, + "modelId": 2, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.15, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 148.80000000000024, + "y": 198.7999999999999, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.80000000000024, + "y": 98.8, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 198.80000000000035, + "y": 98.8, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 198.80000000000035, + "y": 198.7999999999999, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.80000000000024, + "y": 198.7999999999999, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 6, + "addWidth": 0.1, + "addDepth": 0.15 + }, + "pointList": [ + { + "pointX": 151.75, + "pointY": 98.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 198.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 198.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 98.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 98.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 104.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 104.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 192.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 192.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 104.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 110.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 110.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 186.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 186.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 110.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 116.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 116.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 180.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 180.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 116.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 120.85, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 176.75, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 151.75, + "pointY": 98.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 198.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 198.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 98.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 98.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 104.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 104.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 192.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 192.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 104.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 110.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 110.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 186.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 186.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 110.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 116.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 116.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 180.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 180.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 116.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 120.85, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 176.75, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 3, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.15, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 198.80000000000035, + "y": 248.79999999999978, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 148.80000000000035, + "y": 248.79999999999978, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 198.80000000000035, + "y": 248.79999999999978, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 6, + "addWidth": 0.1, + "addDepth": 0.15 + }, + "pointList": [ + { + "pointX": 151.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 195.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 151.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 154.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 192.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 154.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 189.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 157.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 160.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 186.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 160.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 183.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 163.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 166.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 180.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 166.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 177.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 169.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 172.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 174.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 172.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 151.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 195.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 151.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 154.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 192.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 154.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 189.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 157.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 160.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 186.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 160.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 183.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 163.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 166.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 180.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 166.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 177.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 169.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 172.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 174.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 172.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737182, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 133.741, + "pointY": 461.083, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 213.859, + "pointY": 461.083, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 133.741, + "pointY": 461.083, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.741, + "pointY": 461.083, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 210.859, + "pointY": 461.083, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 136.741, + "pointY": 461.083, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.829, + "pointY": 463.429, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486115215 + }, + { + "pointX": 150.123, + "pointY": 440.981, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 454.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.829, + "pointY": 463.429, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.614, + "pointY": 468.747, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268363 + }, + { + "pointX": 151.457, + "pointY": 435.376, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.614, + "pointY": 468.747, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 468.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.343, + "pointY": 435.028, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053616 + }, + { + "pointX": 155.96, + "pointY": 431.674, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 444.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 191.64, + "pointY": 431.674, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053599 + }, + { + "pointX": 196.257, + "pointY": 435.028, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 207.282, + "pointY": 468.962, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053603 + }, + { + "pointX": 205.519, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.653, + "pointY": 495.361, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053646 + }, + { + "pointX": 170.947, + "pointY": 495.361, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.081, + "pointY": 474.389, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053591 + }, + { + "pointX": 140.318, + "pointY": 468.962, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 133.741, + "pointY": 461.083, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 213.859, + "pointY": 461.083, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 133.741, + "pointY": 461.083, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.741, + "pointY": 461.083, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 210.859, + "pointY": 461.083, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 136.741, + "pointY": 461.083, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.829, + "pointY": 463.429, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486115215 + }, + { + "pointX": 150.123, + "pointY": 440.981, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 454.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.829, + "pointY": 463.429, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.614, + "pointY": 468.747, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268363 + }, + { + "pointX": 151.457, + "pointY": 435.376, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.614, + "pointY": 468.747, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 468.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.343, + "pointY": 435.028, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053616 + }, + { + "pointX": 155.96, + "pointY": 431.674, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 444.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 191.64, + "pointY": 431.674, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053599 + }, + { + "pointX": 196.257, + "pointY": 435.028, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 207.282, + "pointY": 468.962, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053603 + }, + { + "pointX": 205.519, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.653, + "pointY": 495.361, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053646 + }, + { + "pointX": 170.947, + "pointY": 495.361, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.081, + "pointY": 474.389, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053591 + }, + { + "pointX": 140.318, + "pointY": 468.962, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 2, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737182, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 142.447, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.834, + "pointY": 495.013, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268357 + }, + { + "pointX": 142.447, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 147.365, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 166.461, + "pointY": 491.263, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611515 + }, + { + "pointX": 147.365, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 153.438, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 159.773, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.731, + "pointY": 486.414, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140894 + }, + { + "pointX": 153.438, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 142.447, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.834, + "pointY": 495.013, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268357 + }, + { + "pointX": 142.447, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 147.365, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 166.461, + "pointY": 491.263, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611515 + }, + { + "pointX": 147.365, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 153.438, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 159.773, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.731, + "pointY": 486.414, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140894 + }, + { + "pointX": 153.438, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 3, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737182, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 145.979, + "pointY": 457.432, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140949 + }, + { + "pointX": 149.147, + "pointY": 447.683, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.104, + "pointY": 453.709, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 145.979, + "pointY": 457.432, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 145.979, + "pointY": 457.432, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140949 + }, + { + "pointX": 149.147, + "pointY": 447.683, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.104, + "pointY": 453.709, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 145.979, + "pointY": 457.432, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 4, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737182, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 156.256, + "pointY": 431.889, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268329 + }, + { + "pointX": 191.344, + "pointY": 431.889, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 444.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.256, + "pointY": 431.889, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.998, + "pointY": 432.353, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114835 + }, + { + "pointX": 185.602, + "pointY": 432.353, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 440.927, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.998, + "pointY": 432.353, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 168.675, + "pointY": 433.495, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140479 + }, + { + "pointX": 178.925, + "pointY": 433.495, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 437.219, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 168.675, + "pointY": 433.495, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 156.256, + "pointY": 431.889, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268329 + }, + { + "pointX": 191.344, + "pointY": 431.889, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 444.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.256, + "pointY": 431.889, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.998, + "pointY": 432.353, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114835 + }, + { + "pointX": 185.602, + "pointY": 432.353, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 440.927, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.998, + "pointY": 432.353, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 168.675, + "pointY": 433.495, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140479 + }, + { + "pointX": 178.925, + "pointY": 433.495, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 437.219, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 168.675, + "pointY": 433.495, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 5, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737182, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 189.442, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.143, + "pointY": 435.376, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268338 + }, + { + "pointX": 206.986, + "pointY": 468.747, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 454.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 197.477, + "pointY": 440.981, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114949 + }, + { + "pointX": 204.771, + "pointY": 463.429, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 454.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 453.709, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 198.453, + "pointY": 447.683, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140658 + }, + { + "pointX": 201.621, + "pointY": 457.432, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 453.709, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 189.442, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.143, + "pointY": 435.376, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268338 + }, + { + "pointX": 206.986, + "pointY": 468.747, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 454.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 197.477, + "pointY": 440.981, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114949 + }, + { + "pointX": 204.771, + "pointY": 463.429, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 454.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 453.709, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 198.453, + "pointY": 447.683, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140658 + }, + { + "pointX": 201.621, + "pointY": 457.432, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 453.709, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 6, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737182, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 183.467, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 205.153, + "pointY": 474.389, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268312 + }, + { + "pointX": 176.766, + "pointY": 495.013, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 200.235, + "pointY": 477.389, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114727 + }, + { + "pointX": 181.139, + "pointY": 491.263, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 194.162, + "pointY": 480.389, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140522 + }, + { + "pointX": 185.869, + "pointY": 486.414, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 183.467, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 205.153, + "pointY": 474.389, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268312 + }, + { + "pointX": 176.766, + "pointY": 495.013, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 200.235, + "pointY": 477.389, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114727 + }, + { + "pointX": 181.139, + "pointY": 491.263, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 194.162, + "pointY": 480.389, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140522 + }, + { + "pointX": 185.869, + "pointY": 486.414, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + } + ], + "modelListFaceB": [ + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 1, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.4903010084442, + "y": 526.2470588337941, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915565, + "y": 526.2470588337942, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336713, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.80000000000035, + "y": 604.1423027509678, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 136.375, + "pointY": 573.243, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 600.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 211.225, + "pointY": 573.243, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.93, + "pointY": 529.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 150.67, + "pointY": 529.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.375, + "pointY": 573.243, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 136.375, + "pointY": 573.243, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 600.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 211.225, + "pointY": 573.243, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.93, + "pointY": 529.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 150.67, + "pointY": 529.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.375, + "pointY": 573.243, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 2, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.4903010084442, + "y": 526.2470588337941, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915565, + "y": 526.2470588337942, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336713, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.80000000000035, + "y": 604.1423027509678, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 142.081, + "pointY": 574.389, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053597 + }, + { + "pointX": 140.318, + "pointY": 568.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.343, + "pointY": 535.028, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053655 + }, + { + "pointX": 155.96, + "pointY": 531.674, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 544.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 191.64, + "pointY": 531.674, + "radius": 3, + "depth": 2, + "curve": 0.726542528005359 + }, + { + "pointX": 196.257, + "pointY": 535.028, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 207.282, + "pointY": 568.962, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053639 + }, + { + "pointX": 205.519, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.653, + "pointY": 595.361, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053636 + }, + { + "pointX": 170.947, + "pointY": 595.361, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.081, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.646, + "pointY": 594.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 142.081, + "pointY": 574.389, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053597 + }, + { + "pointX": 140.318, + "pointY": 568.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.343, + "pointY": 535.028, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053655 + }, + { + "pointX": 155.96, + "pointY": 531.674, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 544.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 191.64, + "pointY": 531.674, + "radius": 3, + "depth": 2, + "curve": 0.726542528005359 + }, + { + "pointX": 196.257, + "pointY": 535.028, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 207.282, + "pointY": 568.962, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053639 + }, + { + "pointX": 205.519, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.653, + "pointY": 595.361, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053636 + }, + { + "pointX": 170.947, + "pointY": 595.361, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.081, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.646, + "pointY": 594.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 3, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.4903010084442, + "y": 526.2470588337941, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915565, + "y": 526.2470588337942, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336713, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.80000000000035, + "y": 604.1423027509678, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 141.106, + "pointY": 568.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 535.955, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 141.106, + "pointY": 568.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 560.535, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 545.663, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 554.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 560.535, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 141.106, + "pointY": 568.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 535.955, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 141.106, + "pointY": 568.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 560.535, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 545.663, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 554.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 560.535, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 4, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.4903010084442, + "y": 526.2470588337941, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915565, + "y": 526.2470588337942, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336713, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.80000000000035, + "y": 604.1423027509678, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 152.289, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.939, + "pointY": 586.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 152.289, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 152.289, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.939, + "pointY": 586.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 152.289, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 5, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.4903010084442, + "y": 526.2470588337941, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915565, + "y": 526.2470588337942, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336713, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.80000000000035, + "y": 604.1423027509678, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 176.954, + "pointY": 594.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 204.544, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.954, + "pointY": 594.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 586.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.311, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 586.58, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 176.954, + "pointY": 594.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 204.544, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.954, + "pointY": 594.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 586.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.311, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 586.58, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 6, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.4903010084442, + "y": 526.2470588337941, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915565, + "y": 526.2470588337942, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336713, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.80000000000035, + "y": 604.1423027509678, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 189.442, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 535.955, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 206.494, + "pointY": 568.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 554.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 545.663, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 200.787, + "pointY": 560.535, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 554.854, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 189.442, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 535.955, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 206.494, + "pointY": 568.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 554.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 545.663, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 200.787, + "pointY": 560.535, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 554.854, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 7, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.4903010084442, + "y": 526.2470588337941, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915565, + "y": 526.2470588337942, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336713, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.80000000000035, + "y": 604.1423027509678, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 165.982, + "pointY": 535.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 181.618, + "pointY": 535.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 540.927, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 165.982, + "pointY": 535.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 532.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 190.851, + "pointY": 532.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 544.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 532.247, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 165.982, + "pointY": 535.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 181.618, + "pointY": 535.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 540.927, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 165.982, + "pointY": 535.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 532.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 190.851, + "pointY": 532.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 544.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 532.247, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 5, + "lineId": 1, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.3, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 228.80000000000035, + "y": 198.7999999999999, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 228.80000000000035, + "y": 98.8, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 278.80000000000035, + "y": 98.8, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 278.80000000000035, + "y": 198.7999999999999, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 228.80000000000035, + "y": 198.7999999999999, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 7, + "addWidth": 0.2, + "addDepth": 0.3 + }, + "pointList": [ + { + "pointX": 231.7, + "pointY": 98.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 199.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 199.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 98.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 98.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 104.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 104.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 193.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 193.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 104.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 110.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 110.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 187.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 187.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 110.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 116.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 116.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 181.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 181.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 116.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 120.4, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 177.2, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 231.7, + "pointY": 98.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 199.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 199.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 98.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 98.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 104.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 104.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 193.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 193.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 104.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 110.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 110.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 187.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 187.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 110.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 116.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 116.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 181.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 181.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 116.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 120.4, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 177.2, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 6, + "lineId": 1, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.3, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 278.80000000000035, + "y": 248.79999999999978, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 228.80000000000035, + "y": 248.79999999999978, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 278.80000000000035, + "y": 248.79999999999978, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 7, + "addWidth": 0.2, + "addDepth": 0.3 + }, + "pointList": [ + { + "pointX": 231.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 275.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 231.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 234.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 272.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 234.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 269.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 237.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 240.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 266.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 240.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 263.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 243.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 246.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 260.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 246.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 257.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 249.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 252.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 254.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 252.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 231.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 275.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 231.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 234.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 272.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 234.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 269.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 237.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 240.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 266.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 240.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 263.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 243.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 246.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 260.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 246.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 257.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 249.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 252.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 254.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 252.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + } + ], + "modelListThrough": [], + "modelListSide": [], + "thickness": 18, + "isUnRegular": true, + "bigHoleInFaceA": false, + "holeCountFront": 0, + "holeCountBack": 0, + "holeCountThrough": 0, + "holeCountSide": 0, + "holeCountLeft": 0, + "holeCountRight": 0, + "holeCountTop": 0, + "holeCountBottom": 0, + "holeCountBevelled": 0, + "modelCountFront": 8, + "modelCountBack": 9, + "modelCountThrough": 0, + "hasModelThrogh": false, + "isTwoFaceProcess": false, + "placeStyleFront": 0, + "placeStyleFrontReverse": 1, + "placeStyleBack": 4, + "placeStyleBackReverse": 7, + "labelPosX": -1, + "labelPosY": -1, + "isInited": false, + "isChecked": false, + "isOffsetRounding": true, + "offsetKnifeRadius": 3, + "preMillingSize": 0, + "isUseSameKnifeToHelpCut": false, + "useSameKnifeToHelpCutGap": 0, + "preMillingExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "modelExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "vKnifeModelExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "sameKnifeHelpExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "currentSizeExpand": { + "left": 3.005, + "right": 3.005, + "top": 3.005, + "bottom": 3.005, + "width": 6.01, + "length": 6.01 + }, + "borderContour": { + "placeStyle": 0, + "borderFinal": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 705.342 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 50 + }, + "tagData": 1, + "tagData2": 0, + "m_Length": 655.342 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 50 + }, + "m_EndPoint": { + "m_X": 50, + "m_Y": 0 + }, + "tagData": 1, + "tagData2": 0, + "m_Center": { + "m_X": 50.00000000000003, + "m_Y": 50.000000000000014 + }, + "m_Radius": 50.00000000000002, + "m_StartAngle": 3.141592653589793, + "m_EndAngle": 4.712388980384689, + "m_AllAngle": 1.5707963267948957, + "m_Bul": 0.41421356237309476 + }, + { + "m_StartPoint": { + "m_X": 50, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 350, + "m_Y": 0 + }, + "tagData": 1, + "tagData2": 0, + "m_Length": 300 + }, + { + "m_StartPoint": { + "m_X": 350, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 350, + "m_Y": 705.342 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 705.342 + }, + { + "m_StartPoint": { + "m_X": 350, + "m_Y": 705.342 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 705.342 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 350 + } + ], + "borderOrg": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 703.542 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 48.8 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 654.7420000000001 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 48.8 + }, + "m_EndPoint": { + "m_X": 48.8, + "m_Y": 0 + }, + "tagData": 0, + "tagData2": 0, + "m_Center": { + "m_X": 48.800000000000026, + "m_Y": 48.80000000000001 + }, + "m_Radius": 48.80000000000001, + "m_StartAngle": 3.141592653589793, + "m_EndAngle": 4.712388980384689, + "m_AllAngle": 1.5707963267948957, + "m_Bul": 0.41421356237309476 + }, + { + "m_StartPoint": { + "m_X": 48.8, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 348.2, + "m_Y": 0 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 299.4 + }, + { + "m_StartPoint": { + "m_X": 348.2, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 348.2, + "m_Y": 703.542 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.542 + } + ], + "borderPreMilling": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 703.542 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 48.8 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 654.7420000000001 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 48.8 + }, + "m_EndPoint": { + "m_X": 48.8, + "m_Y": 0 + }, + "tagData": 0, + "tagData2": 0, + "m_Center": { + "m_X": 48.800000000000026, + "m_Y": 48.80000000000001 + }, + "m_Radius": 48.80000000000001, + "m_StartAngle": 3.141592653589793, + "m_EndAngle": 4.712388980384689, + "m_AllAngle": 1.5707963267948957, + "m_Bul": 0.41421356237309476 + }, + { + "m_StartPoint": { + "m_X": 48.8, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 348.2, + "m_Y": 0 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 299.4 + }, + { + "m_StartPoint": { + "m_X": 348.2, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 348.2, + "m_Y": 703.542 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.542 + } + ], + "polylineOrg": { + "_isErase": false, + "IsEmbedEntity": false, + "OnlyRenderType": true, + "HasEdgeRenderType": false, + "HasPlaceFaceRenderType": false, + "HasBigHoleFaceRenderType": false, + "_CacheDrawObject": {}, + "_Color": 7, + "_Matrix": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_SpaceOCS": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_Visible": true, + "_VisibleInRender": true, + "_Freeze": false, + "_LockMaterial": false, + "__ProcessingGroupList": [], + "NeedUpdateFlag": 0, + "AutoUpdate": true, + "__UpdateVersion__": 1, + "_RoomName": "", + "_CabinetName": "", + "_LineData": [ + { + "pt": { + "x": 0, + "y": 703.542 + }, + "bul": 0 + }, + { + "pt": { + "x": 0, + "y": 48.8 + }, + "bul": 0.41421356237309476 + }, + { + "pt": { + "x": 48.8, + "y": 0 + }, + "bul": 0 + }, + { + "pt": { + "x": 348.2, + "y": 0 + }, + "bul": 0 + } + ], + "_DisplayAccuracy": 0, + "_ClosedMark": true + }, + "border": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 703.542 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 48.8 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 654.7420000000001 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 48.8 + }, + "m_EndPoint": { + "m_X": 48.8, + "m_Y": 0 + }, + "tagData": 0, + "tagData2": 0, + "m_Center": { + "m_X": 48.800000000000026, + "m_Y": 48.80000000000001 + }, + "m_Radius": 48.80000000000001, + "m_StartAngle": 3.141592653589793, + "m_EndAngle": 4.712388980384689, + "m_AllAngle": 1.5707963267948957, + "m_Bul": 0.41421356237309476 + }, + { + "m_StartPoint": { + "m_X": 48.8, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 348.2, + "m_Y": 0 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 299.4 + }, + { + "m_StartPoint": { + "m_X": 348.2, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 348.2, + "m_Y": 703.542 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.542 + } + ], + "borderModelThrough": [], + "borderModelThroughR": [], + "cutLinesModelThrough": [], + "borderInnerPlace": [], + "blockInnerSpace": [], + "polylines2vModel": [], + "polylinesOutModel": [ + { + "_isErase": false, + "IsEmbedEntity": false, + "OnlyRenderType": true, + "HasEdgeRenderType": false, + "HasPlaceFaceRenderType": false, + "HasBigHoleFaceRenderType": false, + "_CacheDrawObject": {}, + "_Color": 7, + "_Matrix": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_SpaceOCS": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_Visible": true, + "_VisibleInRender": true, + "_Freeze": false, + "_LockMaterial": false, + "__ProcessingGroupList": [], + "NeedUpdateFlag": 0, + "AutoUpdate": true, + "__UpdateVersion__": 1, + "_RoomName": "", + "_CabinetName": "", + "_LineData": [ + { + "pt": { + "x": 228.7, + "y": 95.3 + }, + "bul": 0 + }, + { + "pt": { + "x": 278.9, + "y": 95.3 + }, + "bul": 0 + }, + { + "pt": { + "x": 278.9, + "y": 202.3 + }, + "bul": 0 + }, + { + "pt": { + "x": 228.7, + "y": 202.3 + }, + "bul": 0 + } + ], + "_DisplayAccuracy": 0, + "_ClosedMark": true + } + ], + "placeContours": [ + { + "placeStyle": 4, + "borderFinal": [ + { + "m_StartPoint": { + "m_X": 350, + "m_Y": 705.342 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 705.342 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 350 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 705.342 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 705.342 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 300, + "m_Y": 0 + }, + "tagData": 1, + "tagData2": 0, + "m_Length": 300 + }, + { + "m_StartPoint": { + "m_X": 300, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 350, + "m_Y": 50 + }, + "tagData": 1, + "tagData2": 0, + "m_Center": { + "m_X": 300, + "m_Y": 50.00000000000002 + }, + "m_Radius": 50.00000000000002, + "m_StartAngle": 4.71238898038469, + "m_EndAngle": 6.283185307179586, + "m_AllAngle": 1.5707963267948957, + "m_Bul": 0.41421356237309476 + }, + { + "m_StartPoint": { + "m_X": 350, + "m_Y": 50 + }, + "m_EndPoint": { + "m_X": 350, + "m_Y": 705.342 + }, + "tagData": 1, + "tagData2": 0, + "m_Length": 655.342 + } + ], + "borderOrg": [ + { + "m_StartPoint": { + "m_X": 1.8000000000000114, + "m_Y": 703.542 + }, + "m_EndPoint": { + "m_X": 1.8000000000000114, + "m_Y": 0 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.542 + }, + { + "m_StartPoint": { + "m_X": 1.8000000000000114, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 301.2, + "m_Y": 0 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 299.4 + }, + { + "m_StartPoint": { + "m_X": 301.2, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 350, + "m_Y": 48.8 + }, + "tagData": 0, + "tagData2": 0, + "m_Center": { + "m_X": 301.2, + "m_Y": 48.800000000000026 + }, + "m_Radius": 48.800000000000026, + "m_StartAngle": 4.71238898038469, + "m_EndAngle": 6.283185307179585, + "m_AllAngle": 1.5707963267948957, + "m_Bul": 0.41421356237309476 + }, + { + "m_StartPoint": { + "m_X": 350, + "m_Y": 48.8 + }, + "m_EndPoint": { + "m_X": 350, + "m_Y": 703.542 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 654.7420000000001 + } + ], + "border": [ + { + "m_StartPoint": { + "m_X": 1.8000000000000114, + "m_Y": 703.542 + }, + "m_EndPoint": { + "m_X": 1.8000000000000114, + "m_Y": 0 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 703.542 + }, + { + "m_StartPoint": { + "m_X": 1.8000000000000114, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 301.2, + "m_Y": 0 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 299.4 + }, + { + "m_StartPoint": { + "m_X": 301.2, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 350, + "m_Y": 48.8 + }, + "tagData": 0, + "tagData2": 0, + "m_Center": { + "m_X": 301.2, + "m_Y": 48.800000000000026 + }, + "m_Radius": 48.800000000000026, + "m_StartAngle": 4.71238898038469, + "m_EndAngle": 6.283185307179585, + "m_AllAngle": 1.5707963267948957, + "m_Bul": 0.41421356237309476 + }, + { + "m_StartPoint": { + "m_X": 350, + "m_Y": 48.8 + }, + "m_EndPoint": { + "m_X": 350, + "m_Y": 703.542 + }, + "tagData": 0, + "tagData2": 0, + "m_Length": 654.7420000000001 + } + ], + "placeContours": [] + } + ] + }, + "remarkParams": {} + }, + "orderId": "1907276351086264320", + "goodsId": "BD10010006", + "roomId": 0, + "bodyId": 0, + "blockId": "1907276518380273665", + "oldBlockId": "1907276518380273665", + "blockNo": "25044454400", + "customPlateNo": "F007-R001-C001-P001", + "labelNo": "", + "blockName": "顶板2", + "plateRemark": "前边封厚边", + "remark1": "", + "remark2": "", + "remark3": "", + "remark4": "", + "remark5": "", + "extraRemark": {}, + "width": 350, + "length": 705.342, + "thickness": 18, + "area": 0.247, + "sealLeft": 0, + "sealRight": 0, + "sealTop": 0, + "sealBottom": 0, + "cutWidth": 350, + "cutLength": 705.342, + "cutArea": 0.24686969999999997, + "isAdditionalBlock": false, + "isRemainBlock": false, + "texture": 0, + "placeHole": 1, + "isUnRegular": true, + "isTurnFaceToPlace": true, + "isTwoFaceToPlace": false, + "isCurvedGroundLine": false, + "isPlaced": true, + "fullBoardId": 0, + "boardId": 2, + "placeId": 4, + "placeX": 679.025, + "placeY": 1094.4250000000002, + "placeStyle": 4, + "cutRegion": 0, + "cutOrder": 0, + "cutPointId": 1, + "placeWidth": 350, + "placeLength": 705.342, + "placeSealLeft": 0, + "placeSealRight": 0, + "placeSealTop": 0, + "placeSealBottom": 0, + "orgSizeExpand": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "placeOffX": 3.005, + "placeOffY": 3.005, + "isAutoPlaced": true, + "isOutBoard": false, + "isOverlap": false, + "placeDirection": "→", + "placeDirection_Length": "→", + "isDrilling": true, + "isModeling": true, + "overBlockFlag": 0, + "isCutOtherFace": false, + "isCutTurnOver": false, + "holeListFaceA": [], + "holeListFaceB": [], + "modelListFaceA": [ + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 1, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.4903010084442, + "y": 526.2470588337941, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915565, + "y": 526.2470588337942, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336713, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.80000000000035, + "y": 604.1423027509678, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 136.375, + "pointY": 573.243, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 600.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 211.225, + "pointY": 573.243, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.93, + "pointY": 529.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 150.67, + "pointY": 529.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.375, + "pointY": 573.243, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 136.375, + "pointY": 573.243, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 600.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 211.225, + "pointY": 573.243, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.93, + "pointY": 529.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 150.67, + "pointY": 529.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.375, + "pointY": 573.243, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 2, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.4903010084442, + "y": 526.2470588337941, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915565, + "y": 526.2470588337942, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336713, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.80000000000035, + "y": 604.1423027509678, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 142.081, + "pointY": 574.389, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053597 + }, + { + "pointX": 140.318, + "pointY": 568.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.343, + "pointY": 535.028, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053655 + }, + { + "pointX": 155.96, + "pointY": 531.674, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 544.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 191.64, + "pointY": 531.674, + "radius": 3, + "depth": 2, + "curve": 0.726542528005359 + }, + { + "pointX": 196.257, + "pointY": 535.028, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 207.282, + "pointY": 568.962, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053639 + }, + { + "pointX": 205.519, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.653, + "pointY": 595.361, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053636 + }, + { + "pointX": 170.947, + "pointY": 595.361, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.081, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.646, + "pointY": 594.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 142.081, + "pointY": 574.389, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053597 + }, + { + "pointX": 140.318, + "pointY": 568.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.343, + "pointY": 535.028, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053655 + }, + { + "pointX": 155.96, + "pointY": 531.674, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 544.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 191.64, + "pointY": 531.674, + "radius": 3, + "depth": 2, + "curve": 0.726542528005359 + }, + { + "pointX": 196.257, + "pointY": 535.028, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 207.282, + "pointY": 568.962, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053639 + }, + { + "pointX": 205.519, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.653, + "pointY": 595.361, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053636 + }, + { + "pointX": 170.947, + "pointY": 595.361, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.081, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.646, + "pointY": 594.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 143.056, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 3, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.4903010084442, + "y": 526.2470588337941, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915565, + "y": 526.2470588337942, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336713, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.80000000000035, + "y": 604.1423027509678, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 141.106, + "pointY": 568.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 535.955, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 141.106, + "pointY": 568.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 560.535, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 545.663, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 554.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 560.535, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 141.106, + "pointY": 568.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 535.955, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 141.106, + "pointY": 568.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 560.535, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.645, + "pointY": 545.663, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 554.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 146.813, + "pointY": 560.535, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 4, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.4903010084442, + "y": 526.2470588337941, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915565, + "y": 526.2470588337942, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336713, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.80000000000035, + "y": 604.1423027509678, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 152.289, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.939, + "pointY": 586.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 152.289, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 152.289, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.939, + "pointY": 586.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 152.289, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 5, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.4903010084442, + "y": 526.2470588337941, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915565, + "y": 526.2470588337942, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336713, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.80000000000035, + "y": 604.1423027509678, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 176.954, + "pointY": 594.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 204.544, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.954, + "pointY": 594.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 586.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.311, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 586.58, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 176.954, + "pointY": 594.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 204.544, + "pointY": 574.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.954, + "pointY": 594.434, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 586.58, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.311, + "pointY": 577.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 182.661, + "pointY": 586.58, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 6, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.4903010084442, + "y": 526.2470588337941, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915565, + "y": 526.2470588337942, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336713, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.80000000000035, + "y": 604.1423027509678, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 189.442, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 535.955, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 206.494, + "pointY": 568.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 554.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 545.663, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 200.787, + "pointY": 560.535, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 554.854, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 189.442, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 535.955, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 206.494, + "pointY": 568.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 556, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 554.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 195.955, + "pointY": 545.663, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 200.787, + "pointY": 560.535, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 554.854, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 1, + "lineId": 7, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.4903010084442, + "y": 526.2470588337941, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 199.1096989915565, + "y": 526.2470588337942, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 214.75195321336713, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 173.80000000000035, + "y": 604.1423027509678, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 132.84804678663346, + "y": 574.388967136571, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 165.982, + "pointY": 535.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 181.618, + "pointY": 535.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 540.927, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 165.982, + "pointY": 535.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 532.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 190.851, + "pointY": 532.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 544.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 532.247, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 165.982, + "pointY": 535.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 181.618, + "pointY": 535.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 540.927, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 165.982, + "pointY": 535.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 532.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 190.851, + "pointY": 532.247, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 544.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.749, + "pointY": 532.247, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 5, + "lineId": 1, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.3, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 228.80000000000035, + "y": 198.7999999999999, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 228.80000000000035, + "y": 98.8, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 278.80000000000035, + "y": 98.8, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 278.80000000000035, + "y": 198.7999999999999, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 228.80000000000035, + "y": 198.7999999999999, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 7, + "addWidth": 0.2, + "addDepth": 0.3 + }, + "pointList": [ + { + "pointX": 231.7, + "pointY": 98.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 199.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 199.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 98.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 98.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 104.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 104.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 193.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 193.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 104.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 110.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 110.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 187.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 187.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 110.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 116.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 116.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 181.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 181.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 116.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 120.4, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 177.2, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 231.7, + "pointY": 98.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 199.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 199.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 275.9, + "pointY": 98.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 231.7, + "pointY": 98.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 104.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 104.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 269.9, + "pointY": 193.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 193.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.7, + "pointY": 104.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 110.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 110.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 263.9, + "pointY": 187.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 187.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.7, + "pointY": 110.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 116.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 116.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 257.9, + "pointY": 181.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 181.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.7, + "pointY": 116.3, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 120.4, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 253.8, + "pointY": 177.2, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 6, + "lineId": 1, + "face": 1, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.3, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 278.80000000000035, + "y": 248.79999999999978, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 228.80000000000035, + "y": 248.79999999999978, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 278.80000000000035, + "y": 248.79999999999978, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 7, + "addWidth": 0.2, + "addDepth": 0.3 + }, + "pointList": [ + { + "pointX": 231.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 275.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 231.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 234.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 272.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 234.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 269.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 237.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 240.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 266.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 240.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 263.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 243.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 246.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 260.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 246.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 257.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 249.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 252.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 254.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 252.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 231.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 275.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.3, + "curve": -0.9999999999999999 + }, + { + "pointX": 231.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 234.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 272.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 234.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 237.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 269.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 237.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 240.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 266.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 240.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 243.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 263.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 243.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 246.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 260.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 246.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 249.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 257.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 249.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + }, + { + "pointX": 252.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 254.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.3, + "curve": 0.9999999999999999 + }, + { + "pointX": 252.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.3, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + } + ], + "modelListFaceB": [ + { + "orderId": "", + "blockId": 0, + "modelId": 2, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.15, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 148.80000000000024, + "y": 198.7999999999999, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.80000000000024, + "y": 98.8, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 198.80000000000035, + "y": 98.8, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 198.80000000000035, + "y": 198.7999999999999, + "z": null + }, + "buls": 0, + "radius": null + }, + { + "pts": { + "x": 148.80000000000024, + "y": 198.7999999999999, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 6, + "addWidth": 0.1, + "addDepth": 0.15 + }, + "pointList": [ + { + "pointX": 151.75, + "pointY": 98.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 198.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 198.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 98.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 98.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 104.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 104.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 192.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 192.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 104.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 110.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 110.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 186.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 186.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 110.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 116.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 116.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 180.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 180.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 116.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 120.85, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 176.75, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 151.75, + "pointY": 98.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 198.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 198.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 195.85, + "pointY": 98.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 151.75, + "pointY": 98.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 104.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 104.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 189.85, + "pointY": 192.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 192.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.75, + "pointY": 104.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 110.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 110.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 183.85, + "pointY": 186.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 186.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.75, + "pointY": 110.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 116.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 116.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 177.85, + "pointY": 180.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 180.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.75, + "pointY": 116.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 120.85, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 176.75, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 3, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 10.15, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 198.80000000000035, + "y": 248.79999999999978, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 148.80000000000035, + "y": 248.79999999999978, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 198.80000000000035, + "y": 248.79999999999978, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 6, + "addWidth": 0.1, + "addDepth": 0.15 + }, + "pointList": [ + { + "pointX": 151.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 195.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 151.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 154.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 192.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 154.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 189.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 157.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 160.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 186.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 160.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 183.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 163.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 166.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 180.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 166.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 177.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 169.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 172.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 174.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 172.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 151.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 195.8, + "pointY": 248.8, + "radius": 22, + "depth": 10.15, + "curve": -0.9999999999999999 + }, + { + "pointX": 151.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 154.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 192.8, + "pointY": 248.8, + "radius": 19, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 154.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 157.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 189.8, + "pointY": 248.8, + "radius": 16, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 157.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 160.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 186.8, + "pointY": 248.8, + "radius": 13, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 160.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 163.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 183.8, + "pointY": 248.8, + "radius": 10, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 163.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 166.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 180.8, + "pointY": 248.8, + "radius": 7, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 166.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 169.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 177.8, + "pointY": 248.8, + "radius": 4, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 169.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + }, + { + "pointX": 172.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 174.8, + "pointY": 248.8, + "radius": 1, + "depth": 10.15, + "curve": 0.9999999999999999 + }, + { + "pointX": 172.8, + "pointY": 248.8, + "radius": 0, + "depth": 10.15, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 1, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737182, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 133.741, + "pointY": 461.083, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 213.859, + "pointY": 461.083, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 133.741, + "pointY": 461.083, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.741, + "pointY": 461.083, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 210.859, + "pointY": 461.083, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 136.741, + "pointY": 461.083, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.829, + "pointY": 463.429, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486115215 + }, + { + "pointX": 150.123, + "pointY": 440.981, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 454.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.829, + "pointY": 463.429, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.614, + "pointY": 468.747, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268363 + }, + { + "pointX": 151.457, + "pointY": 435.376, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.614, + "pointY": 468.747, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 468.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.343, + "pointY": 435.028, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053616 + }, + { + "pointX": 155.96, + "pointY": 431.674, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 444.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 191.64, + "pointY": 431.674, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053599 + }, + { + "pointX": 196.257, + "pointY": 435.028, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 207.282, + "pointY": 468.962, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053603 + }, + { + "pointX": 205.519, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.653, + "pointY": 495.361, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053646 + }, + { + "pointX": 170.947, + "pointY": 495.361, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.081, + "pointY": 474.389, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053591 + }, + { + "pointX": 140.318, + "pointY": 468.962, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 133.741, + "pointY": 461.083, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 213.859, + "pointY": 461.083, + "radius": 40.059, + "depth": 2, + "curve": -0.9999999999999999 + }, + { + "pointX": 133.741, + "pointY": 461.083, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 136.741, + "pointY": 461.083, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 210.859, + "pointY": 461.083, + "radius": 37.059, + "depth": 2, + "curve": 0.9999999999999999 + }, + { + "pointX": 136.741, + "pointY": 461.083, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.829, + "pointY": 463.429, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486115215 + }, + { + "pointX": 150.123, + "pointY": 440.981, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 154.631, + "pointY": 454.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.829, + "pointY": 463.429, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.614, + "pointY": 468.747, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268363 + }, + { + "pointX": 151.457, + "pointY": 435.376, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.614, + "pointY": 468.747, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 140.318, + "pointY": 468.962, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 158.158, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.343, + "pointY": 435.028, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053616 + }, + { + "pointX": 155.96, + "pointY": 431.674, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 444.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 191.64, + "pointY": 431.674, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053599 + }, + { + "pointX": 196.257, + "pointY": 435.028, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 207.282, + "pointY": 468.962, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053603 + }, + { + "pointX": 205.519, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 176.653, + "pointY": 495.361, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053646 + }, + { + "pointX": 170.947, + "pointY": 495.361, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 142.081, + "pointY": 474.389, + "radius": 3, + "depth": 2, + "curve": 0.7265425280053591 + }, + { + "pointX": 140.318, + "pointY": 468.962, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 2, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737182, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 142.447, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.834, + "pointY": 495.013, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268357 + }, + { + "pointX": 142.447, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 147.365, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 166.461, + "pointY": 491.263, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611515 + }, + { + "pointX": 147.365, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 153.438, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 159.773, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.731, + "pointY": 486.414, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140894 + }, + { + "pointX": 153.438, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 142.447, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 164.133, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 170.834, + "pointY": 495.013, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268357 + }, + { + "pointX": 142.447, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 147.365, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.953, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 166.461, + "pointY": 491.263, + "radius": 31.059, + "depth": 2, + "curve": 0.1973885948611515 + }, + { + "pointX": 147.365, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 153.438, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 159.773, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.731, + "pointY": 486.414, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140894 + }, + { + "pointX": 153.438, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 3, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737182, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 145.979, + "pointY": 457.432, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140949 + }, + { + "pointX": 149.147, + "pointY": 447.683, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.104, + "pointY": 453.709, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 145.979, + "pointY": 457.432, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 145.979, + "pointY": 457.432, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140949 + }, + { + "pointX": 149.147, + "pointY": 447.683, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 151.104, + "pointY": 453.709, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 145.979, + "pointY": 457.432, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 4, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737182, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 156.256, + "pointY": 431.889, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268329 + }, + { + "pointX": 191.344, + "pointY": 431.889, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 444.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.256, + "pointY": 431.889, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.998, + "pointY": 432.353, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114835 + }, + { + "pointX": 185.602, + "pointY": 432.353, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 440.927, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.998, + "pointY": 432.353, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 168.675, + "pointY": 433.495, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140479 + }, + { + "pointX": 178.925, + "pointY": 433.495, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 437.219, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 168.675, + "pointY": 433.495, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 156.256, + "pointY": 431.889, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268329 + }, + { + "pointX": 191.344, + "pointY": 431.889, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 444.636, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 156.256, + "pointY": 431.889, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.998, + "pointY": 432.353, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114835 + }, + { + "pointX": 185.602, + "pointY": 432.353, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 440.927, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 161.998, + "pointY": 432.353, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 168.675, + "pointY": 433.495, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140479 + }, + { + "pointX": 178.925, + "pointY": 433.495, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 173.8, + "pointY": 437.219, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 168.675, + "pointY": 433.495, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 5, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737182, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 189.442, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.143, + "pointY": 435.376, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268338 + }, + { + "pointX": 206.986, + "pointY": 468.747, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 454.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 197.477, + "pointY": 440.981, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114949 + }, + { + "pointX": 204.771, + "pointY": 463.429, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 454.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 453.709, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 198.453, + "pointY": 447.683, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140658 + }, + { + "pointX": 201.621, + "pointY": 457.432, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 453.709, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 189.442, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.143, + "pointY": 435.376, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268338 + }, + { + "pointX": 206.986, + "pointY": 468.747, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 189.442, + "pointY": 456, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 454.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 197.477, + "pointY": 440.981, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114949 + }, + { + "pointX": 204.771, + "pointY": 463.429, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 192.969, + "pointY": 454.854, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 453.709, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 198.453, + "pointY": 447.683, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140658 + }, + { + "pointX": 201.621, + "pointY": 457.432, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 196.496, + "pointY": 453.709, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + }, + { + "orderId": "", + "blockId": 0, + "modelId": 4, + "lineId": 6, + "face": 0, + "knifeName": "", + "knifeRadius": 3, + "depth": 2, + "canSpace": false, + "isRect": false, + "isTilt": false, + "type": "", + "knife": null, + "modelWidth": 0, + "modelLength": 0, + "modelStartPoint": null, + "modelEndPoint": null, + "originModeling": { + "outline": [ + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 130.74056818737182, + "y": 461.0828709383395, + "z": null + }, + "buls": 0.9999999999999999, + "radius": null + }, + { + "pts": { + "x": 216.85943181262843, + "y": 461.0828709383395, + "z": null + }, + "buls": 0, + "radius": null + } + ], + "addLen": 0, + "addWidth": 0, + "addDepth": 0 + }, + "pointList": [ + { + "pointX": 183.467, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 205.153, + "pointY": 474.389, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268312 + }, + { + "pointX": 176.766, + "pointY": 495.013, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 200.235, + "pointY": 477.389, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114727 + }, + { + "pointX": 181.139, + "pointY": 491.263, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 194.162, + "pointY": 480.389, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140522 + }, + { + "pointX": 185.869, + "pointY": 486.414, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeRadius": 3, + "realPointList": [ + { + "pointX": 183.467, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 205.153, + "pointY": 474.389, + "radius": 34.059, + "depth": 2, + "curve": 0.2773586187268312 + }, + { + "pointX": 176.766, + "pointY": 495.013, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 183.467, + "pointY": 474.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 200.235, + "pointY": 477.389, + "radius": 31.059, + "depth": 2, + "curve": 0.19738859486114727 + }, + { + "pointX": 181.139, + "pointY": 491.263, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 185.647, + "pointY": 477.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 194.162, + "pointY": 480.389, + "radius": 28.059, + "depth": 2, + "curve": 0.09210362030140522 + }, + { + "pointX": 185.869, + "pointY": 486.414, + "radius": 0, + "depth": 2, + "curve": 0 + }, + { + "pointX": 187.827, + "pointY": 480.389, + "radius": 0, + "depth": 2, + "curve": 0 + } + ], + "realKnifeId": 1, + "isCncCanNotProcess": true, + "cncCanNotProcessType": "", + "isCutting": true, + "offsetList": [], + "VLines": [], + "offsetInfo": "" + } + ], + "labelPosX": 351, + "labelPosY": -1, + "isCncLabelA": false, + "isCncLabelB": false, + "isCncLabelTurnOver": false, + "type": 2, + "openDoorType": 0, + "_blockId": "1907276518380273665" + }, + { + "blockDetail": { + "organId": 0, + "blockId": "1907276518443188225", + "pointDetail": [], + "modelDetail": [], + "holeDetail": [], + "offsetX": 1.2, + "offsetY": -4.4, + "cutWidth": 164.2, + "cutLength": 103.4, + "points": [], + "orgPoints": [], + "orgContourData": null, + "holes": [], + "holeListFaceA": [], + "holeListFaceB": [], + "holeListThrough": [], + "holeListSide": [], + "models": [], + "modelListFaceA": [], + "modelListFaceB": [], + "modelListThrough": [], + "modelListSide": [], + "thickness": 18, + "isUnRegular": false, + "bigHoleInFaceA": false, + "holeCountFront": 0, + "holeCountBack": 0, + "holeCountThrough": 0, + "holeCountSide": 0, + "holeCountLeft": 0, + "holeCountRight": 0, + "holeCountTop": 0, + "holeCountBottom": 0, + "holeCountBevelled": 0, + "modelCountFront": 0, + "modelCountBack": 0, + "modelCountThrough": 0, + "hasModelThrogh": false, + "isTwoFaceProcess": false, + "placeStyleFront": 0, + "placeStyleFrontReverse": 1, + "placeStyleBack": 4, + "placeStyleBackReverse": 7, + "labelPosX": -1, + "labelPosY": -1, + "isInited": false, + "isChecked": false, + "isOffsetRounding": false, + "offsetKnifeRadius": 3, + "preMillingSize": 0, + "isUseSameKnifeToHelpCut": false, + "useSameKnifeToHelpCutGap": 0, + "preMillingExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "modelExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "vKnifeModelExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "sameKnifeHelpExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "currentSizeExpand": { + "left": 3.005, + "right": 3.005, + "top": 3.005, + "bottom": 3.005, + "width": 6.01, + "length": 6.01 + }, + "borderContour": { + "placeStyle": 0, + "borderFinal": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 166, + "m_Y": 0 + }, + "tagData": 0, + "m_Length": 166 + }, + { + "m_StartPoint": { + "m_X": 166, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 166, + "m_Y": 100 + }, + "tagData": 1, + "m_Length": 100 + }, + { + "m_StartPoint": { + "m_X": 166, + "m_Y": 100 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 100 + }, + "tagData": 1, + "m_Length": 166 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 100 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "tagData": 0, + "m_Length": 100 + } + ], + "borderOrg": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 164.2, + "m_Y": 0 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 164.2, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 164.2, + "m_Y": 103.4 + }, + "m_Length": 103.4 + }, + { + "m_StartPoint": { + "m_X": 164.2, + "m_Y": 103.4 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 103.4 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 103.4 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 103.4 + } + ], + "borderPreMilling": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 164.2, + "m_Y": 0 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 164.2, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 164.2, + "m_Y": 103.4 + }, + "m_Length": 103.4 + }, + { + "m_StartPoint": { + "m_X": 164.2, + "m_Y": 103.4 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 103.4 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 103.4 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 103.4 + } + ], + "polylineOrg": { + "_isErase": false, + "IsEmbedEntity": false, + "OnlyRenderType": true, + "HasEdgeRenderType": false, + "HasPlaceFaceRenderType": false, + "HasBigHoleFaceRenderType": false, + "_CacheDrawObject": {}, + "_Color": 7, + "_Matrix": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_SpaceOCS": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_Visible": true, + "_VisibleInRender": true, + "_Freeze": false, + "_LockMaterial": false, + "__ProcessingGroupList": [], + "NeedUpdateFlag": 0, + "AutoUpdate": true, + "__UpdateVersion__": 1, + "_RoomName": "", + "_CabinetName": "", + "_LineData": [ + { + "pt": { + "x": 0, + "y": 0 + }, + "bul": 0 + }, + { + "pt": { + "x": 164.2, + "y": 0 + }, + "bul": 0 + }, + { + "pt": { + "x": 164.2, + "y": 103.4 + }, + "bul": 0 + }, + { + "pt": { + "x": 0, + "y": 103.4 + }, + "bul": 0 + } + ], + "_DisplayAccuracy": 0, + "_ClosedMark": true + }, + "border": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 164.2, + "m_Y": 0 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 164.2, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 164.2, + "m_Y": 103.4 + }, + "m_Length": 103.4 + }, + { + "m_StartPoint": { + "m_X": 164.2, + "m_Y": 103.4 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 103.4 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 103.4 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 103.4 + } + ], + "borderModelThrough": [], + "borderModelThroughR": [], + "cutLinesModelThrough": [], + "borderInnerPlace": [], + "blockInnerSpace": [], + "polylines2vModel": [], + "polylinesOutModel": [], + "placeContours": [ + { + "placeStyle": 4, + "borderFinal": [ + { + "m_StartPoint": { + "m_X": 166, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 166, + "m_Y": 100 + }, + "tagData": 0, + "m_Length": 100 + }, + { + "m_StartPoint": { + "m_X": 166, + "m_Y": 100 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 100 + }, + "tagData": 1, + "m_Length": 166 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 100 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "tagData": 1, + "m_Length": 100 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 166, + "m_Y": 0 + }, + "tagData": 0, + "m_Length": 166 + } + ], + "borderOrg": [ + { + "m_StartPoint": { + "m_X": 165, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 165, + "m_Y": 103.4 + }, + "m_Length": 103.4 + }, + { + "m_StartPoint": { + "m_X": 165, + "m_Y": 103.4 + }, + "m_EndPoint": { + "m_X": 0.8000000000000114, + "m_Y": 103.4 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 0.8000000000000114, + "m_Y": 103.4 + }, + "m_EndPoint": { + "m_X": 0.8000000000000114, + "m_Y": 0 + }, + "m_Length": 103.4 + }, + { + "m_StartPoint": { + "m_X": 0.8000000000000114, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 165, + "m_Y": 0 + }, + "m_Length": 164.2 + } + ], + "border": [ + { + "m_StartPoint": { + "m_X": 165, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 165, + "m_Y": 103.4 + }, + "m_Length": 103.4 + }, + { + "m_StartPoint": { + "m_X": 165, + "m_Y": 103.4 + }, + "m_EndPoint": { + "m_X": 0.8000000000000114, + "m_Y": 103.4 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 0.8000000000000114, + "m_Y": 103.4 + }, + "m_EndPoint": { + "m_X": 0.8000000000000114, + "m_Y": 0 + }, + "m_Length": 103.4 + }, + { + "m_StartPoint": { + "m_X": 0.8000000000000114, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 165, + "m_Y": 0 + }, + "m_Length": 164.2 + } + ], + "placeContours": [] + } + ] + }, + "remarkParams": {} + }, + "orderId": "1907276351086264320", + "goodsId": "BD10010006", + "roomId": 0, + "bodyId": 0, + "blockId": "1907276518443188225", + "oldBlockId": "1907276518443188225", + "blockNo": "25044454404", + "customPlateNo": "F007-R001-C001-P005", + "labelNo": "", + "blockName": "右侧板", + "plateRemark": "侧边反面斜切63度,斜边隐形连接件", + "remark1": "", + "remark2": "", + "remark3": "", + "remark4": "", + "remark5": "", + "extraRemark": {}, + "width": 166, + "length": 100, + "thickness": 18, + "area": 0.017, + "sealLeft": 0, + "sealRight": 1, + "sealTop": 1, + "sealBottom": 0, + "cutWidth": 165, + "cutLength": 99, + "cutArea": 0.016335, + "isAdditionalBlock": false, + "isRemainBlock": false, + "texture": 0, + "placeHole": 0, + "isUnRegular": false, + "isTurnFaceToPlace": true, + "isTwoFaceToPlace": false, + "isCurvedGroundLine": false, + "isPlaced": true, + "fullBoardId": 0, + "boardId": 2, + "placeId": 5, + "placeX": 1035.035, + "placeY": 1094.4250000000002, + "placeStyle": 4, + "cutRegion": 0, + "cutOrder": 0, + "cutPointId": 2, + "placeWidth": 165, + "placeLength": 99, + "placeSealLeft": 1, + "placeSealRight": 0, + "placeSealTop": 1, + "placeSealBottom": 0, + "orgSizeExpand": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "placeOffX": 3.005, + "placeOffY": 3.005, + "isAutoPlaced": true, + "isOutBoard": false, + "isOverlap": false, + "placeDirection": "→", + "placeDirection_Length": "↑", + "isDrilling": true, + "isModeling": true, + "overBlockFlag": 0, + "isCutOtherFace": false, + "isCutTurnOver": false, + "holeListFaceA": [], + "holeListFaceB": [], + "modelListFaceA": [], + "modelListFaceB": [], + "labelPosX": 166, + "labelPosY": -1, + "isCncLabelA": false, + "isCncLabelB": false, + "isCncLabelTurnOver": false, + "type": 2, + "openDoorType": 0, + "_blockId": "1907276518443188225" + }, + { + "blockDetail": { + "organId": 0, + "blockId": "1907276518443188233", + "pointDetail": [], + "modelDetail": [], + "holeDetail": [], + "offsetX": 1.2, + "offsetY": -4.4, + "cutWidth": 164.2, + "cutLength": 103.8, + "points": [], + "orgPoints": [], + "orgContourData": null, + "holes": [], + "holeListFaceA": [], + "holeListFaceB": [], + "holeListThrough": [], + "holeListSide": [], + "models": [], + "modelListFaceA": [], + "modelListFaceB": [], + "modelListThrough": [], + "modelListSide": [], + "thickness": 18, + "isUnRegular": false, + "bigHoleInFaceA": false, + "holeCountFront": 0, + "holeCountBack": 0, + "holeCountThrough": 0, + "holeCountSide": 0, + "holeCountLeft": 0, + "holeCountRight": 0, + "holeCountTop": 0, + "holeCountBottom": 0, + "holeCountBevelled": 0, + "modelCountFront": 0, + "modelCountBack": 0, + "modelCountThrough": 0, + "hasModelThrogh": false, + "isTwoFaceProcess": false, + "placeStyleFront": 0, + "placeStyleFrontReverse": 1, + "placeStyleBack": 4, + "placeStyleBackReverse": 7, + "labelPosX": -1, + "labelPosY": -1, + "isInited": false, + "isChecked": false, + "isOffsetRounding": false, + "offsetKnifeRadius": 3, + "preMillingSize": 0, + "isUseSameKnifeToHelpCut": false, + "useSameKnifeToHelpCutGap": 0, + "preMillingExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "modelExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "vKnifeModelExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "sameKnifeHelpExpandSize": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "currentSizeExpand": { + "left": 3.005, + "right": 3.005, + "top": 3.005, + "bottom": 3.005, + "width": 6.01, + "length": 6.01 + }, + "borderContour": { + "placeStyle": 0, + "borderFinal": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 166, + "m_Y": 0 + }, + "tagData": 0, + "m_Length": 166 + }, + { + "m_StartPoint": { + "m_X": 166, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 166, + "m_Y": 100 + }, + "tagData": 1, + "m_Length": 100 + }, + { + "m_StartPoint": { + "m_X": 166, + "m_Y": 100 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 100 + }, + "tagData": 0, + "m_Length": 166 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 100 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "tagData": 0, + "m_Length": 100 + } + ], + "borderOrg": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 164.2, + "m_Y": 0 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 164.2, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 164.2, + "m_Y": 103.8 + }, + "m_Length": 103.8 + }, + { + "m_StartPoint": { + "m_X": 164.2, + "m_Y": 103.8 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 103.8 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 103.8 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 103.8 + } + ], + "borderPreMilling": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 164.2, + "m_Y": 0 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 164.2, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 164.2, + "m_Y": 103.8 + }, + "m_Length": 103.8 + }, + { + "m_StartPoint": { + "m_X": 164.2, + "m_Y": 103.8 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 103.8 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 103.8 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 103.8 + } + ], + "polylineOrg": { + "_isErase": false, + "IsEmbedEntity": false, + "OnlyRenderType": true, + "HasEdgeRenderType": false, + "HasPlaceFaceRenderType": false, + "HasBigHoleFaceRenderType": false, + "_CacheDrawObject": {}, + "_Color": 7, + "_Matrix": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_SpaceOCS": { + "elements": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ] + }, + "_Visible": true, + "_VisibleInRender": true, + "_Freeze": false, + "_LockMaterial": false, + "__ProcessingGroupList": [], + "NeedUpdateFlag": 0, + "AutoUpdate": true, + "__UpdateVersion__": 1, + "_RoomName": "", + "_CabinetName": "", + "_LineData": [ + { + "pt": { + "x": 0, + "y": 0 + }, + "bul": 0 + }, + { + "pt": { + "x": 164.2, + "y": 0 + }, + "bul": 0 + }, + { + "pt": { + "x": 164.2, + "y": 103.8 + }, + "bul": 0 + }, + { + "pt": { + "x": 0, + "y": 103.8 + }, + "bul": 0 + } + ], + "_DisplayAccuracy": 0, + "_ClosedMark": true + }, + "border": [ + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 164.2, + "m_Y": 0 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 164.2, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 164.2, + "m_Y": 103.8 + }, + "m_Length": 103.8 + }, + { + "m_StartPoint": { + "m_X": 164.2, + "m_Y": 103.8 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 103.8 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 103.8 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_Length": 103.8 + } + ], + "borderModelThrough": [], + "borderModelThroughR": [], + "cutLinesModelThrough": [], + "borderInnerPlace": [], + "blockInnerSpace": [], + "polylines2vModel": [], + "polylinesOutModel": [], + "placeContours": [ + { + "placeStyle": 4, + "borderFinal": [ + { + "m_StartPoint": { + "m_X": 166, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 166, + "m_Y": 100 + }, + "tagData": 0, + "m_Length": 100 + }, + { + "m_StartPoint": { + "m_X": 166, + "m_Y": 100 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 100 + }, + "tagData": 0, + "m_Length": 166 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 100 + }, + "m_EndPoint": { + "m_X": 0, + "m_Y": 0 + }, + "tagData": 1, + "m_Length": 100 + }, + { + "m_StartPoint": { + "m_X": 0, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 166, + "m_Y": 0 + }, + "tagData": 0, + "m_Length": 166 + } + ], + "borderOrg": [ + { + "m_StartPoint": { + "m_X": 165, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 165, + "m_Y": 103.8 + }, + "m_Length": 103.8 + }, + { + "m_StartPoint": { + "m_X": 165, + "m_Y": 103.8 + }, + "m_EndPoint": { + "m_X": 0.8000000000000114, + "m_Y": 103.8 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 0.8000000000000114, + "m_Y": 103.8 + }, + "m_EndPoint": { + "m_X": 0.8000000000000114, + "m_Y": 0 + }, + "m_Length": 103.8 + }, + { + "m_StartPoint": { + "m_X": 0.8000000000000114, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 165, + "m_Y": 0 + }, + "m_Length": 164.2 + } + ], + "border": [ + { + "m_StartPoint": { + "m_X": 165, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 165, + "m_Y": 103.8 + }, + "m_Length": 103.8 + }, + { + "m_StartPoint": { + "m_X": 165, + "m_Y": 103.8 + }, + "m_EndPoint": { + "m_X": 0.8000000000000114, + "m_Y": 103.8 + }, + "m_Length": 164.2 + }, + { + "m_StartPoint": { + "m_X": 0.8000000000000114, + "m_Y": 103.8 + }, + "m_EndPoint": { + "m_X": 0.8000000000000114, + "m_Y": 0 + }, + "m_Length": 103.8 + }, + { + "m_StartPoint": { + "m_X": 0.8000000000000114, + "m_Y": 0 + }, + "m_EndPoint": { + "m_X": 165, + "m_Y": 0 + }, + "m_Length": 164.2 + } + ], + "placeContours": [] + } + ] + }, + "remarkParams": {} + }, + "orderId": "1907276351086264320", + "goodsId": "BD10010006", + "roomId": 0, + "bodyId": 0, + "blockId": "1907276518443188233", + "oldBlockId": "1907276518443188233", + "blockNo": "25044454405", + "customPlateNo": "F007-R001-C001-P006", + "labelNo": "", + "blockName": "左侧板", + "plateRemark": "侧边正面斜切63度,斜边隐形连接件", + "remark1": "", + "remark2": "", + "remark3": "", + "remark4": "", + "remark5": "", + "extraRemark": {}, + "width": 166, + "length": 100, + "thickness": 18, + "area": 0.017, + "sealLeft": 0, + "sealRight": 1, + "sealTop": 0, + "sealBottom": 0, + "cutWidth": 165, + "cutLength": 100, + "cutArea": 0.0165, + "isAdditionalBlock": false, + "isRemainBlock": false, + "texture": 0, + "placeHole": 0, + "isUnRegular": false, + "isTurnFaceToPlace": true, + "isTwoFaceToPlace": false, + "isCurvedGroundLine": false, + "isPlaced": true, + "fullBoardId": 0, + "boardId": 2, + "placeId": 6, + "placeX": 1035.035, + "placeY": 1199.4350000000002, + "placeStyle": 4, + "cutRegion": 0, + "cutOrder": 0, + "cutPointId": 0, + "placeWidth": 165, + "placeLength": 100, + "placeSealLeft": 1, + "placeSealRight": 0, + "placeSealTop": 0, + "placeSealBottom": 0, + "orgSizeExpand": { + "left": 0, + "right": 0, + "top": 0, + "bottom": 0, + "width": 0, + "length": 0 + }, + "placeOffX": 3.005, + "placeOffY": 3.005, + "isAutoPlaced": true, + "isOutBoard": false, + "isOverlap": false, + "placeDirection": "→", + "placeDirection_Length": "↑", + "isDrilling": true, + "isModeling": true, + "overBlockFlag": 0, + "isCutOtherFace": false, + "isCutTurnOver": false, + "holeListFaceA": [], + "holeListFaceB": [], + "modelListFaceA": [], + "modelListFaceB": [], + "labelPosX": 166, + "labelPosY": -1, + "isCncLabelA": false, + "isCncLabelB": false, + "isCncLabelTurnOver": false, + "type": 2, + "openDoorType": 0, + "_blockId": "1907276518443188233" + } + ], + "remainBlockList": [], + "isCreateRemainSpace": true, + "hasModelOnLeft": false, + "hasModelOnRight": false +} \ No newline at end of file diff --git a/src/processors/modelProcessPoints/modelProcessPoints.ts b/src/processors/modelProcessPoints/modelProcessPoints.ts new file mode 100644 index 0000000..4629eb4 --- /dev/null +++ b/src/processors/modelProcessPoints/modelProcessPoints.ts @@ -0,0 +1,532 @@ +import { ConfigBase, ProcessorBase, ProcessorContext } from "cut-abstractions"; + +/** + * 获取造型在开料大板的坐标 + * + * 输入的造型数据为 要处理的造型数据 + */ +export class ModelProcessPointsProc extends ProcessorBase { + get name(): string { + return 'ModelProcessPoints'; + } + get version(): string { + return '1.0.0'; + } + exec(context: ProcessorContext): Promise | void { + return new Promise(async (resolve, reject) => { + try { + if (context.input) { + if (context.input.block) { + // if (Array.isArray(context.input.block.models) && context.input.block.models.length > 0) { + /** 板件的坐标X */ + let placeX = context.input.block.x + /** 板件的坐标Y */ + let placeY = context.input.block.y + + let output: ModelProcessPointsOutput = { + block: { + id: context.input.block.id, + positionType: context.input.block.positionType || 0, + models: [], + width: context.input.block.width, + length: context.input.block.length, + offsetInfo: context.input.block.offsetInfo + } + } + + /** + * 提要: + * 1、这里的造型数据 都是 基于板件(小板)的正面的点阵数据 + * 2、坐标转换 依据2个要素进行转换 【板件(小板)的优化坐标】 和 【板件(小板)的放置方式】 + * + * 先处理放置方式 在处理 优化坐标 会简单很多 + */ + let res = this.handleByPositionType(context.input.block, context.input.targetPosition) + + let res1 = this.handleByPlaceXY(res.models, placeX, placeY) + + res.models = res1 + output.block = { + ...output.block, + ...res, + // positionType:context.input.targetPosition + } + context.output = output + resolve() + } else { + reject('ModelProcessPoints error: input.block is undefined;') + } + } else { + reject('ModelProcessPoints error: input is undefined;') + } + resolve() + } catch (error) { + reject(error); + } + }); + } + /** + * 根据小板的放置方式进行偏移 + * + * 提要:models内的造型数据 都是以小板正面 为基准 + * 即 PositionType.FRONT + * 需要 以下几种情况 + * 加工项所在的面 -- 2种 正 反 + * 小板放置方式 -- 8 种 详见 PositionType 处理器入参 默认为 PositionType.FRONT + * + * 细节: + * 加工项 为正面 且放置方式为正面的 无需操作 直接输出,其它情况 都需要做处理 + * + * 如果有 翻面的情况 弧度值需要取反 + * + * 思考: 坐标转换的实质 其实 也就是以下几种行为 + * 面与面的行为: 翻面(a 面到 b 面 ) + * 单面内的行为: 左转 右转 翻转 + * + * 这里其实 可以有个流程 + * 先判定 是不是要 翻面 + * 然后再去 做 单面内的行为 相关的坐标转换 将问题集中在一个面的操作上 + * + * PositionType XXX 转到 PositionType XX 无非就是 【左转 或 右转 或 翻转】 或者 先 翻面 然后 【左转 或 右转 或 翻转】 + * 那么 就 + * 有翻面 先 翻面 然后 再 【左| 右 | 翻】 转 + * + * 注: 这里的操作 都依据绘图可视的X Y 轴进行处理 + * block.width 对应 Y轴的值 + * block.length 对应 x轴的值 + */ + handleByPositionType(block: ModelProcessPointsInputBlock, targetPosition: PositionType) { + /** 造型输出的数据 */ + let models: ModelProcessItem[] = [] + + let _width = block.width + + let _length = block.length + + /** 默认 正面 */ + if (block.positionType == undefined) { + block.positionType = PositionType.FRONT + } + + //#region 板件 进行分析 翻面 以及 行为 + let face = this.getFace(block.positionType) + let targetFace = this.getFace(targetPosition) + + if (face == -1) { + // 异常情况 + console.log(`block-${block.id}:block.positionType is invalid`) + } + if (targetFace == -1) { + // 异常情况 + console.log(`targetFace:targetFace is invalid`) + } + // 判定是否要翻面 + const isTurn = !(face == targetFace) + + /** 翻面后的 放置方式 */ + let tempPosition = block.positionType + if(block.id =='25044454400'){ + debugger + } + if (isTurn) { + tempPosition = this.getPositionAfterTurnFace(block.positionType) + } + + // 获取行为 左|右|翻转|不操作 + const action = this.getDir(tempPosition, targetPosition) + + //#endregion + + // 处理造型的部分 + for (const i in block.models) { + let model = {...block.models[i]} + /** 如果要 翻面 那就先把面 翻过来 */ + if (isTurn) { + // 翻面 x 不变 Y 变 + model = this.change_turnFace(model, _width) + // 然后 弧度值要取反 + model = this.reverseBuls(model) + } + + /** + * 根据 行为标识 转换坐标 + * 注: 左转 或者时右转 需要 转换 板件(小板)的 长宽值 + * + */ + switch (action) { + case 'doNothing': + // 啥事也不做 + break; + + case 'turnAround': + // 翻转 x 变 y 也变 + model = this.change_turnAround(model, _length, _width) + break; + case 'turnLeft': + + model = this.change_turnLeft(model, _length, _width) + break; + + case 'turnRight': + model = this.change_turnRight(model, _length, _width) + break; + + default: + break; + } + + models.push(model) + } + + let handleData = { + width: _width, + length: _length, + models, + positionType:targetPosition, + offsetInfo: block.offsetInfo + } + /** 左转 或者 右转 长宽值 要互换 */ + if (action == 'turnLeft' || action == 'turnRight') { + handleData = { + ...handleData, + width: _length, + length: _width, + } + } + + /** 更加行为 以及是否 翻转 转换 板件的偏移值 */ + if (isTurn) { + // 翻面 左右封边互换 上下不变 + block.offsetInfo = { + ...block.offsetInfo, + top: block.offsetInfo.bottom, + bottom: block.offsetInfo.top + } + } + + switch (action) { + case 'turnAround': + // 翻转 + block.offsetInfo = { + top: block.offsetInfo.bottom, + bottom: block.offsetInfo.top, + left: block.offsetInfo.right, + right: block.offsetInfo.left + } + break; + case 'turnLeft': + block.offsetInfo = { + top: block.offsetInfo.right, + right: block.offsetInfo.bottom, + bottom: block.offsetInfo.left, + left: block.offsetInfo.top + } + break + case 'turnRight': + block.offsetInfo = { + top: block.offsetInfo.left, + left: block.offsetInfo.bottom, + bottom: block.offsetInfo.right, + right: block.offsetInfo.top + } + break + default: + break; + } + + + return handleData + } + /** 获取翻面 后的 放置方式 */ + private getPositionAfterTurnFace(v: PositionType) { + let res = transitions_PositionTurnFace[v] + + return res + } + /** 获取行为 左|右|翻转|不需要操作 */ + private getDir(v1: PositionType, v2: PositionType) { + let flag: RotationAction = 'doNothing' + try { + flag = transitions_PositionToAction[v1][v2] + } catch (error) { + console.log('逻辑异常!请保证 v1 v2 的放置方式处在同一个面上,或者输入的值在转换关系中没有匹配的值') + flag = 'doNothing' + } + return flag + } + /** 右转 */ + private change_turnRight(model: ModelProcessItem, valueX: number, valueY: number) { + let newModel = { ...model } + for (const i in newModel.pts) { + newModel.pts[i] = { + x: valueX - newModel.pts[i].y, + y: newModel.pts[i].x + } + } + return newModel + } + + /** 左转 */ + private change_turnLeft(model: ModelProcessItem, valueX: number, valueY: number) { + let newModel = { ...model } + for (const i in newModel.pts) { + newModel.pts[i] = { + x: newModel.pts[i].y, + y: valueX - newModel.pts[i].x + } + } + return newModel + } + /** 翻转 改变 xy 坐标 */ + private change_turnAround(model: ModelProcessItem, valueX: number, valueY: number) { + let newModel = { ...model } + for (const i in newModel.pts) { + newModel.pts[i] = { + x: valueX - newModel.pts[i].x, + y: valueY - newModel.pts[i].y + } + } + return newModel + } + + + + /**翻面 改变 y坐标 */ + private change_turnFace(model: ModelProcessItem, valueY: number) { + let newModel = { ...model } + for (const i in newModel.pts) { + newModel.pts[i].y = valueY - newModel.pts[i].y + } + return newModel + } + /** 给 弧度值 取反 */ + private reverseBuls(model: ModelProcessItem) { + let newModel = { ...model } + for (const i in newModel.buls) { + newModel.buls[i] = -newModel.buls[i] + } + return newModel + } + /**正面的放置方式 集合*/ + private frontArr = [ + PositionType.FRONT, + PositionType.FRONT_TURN_BACK, + PositionType.FRONT_TURN_LEFT, + PositionType.FRONT_TURN_RIGHT + ] + /** 反面的放置方式 集合*/ + private backArr = [ + PositionType.BACK, + PositionType.BACK_TURN_BACK, + PositionType.BACK_TURN_LEFT, + PositionType.BACK_TURN_RIGHT + ] + /** 根据放置方式 获取面 */ + private getFace(positionValue: PositionType) { + let res = -1 + if (this.frontArr.includes(positionValue)) { + res = FaceType.FRONT + } + + if (this.backArr.includes(positionValue)) { + res = FaceType.BACK + } + return res + } + + /** 根据 优化后的坐标XY便宜 */ + handleByPlaceXY(models: ModelProcessItem[], placeX: number, placeY: number) { + let newModels: ModelProcessItem[] = [] + for (const model of models) { + let newModel:ModelProcessItem = {...model} + let newPts = [] + for (const k in newModel.pts) { + let p = { + x: model.pts[k].x + placeX, + y: model.pts[k].y + placeY + } + newPts.push(p) + } + newModel.pts = newPts + newModels.push(newModel) + } + + return newModels + } +} +/** 处理器输入-- 获取造型在大板的刀路 */ +export type ModelProcessPointsInput = { + /** 小板数据 */ + block: ModelProcessPointsInputBlock, + /** 小板的最终的放置位置 */ + targetPosition: PositionType +} +/** 处理器输入--小板 -- 获取造型在大板的刀路 */ +export type ModelProcessPointsInputBlock = { + /** 板件唯一标识 */ + id: string | number, + /** 板件基于大板的 坐标X */ + x: number, + /** 板件基于大板的 坐标y */ + y: number, + /** 板件(小板)长 */ + length: number, + /** 板件(小板)宽 */ + width: number, + /** 造型数据 依据放置方式positionType 下的造型数据 默认为 依据放置方式positionType.FRONT 的造型数据 */ + models: ModelProcessItem[], + /** 板件的原放置方式 默认为正面(0) 不传则为正面 原 placestyle*/ + positionType?: PositionType, + /** 偏移值 */ + offsetInfo: OffsetInfo + +} +/** 板件 上下左右 偏移值信息 */ +export type OffsetInfo = { + top: number, + bottom: number, + left: number, + right: number, +} +/** 处理器输出--小板 -- 获取造型在大板的刀路 */ +export type ModelProcessPointsOutputBlock = { + /** 板件唯一标识 */ + id: string | number + /** 放置方式 */ + positionType: PositionType + /** 造型数据 */ + models: ModelProcessItem[] + /** 板件(小板)长 */ + length: number, + /** 板件(小板)宽 */ + width: number, + /** 偏移值 */ + offsetInfo: OffsetInfo +} +/** 处理器输出-- 获取造型在大板的刀路 */ +export type ModelProcessPointsOutput = { + block: ModelProcessPointsOutputBlock +} + +/** 处理器配置-- 获取造型在大板的刀路 暂无 */ +export declare class ModelProcessPointsProcConfig extends ConfigBase { + +} + + +/** 造型类 */ +export interface ModelProcessItem { + /** 加工项唯一标识 */ + id?: string | number + /** + * 加工点数组 + */ + pts: IPoint[]; + /** + * 凸度数组 + */ + buls: number[]; + /** 加工面 */ + face: FaceType + +} + +export enum FaceType { + /** 正面 */ + FRONT = 0, + /** 反面 */ + BACK = 1, +} + +export interface IPoint { x: number, y: number; } + +export enum PositionType { + /** 正面 */ + FRONT = 0, + /** 正面右转 */ + FRONT_TURN_RIGHT = 1, + /** 正面后转 */ + FRONT_TURN_BACK = 2, + /** 正面左转 */ + FRONT_TURN_LEFT = 3, + /** 反面 */ + BACK = 4, + /** 反面右转 */ + BACK_TURN_RIGHT = 5, + /** 反面后转 */ + BACK_TURN_BACK = 6, + /** 反面左转 */ + BACK_TURN_LEFT = 7, +} + + +/** 行为类型 */ +export type RotationAction = 'doNothing' | 'turnLeft' | 'turnRight' | 'turnAround' +/** + * 原放置方式 依据 目标放置方式 转 行为的 转换关系 + * + * 注:原放置方式 为 翻面 转换后 的数值 + * 若要支持 翻转转换前 需对内容进一步填充 +*/ +export const transitions_PositionToAction: any = { + [PositionType.FRONT]: { + [PositionType.FRONT_TURN_BACK]: 'turnAround', + [PositionType.FRONT_TURN_LEFT]: 'turnLeft', + [PositionType.FRONT_TURN_RIGHT]: 'turnRight', + [PositionType.FRONT]: 'doNothing' + }, + [PositionType.FRONT_TURN_LEFT]: { + [PositionType.FRONT]: 'turnRight', + [PositionType.FRONT_TURN_RIGHT]: 'turnAround', + [PositionType.FRONT_TURN_BACK]: 'turnLeft', + [PositionType.FRONT_TURN_LEFT]: 'doNothing' + }, + [PositionType.FRONT_TURN_RIGHT]: { + [PositionType.FRONT]: 'turnLeft', + [PositionType.FRONT_TURN_LEFT]: 'turnAround', + [PositionType.FRONT_TURN_BACK]: 'turnRight', + [PositionType.FRONT_TURN_RIGHT]: 'doNothing' + }, + [PositionType.FRONT_TURN_BACK]: { + [PositionType.FRONT]: 'turnAround', + [PositionType.FRONT_TURN_LEFT]: 'turnRight', + [PositionType.FRONT_TURN_RIGHT]: 'turnLeft', + [PositionType.FRONT_TURN_BACK]: 'doNothing' + }, + [PositionType.BACK]: { + [PositionType.BACK_TURN_BACK]: 'turnAround', + [PositionType.BACK_TURN_LEFT]: 'turnLeft', + [PositionType.BACK_TURN_RIGHT]: 'turnRight', + [PositionType.BACK]: 'doNothing' + }, + [PositionType.BACK_TURN_LEFT]: { + [PositionType.BACK]: 'turnRight', + [PositionType.BACK_TURN_RIGHT]: 'turnAround', + [PositionType.BACK_TURN_BACK]: 'turnLeft', + [PositionType.BACK_TURN_LEFT]: 'doNothing' + }, + [PositionType.BACK_TURN_RIGHT]: { + [PositionType.BACK]: 'turnLeft', + [PositionType.BACK_TURN_LEFT]: 'turnAround', + [PositionType.BACK_TURN_BACK]: 'turnRight', + [PositionType.BACK_TURN_RIGHT]: 'doNothing' + }, + [PositionType.BACK_TURN_BACK]: { + [PositionType.BACK]: 'turnAround', + [PositionType.BACK_TURN_LEFT]: 'turnRight', + [PositionType.BACK_TURN_RIGHT]: 'turnLeft', + [PositionType.BACK_TURN_BACK]: 'doNothing' + } +} + +/** 放置方式 翻转后的转换关系 */ +export const transitions_PositionTurnFace: any = { + [PositionType.FRONT]: PositionType.BACK, + [PositionType.FRONT_TURN_RIGHT]: PositionType.BACK_TURN_LEFT, + [PositionType.FRONT_TURN_BACK]: PositionType.BACK_TURN_BACK, + [PositionType.FRONT_TURN_LEFT]: PositionType.BACK_TURN_RIGHT, + [PositionType.BACK]: PositionType.FRONT, + [PositionType.BACK_TURN_BACK]: PositionType.FRONT_TURN_BACK, + [PositionType.BACK_TURN_LEFT]: PositionType.FRONT_TURN_RIGHT, + [PositionType.BACK_TURN_RIGHT]: PositionType.FRONT_TURN_LEFT +} \ No newline at end of file diff --git a/src/processors/modelProcessPoints/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json b/src/processors/modelProcessPoints/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json new file mode 100644 index 0000000..377e700 --- /dev/null +++ b/src/processors/modelProcessPoints/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json @@ -0,0 +1 @@ +{"version":"3.2.4","results":[[":modelProcessPoints.test.ts",{"duration":7.6438000202178955,"failed":false}]]} \ No newline at end of file diff --git a/src/vite-env.d.ts b/src/vite-env.d.ts new file mode 100644 index 0000000..11f02fe --- /dev/null +++ b/src/vite-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/tsconfig.app.json b/tsconfig.app.json new file mode 100644 index 0000000..ae94125 --- /dev/null +++ b/tsconfig.app.json @@ -0,0 +1,39 @@ +{ + // TODO: Warn: 在进行TS类型检查的时候会检查到workflow工作区中的文件,原因未知 + "compilerOptions": { + "lib": [ + "ES2020", + "ES2021", + "ESNext", + "DOM", + "DOM.Iterable" + ], + "noEmit": true, + "target": "esnext", + "module": "ESNext", + "moduleResolution": "Bundler", + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", + "baseUrl": ".", + "paths": { + // 为了保证导入不与被引入项目冲突,不应该配置'@/*'别名 + "@libs/*": [ + "./src/*" + ] + }, + /* Linting */ + "strict": true, + "erasableSyntaxOnly": false, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true, + "composite": true + }, + "include": [ + "src/**/*.ts", + "src/**/*.tsx", + ], + "exclude": [ + "src/**/__tests__/*", + "dist", + "node_modules/**" + ] +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..1ffef60 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,7 @@ +{ + "files": [], + "references": [ + { "path": "./tsconfig.app.json" }, + { "path": "./tsconfig.node.json" } + ] +} diff --git a/tsconfig.node.json b/tsconfig.node.json new file mode 100644 index 0000000..dcf15c3 --- /dev/null +++ b/tsconfig.node.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", + "target": "ES2023", + "lib": ["ES2023"], + "module": "ESNext", + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "moduleDetection": "force", + "noEmit": true, + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "erasableSyntaxOnly": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true, + }, + "include": ["vite.config.ts"] +} diff --git a/vite.config.ts b/vite.config.ts new file mode 100644 index 0000000..a488e90 --- /dev/null +++ b/vite.config.ts @@ -0,0 +1,34 @@ +/// +import { defineConfig } from 'vite' +import { nodePolyfills } from 'vite-plugin-node-polyfills'; +import { resolve } from 'node:path'; +import dts from 'vite-plugin-dts'; + +let basePath = process.env.basePath ?? ''; + +// https://vite.dev/config/ +export default defineConfig({ + base: basePath, + plugins: [ + nodePolyfills(), + dts({rollupTypes: true, tsconfigPath: './tsconfig.app.json',insertTypesEntry: true}), + ], + build: { + modulePreload: { + resolveDependencies() { + return []; + } + }, + lib: { + entry: resolve(__dirname, 'src/index.ts'), + name: 'MesCutorder', + fileName(format) { + return `mes-cutorder.${format}.js` + }, + formats: ['es', 'umd', 'iife'] + } + }, + esbuild: { + drop: process.env.NODE_ENV === 'production' ? ['console', 'debugger'] : [], + }, +}) \ No newline at end of file