Files
imes-modelProcessPoints/src/processors/TransformProcessItemByPosition/conversion.test.ts

29986 lines
1.0 MiB
TypeScript
Raw Normal View History

import { test } from "vitest";
import { TransformProcessItemByPositionInput, TransformProcessItemByPositionInputBlock, TransformProcessItemByPositionProc, TransformProcessingItem } from "./TransformProcessItemByPosition";
import { IPoint, ProcessorContext } from "cut-abstractions";
test('conversionTest', async () => {
/** 输入的小板集合 */
let blocks: TransformProcessItemByPositionInputBlock[] = []
data.forEach(block => {
/** 造型数据集 */
let models: TransformProcessingItem[] = []
/** 孔数据集 */
let holes: TransformProcessingItem[] = []
/** 轮廓集合 */
2025-08-27 11:07:02 +08:00
let border: TransformProcessingItem[] = []
//#region 业务数据转为处理器入参数据
// 造型 数据转换
block.blockDetail.models.forEach(m => {
let temp: TransformProcessingItem = {
id: 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)
})
// 孔 数据转换
block.blockDetail.holes.forEach((h, i) => {
let p: IPoint = { x: h.pointX, y: h.pointY }
let temp: TransformProcessingItem = {
id: i,
pts: [p],
buls: [0],
face: h.face
}
holes.push(temp)
})
/** 各种轮廓的集合 */
// 原始轮廓
2025-08-27 11:07:02 +08:00
let orgBorder: TransformProcessingItem = {
id: `orgBorder_${block.blockNo}`,
pts: block.blockDetail.orgContourData?.pts || [],
buls: block.blockDetail.orgContourData?.buls || [],
face: 0
}
2025-08-27 11:07:02 +08:00
border.push(orgBorder)
// 开料轮廓 。。。。 若需要 按照原始轮廓的方式添加
let _block: TransformProcessItemByPositionInputBlock = {
id: block.blockNo,
x: block.placeX,
y: block.placeY,
length: block.placeLength,
width: block.placeWidth,
offsetInfo: {
top: block.sealTop,
left: block.sealLeft,
bottom: block.sealBottom,
right: block.sealRight
},
positionType: 0,
models,
holes,
2025-08-27 11:07:02 +08:00
border,
}
blocks.push(_block)
//#endregion
});
console.log(blocks);
let input: TransformProcessItemByPositionInput = {
blocks: blocks,
}
let context: ProcessorContext<any, any, any> = {
input: input,
params: {},
output: {}
}
let proc = new TransformProcessItemByPositionProc()
2025-08-27 11:07:02 +08:00
await proc.exec(context)
console.log(context)
})
const data = [
{
"blockDetail": {
"organId": 0,
"blockId": "1920739895391813632",
"pointDetail": [],
"modelDetail": [],
"holeDetail": [],
"offsetX": 0,
"offsetY": 0,
"cutWidth": 400,
"cutLength": 600,
"points": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 580,
"curve": 0.41421356237309503,
"radius": 20.000000000000004,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 380,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgPoints": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 580,
"curve": 0.41421356237309503,
"radius": 20.000000000000004,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 380,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgContourData": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 580
},
{
"x": 380,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0.41421356237309503,
0,
0
]
},
"holes": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceA": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceB": [],
"holeListThrough": [],
"holeListSide": [],
"models": [
{
"orderId": "",
"blockId": 0,
"modelId": 1,
"lineId": 1,
"face": 1,
"knifeName": "",
"knifeRadius": 3,
"depth": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 580
},
{
"x": 380,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0.41421356237309503,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 580
},
{
"x": 380,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0.41421356237309503,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 580
},
{
"x": 380,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0.41421356237309503,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 580
},
{
"x": 380,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0.41421356237309503,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
}
],
"realKnifeId": 1,
"isCncCanNotProcess": true,
"cncCanNotProcessType": "",
"isCutting": true,
"offsetList": [],
"VLines": [],
"offsetInfo": ""
}
],
"modelListThrough": [],
"modelListSide": [],
"thickness": 18,
"isUnRegular": true,
"bigHoleInFaceA": false,
"holeCountFront": 2,
"holeCountBack": 0,
"holeCountThrough": 0,
"holeCountSide": 0,
"holeCountLeft": 0,
"holeCountRight": 0,
"holeCountTop": 0,
"holeCountBottom": 0,
"holeCountBevelled": 0,
"modelCountFront": 1,
"modelCountBack": 1,
"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": 3,
"bottom": 3,
"width": 0,
"length": 6
},
"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": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 380,
"m_Y": 580
},
"m_Radius": 20.000000000000004,
"m_StartAngle": 0,
"m_EndAngle": 1.5707963267948966,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 380,
"m_Y": 580
},
"m_Radius": 20.000000000000004,
"m_StartAngle": 0,
"m_EndAngle": 1.5707963267948966,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
}
],
"borderPreMilling": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 380,
"m_Y": 580
},
"m_Radius": 20.000000000000004,
"m_StartAngle": 0,
"m_EndAngle": 1.5707963267948966,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
}
],
"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": 400,
"y": 0
},
"bul": 0
},
{
"pt": {
"x": 400,
"y": 580
},
"bul": 0.41421356237309503
},
{
"pt": {
"x": 380,
"y": 600
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
},
"border": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 380,
"m_Y": 580
},
"m_Radius": 20.000000000000004,
"m_StartAngle": 0,
"m_EndAngle": 1.5707963267948966,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
}
],
"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": 300,
"y": -3
},
"bul": 0
},
{
"pt": {
"x": 320,
"y": -2.9999999999998863
},
"bul": 0
},
{
"pt": {
"x": 320,
"y": 603
},
"bul": 0
},
{
"pt": {
"x": 300,
"y": 602.9999999999999
},
"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": 92,
"y": -2.9999999999998863
},
"bul": 0
},
{
"pt": {
"x": 92,
"y": 603
},
"bul": 0
},
{
"pt": {
"x": 80,
"y": 602.9999999999999
},
"bul": 0
},
{
"pt": {
"x": 80,
"y": -3
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
}
],
"placeContours": [
{
"placeStyle": 4,
"borderFinal": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 20,
"m_Y": 580
},
"m_Radius": 20.000000000000004,
"m_StartAngle": 1.5707963267948966,
"m_EndAngle": 3.141592653589793,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 20,
"m_Y": 580
},
"m_Radius": 20.000000000000004,
"m_StartAngle": 1.5707963267948966,
"m_EndAngle": 3.141592653589793,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"border": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 20,
"m_Y": 580
},
"m_Radius": 20.000000000000004,
"m_StartAngle": 1.5707963267948966,
"m_EndAngle": 3.141592653589793,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"placeContours": []
}
]
},
"remarkParams": {}
},
"orderId": "1920739893772812288",
"goodsId": "SP202001031",
"roomId": 0,
"bodyId": 0,
"blockId": "1920739895391813632",
"oldBlockId": "1920739895391813632",
"blockNo": "250575324035",
"customPlateNo": "F003-R001-C001-P011",
"labelNo": "",
"blockName": "背板2-R20",
"plateRemark": "",
"remark1": "",
"remark2": "",
"remark3": "",
"remark4": "",
"remark5": "",
"extraRemark": {},
"width": 400,
"length": 600,
"thickness": 18,
"area": 0.24,
"sealLeft": 0,
"sealRight": 0,
"sealTop": 0,
"sealBottom": 0,
"cutWidth": 400,
"cutLength": 600,
"cutArea": 0.24,
"isAdditionalBlock": false,
"isRemainBlock": false,
"texture": 0,
"placeHole": 2,
"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": 5,
"cutPointId": 1,
"placeWidth": 400,
"placeLength": 600,
"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": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"modelListFaceA": [
{
"orderId": "",
"blockId": 0,
"modelId": 1,
"lineId": 1,
"face": 1,
"knifeName": "",
"knifeRadius": 3,
"depth": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 580
},
{
"x": 380,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0.41421356237309503,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 580
},
{
"x": 380,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0.41421356237309503,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"curve": 0
}
],
"realKnifeId": 1,
"isCncCanNotProcess": true,
"cncCanNotProcessType": "",
"isCutting": true,
"offsetList": [],
"VLines": [],
"offsetInfo": ""
}
],
"labelPosX": 401,
"labelPosY": -1,
"isCncLabelA": false,
"isCncLabelB": false,
"isCncLabelTurnOver": false,
"type": 2,
"openDoorType": 0,
"_blockId": "1920739895391813632"
},
{
"blockDetail": {
"organId": 0,
"blockId": "1920739895412785152",
"pointDetail": [],
"modelDetail": [],
"holeDetail": [],
"offsetX": 0,
"offsetY": 0,
"cutWidth": 400,
"cutLength": 600,
"points": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 560,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 380,
"pointY": 560,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 380,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgPoints": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 560,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 380,
"pointY": 560,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 380,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgContourData": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 560
},
{
"x": 380,
"y": 560
},
{
"x": 380,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0
]
},
"holes": [
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceA": [],
"holeListFaceB": [
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListThrough": [],
"holeListSide": [],
"models": [
{
"orderId": "",
"blockId": 0,
"modelId": 1,
"lineId": 1,
"face": 1,
"knifeName": "",
"knifeRadius": 3,
"depth": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 560
},
{
"x": 380,
"y": 560
},
{
"x": 380,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 560
},
{
"x": 380,
"y": 560
},
{
"x": 380,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 560
},
{
"x": 380,
"y": 560
},
{
"x": 380,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 560
},
{
"x": 380,
"y": 560
},
{
"x": 380,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
}
],
"realKnifeId": 1,
"isCncCanNotProcess": true,
"cncCanNotProcessType": "",
"isCutting": true,
"offsetList": [],
"VLines": [],
"offsetInfo": ""
}
],
"modelListThrough": [],
"modelListSide": [],
"thickness": 18,
"isUnRegular": true,
"bigHoleInFaceA": false,
"holeCountFront": 0,
"holeCountBack": 2,
"holeCountThrough": 0,
"holeCountSide": 0,
"holeCountLeft": 0,
"holeCountRight": 0,
"holeCountTop": 0,
"holeCountBottom": 0,
"holeCountBevelled": 0,
"modelCountFront": 1,
"modelCountBack": 1,
"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": 3,
"bottom": 3,
"width": 0,
"length": 6
},
"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": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 560
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 560
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
}
],
"borderPreMilling": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 560
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
}
],
"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": 400,
"y": 0
},
"bul": 0
},
{
"pt": {
"x": 400,
"y": 560
},
"bul": 0
},
{
"pt": {
"x": 380,
"y": 560
},
"bul": 0
},
{
"pt": {
"x": 380,
"y": 600
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
},
"border": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 560
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
}
],
"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": 300,
"y": -3
},
"bul": 0
},
{
"pt": {
"x": 320,
"y": -2.9999999999998863
},
"bul": 0
},
{
"pt": {
"x": 320,
"y": 603
},
"bul": 0
},
{
"pt": {
"x": 300,
"y": 602.9999999999999
},
"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": 92,
"y": -2.9999999999998863
},
"bul": 0
},
{
"pt": {
"x": 92,
"y": 603
},
"bul": 0
},
{
"pt": {
"x": 80,
"y": 602.9999999999999
},
"bul": 0
},
{
"pt": {
"x": 80,
"y": -3
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
}
],
"placeContours": [
{
"placeStyle": 4,
"borderFinal": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 560
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 560
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"border": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 560
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"placeContours": []
}
]
},
"remarkParams": {}
},
"orderId": "1920739893772812288",
"goodsId": "SP202001031",
"roomId": 0,
"bodyId": 0,
"blockId": "1920739895412785152",
"oldBlockId": "1920739895412785152",
"blockNo": "250575324036",
"customPlateNo": "F003-R001-C001-P001",
"labelNo": "",
"blockName": "背板4-rec-w20-h40",
"plateRemark": "",
"remark1": "",
"remark2": "",
"remark3": "",
"remark4": "",
"remark5": "",
"extraRemark": {},
"width": 400,
"length": 600,
"thickness": 18,
"area": 0.24,
"sealLeft": 0,
"sealRight": 0,
"sealTop": 0,
"sealBottom": 0,
"cutWidth": 400,
"cutLength": 600,
"cutArea": 0.24,
"isAdditionalBlock": false,
"isRemainBlock": false,
"texture": 0,
"placeHole": 2,
"isUnRegular": true,
"isTurnFaceToPlace": true,
"isTwoFaceToPlace": false,
"isCurvedGroundLine": false,
"isPlaced": true,
"fullBoardId": 0,
"boardId": 2,
"placeId": 2,
"placeX": 3.005,
"placeY": 609.015,
"placeStyle": 4,
"cutRegion": 0,
"cutOrder": 6,
"cutPointId": 1,
"placeWidth": 400,
"placeLength": 600,
"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": [
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceB": [],
"modelListFaceA": [
{
"orderId": "",
"blockId": 0,
"modelId": 1,
"lineId": 1,
"face": 1,
"knifeName": "",
"knifeRadius": 3,
"depth": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 560
},
{
"x": 380,
"y": 560
},
{
"x": 380,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 560
},
{
"x": 380,
"y": 560
},
{
"x": 380,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"curve": 0
}
],
"realKnifeId": 1,
"isCncCanNotProcess": true,
"cncCanNotProcessType": "",
"isCutting": true,
"offsetList": [],
"VLines": [],
"offsetInfo": ""
}
],
"labelPosX": 401,
"labelPosY": -1,
"isCncLabelA": false,
"isCncLabelB": false,
"isCncLabelTurnOver": false,
"type": 2,
"openDoorType": 0,
"_blockId": "1920739895412785152"
},
{
"blockDetail": {
"organId": 0,
"blockId": "1920739895433756672",
"pointDetail": [],
"modelDetail": [],
"holeDetail": [],
"offsetX": 0,
"offsetY": 0,
"cutWidth": 400,
"cutLength": 600,
"points": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 220,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 220,
"pointY": 580,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 180,
"pointY": 580,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 180,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgPoints": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 220,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 220,
"pointY": 580,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 180,
"pointY": 580,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 180,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgContourData": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 600
},
{
"x": 220,
"y": 600
},
{
"x": 220,
"y": 580
},
{
"x": 180,
"y": 580
},
{
"x": 180,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0,
0,
0
]
},
"holes": [
{
"holeType": 40,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 40,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 40,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 40,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceA": [
{
"holeType": 40,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 40,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceB": [
{
"holeType": 40,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 40,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListThrough": [],
"holeListSide": [],
"models": [
{
"orderId": "",
"blockId": 0,
"modelId": 1,
"lineId": 1,
"face": 1,
"knifeName": "",
"knifeRadius": 3,
"depth": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 600
},
{
"x": 220,
"y": 600
},
{
"x": 220,
"y": 580
},
{
"x": 180,
"y": 580
},
{
"x": 180,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 600
},
{
"x": 220,
"y": 600
},
{
"x": 220,
"y": 580
},
{
"x": 180,
"y": 580
},
{
"x": 180,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 600
},
{
"x": 220,
"y": 600
},
{
"x": 220,
"y": 580
},
{
"x": 180,
"y": 580
},
{
"x": 180,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 600
},
{
"x": 220,
"y": 600
},
{
"x": 220,
"y": 580
},
{
"x": 180,
"y": 580
},
{
"x": 180,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
}
],
"realKnifeId": 1,
"isCncCanNotProcess": true,
"cncCanNotProcessType": "",
"isCutting": true,
"offsetList": [],
"VLines": [],
"offsetInfo": ""
}
],
"modelListThrough": [],
"modelListSide": [],
"thickness": 18,
"isUnRegular": true,
"bigHoleInFaceA": false,
"holeCountFront": 2,
"holeCountBack": 2,
"holeCountThrough": 0,
"holeCountSide": 0,
"holeCountLeft": 0,
"holeCountRight": 0,
"holeCountTop": 0,
"holeCountBottom": 0,
"holeCountBevelled": 0,
"modelCountFront": 1,
"modelCountBack": 1,
"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": 3,
"bottom": 3,
"width": 0,
"length": 6
},
"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": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
}
],
"borderPreMilling": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
}
],
"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": 400,
"y": 0
},
"bul": 0
},
{
"pt": {
"x": 400,
"y": 600
},
"bul": 0
},
{
"pt": {
"x": 220,
"y": 600
},
"bul": 0
},
{
"pt": {
"x": 220,
"y": 580
},
"bul": 0
},
{
"pt": {
"x": 180,
"y": 580
},
"bul": 0
},
{
"pt": {
"x": 180,
"y": 600
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
},
"border": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
}
],
"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": 300,
"y": -3
},
"bul": 0
},
{
"pt": {
"x": 320,
"y": -2.9999999999998863
},
"bul": 0
},
{
"pt": {
"x": 320,
"y": 603
},
"bul": 0
},
{
"pt": {
"x": 300,
"y": 602.9999999999999
},
"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": 92,
"y": -2.9999999999998863
},
"bul": 0
},
{
"pt": {
"x": 92,
"y": 603
},
"bul": 0
},
{
"pt": {
"x": 80,
"y": 602.9999999999999
},
"bul": 0
},
{
"pt": {
"x": 80,
"y": -3
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
}
],
"placeContours": [
{
"placeStyle": 4,
"borderFinal": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"border": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"placeContours": []
}
]
},
"remarkParams": {}
},
"orderId": "1920739893772812288",
"goodsId": "SP202001031",
"roomId": 0,
"bodyId": 0,
"blockId": "1920739895433756672",
"oldBlockId": "1920739895433756672",
"blockNo": "250575324037",
"customPlateNo": "F003-R001-C001-P003",
"labelNo": "",
"blockName": "背板6-rec-w40-h20",
"plateRemark": "",
"remark1": "",
"remark2": "",
"remark3": "",
"remark4": "",
"remark5": "",
"extraRemark": {},
"width": 400,
"length": 600,
"thickness": 18,
"area": 0.24,
"sealLeft": 0,
"sealRight": 0,
"sealTop": 0,
"sealBottom": 0,
"cutWidth": 400,
"cutLength": 600,
"cutArea": 0.24,
"isAdditionalBlock": false,
"isRemainBlock": false,
"texture": 0,
"placeHole": 2,
"isUnRegular": true,
"isTurnFaceToPlace": true,
"isTwoFaceToPlace": false,
"isCurvedGroundLine": false,
"isPlaced": true,
"fullBoardId": 0,
"boardId": 2,
"placeId": 3,
"placeX": 3.005,
"placeY": 1215.025,
"placeStyle": 4,
"cutRegion": 0,
"cutOrder": 7,
"cutPointId": 1,
"placeWidth": 400,
"placeLength": 600,
"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": [
{
"holeType": 40,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 40,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceB": [
{
"holeType": 40,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 40,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"modelListFaceA": [
{
"orderId": "",
"blockId": 0,
"modelId": 1,
"lineId": 1,
"face": 1,
"knifeName": "",
"knifeRadius": 3,
"depth": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 600
},
{
"x": 220,
"y": 600
},
{
"x": 220,
"y": 580
},
{
"x": 180,
"y": 580
},
{
"x": 180,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 600
},
{
"x": 220,
"y": 600
},
{
"x": 220,
"y": 580
},
{
"x": 180,
"y": 580
},
{
"x": 180,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"curve": 0
}
],
"realKnifeId": 1,
"isCncCanNotProcess": true,
"cncCanNotProcessType": "",
"isCutting": true,
"offsetList": [],
"VLines": [],
"offsetInfo": ""
}
],
"labelPosX": 401,
"labelPosY": -1,
"isCncLabelA": false,
"isCncLabelB": false,
"isCncLabelTurnOver": false,
"type": 2,
"openDoorType": 0,
"_blockId": "1920739895433756672"
},
{
"blockDetail": {
"organId": 0,
"blockId": "1920739895505059840",
"pointDetail": [],
"modelDetail": [],
"holeDetail": [],
"offsetX": 0,
"offsetY": 0,
"cutWidth": 400,
"cutLength": 600,
"points": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 520,
"curve": 0.41421356237309503,
"radius": 80.00000000000001,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 320,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgPoints": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 520,
"curve": 0.41421356237309503,
"radius": 80.00000000000001,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 320,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgContourData": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 520
},
{
"x": 320,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0.41421356237309503,
0,
0
]
},
"holes": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceA": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceB": [],
"holeListThrough": [],
"holeListSide": [],
"models": [
{
"orderId": "",
"blockId": 0,
"modelId": 1,
"lineId": 1,
"face": 1,
"knifeName": "",
"knifeRadius": 3,
"depth": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 520
},
{
"x": 320,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0.41421356237309503,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 520
},
{
"x": 320,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0.41421356237309503,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 520
},
{
"x": 320,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0.41421356237309503,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 520
},
{
"x": 320,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0.41421356237309503,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
}
],
"realKnifeId": 1,
"isCncCanNotProcess": true,
"cncCanNotProcessType": "",
"isCutting": true,
"offsetList": [],
"VLines": [],
"offsetInfo": ""
}
],
"modelListThrough": [],
"modelListSide": [],
"thickness": 18,
"isUnRegular": true,
"bigHoleInFaceA": false,
"holeCountFront": 2,
"holeCountBack": 0,
"holeCountThrough": 0,
"holeCountSide": 0,
"holeCountLeft": 0,
"holeCountRight": 0,
"holeCountTop": 0,
"holeCountBottom": 0,
"holeCountBevelled": 0,
"modelCountFront": 1,
"modelCountBack": 1,
"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": 3,
"bottom": 3,
"width": 0,
"length": 6
},
"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": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 520
},
"tagData": 0,
"tagData2": 0,
"m_Length": 520
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 520
},
"m_EndPoint": {
"m_X": 320,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 320,
"m_Y": 520
},
"m_Radius": 80.00000000000001,
"m_StartAngle": 0,
"m_EndAngle": 1.5707963267948966,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 320,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 520
},
"tagData": 0,
"tagData2": 0,
"m_Length": 520
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 520
},
"m_EndPoint": {
"m_X": 320,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 320,
"m_Y": 520
},
"m_Radius": 80.00000000000001,
"m_StartAngle": 0,
"m_EndAngle": 1.5707963267948966,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 320,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
}
],
"borderPreMilling": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 520
},
"tagData": 0,
"tagData2": 0,
"m_Length": 520
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 520
},
"m_EndPoint": {
"m_X": 320,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 320,
"m_Y": 520
},
"m_Radius": 80.00000000000001,
"m_StartAngle": 0,
"m_EndAngle": 1.5707963267948966,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 320,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
}
],
"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": 400,
"y": 0
},
"bul": 0
},
{
"pt": {
"x": 400,
"y": 520
},
"bul": 0.41421356237309503
},
{
"pt": {
"x": 320,
"y": 600
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
},
"border": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 520
},
"tagData": 0,
"tagData2": 0,
"m_Length": 520
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 520
},
"m_EndPoint": {
"m_X": 320,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 320,
"m_Y": 520
},
"m_Radius": 80.00000000000001,
"m_StartAngle": 0,
"m_EndAngle": 1.5707963267948966,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 320,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
}
],
"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": 300,
"y": -3
},
"bul": 0
},
{
"pt": {
"x": 320,
"y": -2.9999999999998863
},
"bul": 0
},
{
"pt": {
"x": 320,
"y": 603
},
"bul": 0
},
{
"pt": {
"x": 300,
"y": 602.9999999999999
},
"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": 92,
"y": -2.9999999999998863
},
"bul": 0
},
{
"pt": {
"x": 92,
"y": 603
},
"bul": 0
},
{
"pt": {
"x": 80,
"y": 602.9999999999999
},
"bul": 0
},
{
"pt": {
"x": 80,
"y": -3
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
}
],
"placeContours": [
{
"placeStyle": 4,
"borderFinal": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 80,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
},
{
"m_StartPoint": {
"m_X": 80,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 520
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 80,
"m_Y": 520
},
"m_Radius": 80.00000000000001,
"m_StartAngle": 1.5707963267948966,
"m_EndAngle": 3.141592653589793,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 520
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 520
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 80,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
},
{
"m_StartPoint": {
"m_X": 80,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 520
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 80,
"m_Y": 520
},
"m_Radius": 80.00000000000001,
"m_StartAngle": 1.5707963267948966,
"m_EndAngle": 3.141592653589793,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 520
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 520
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"border": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 80,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
},
{
"m_StartPoint": {
"m_X": 80,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 520
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 80,
"m_Y": 520
},
"m_Radius": 80.00000000000001,
"m_StartAngle": 1.5707963267948966,
"m_EndAngle": 3.141592653589793,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 520
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 520
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"placeContours": []
}
]
},
"remarkParams": {}
},
"orderId": "1920739893772812288",
"goodsId": "SP202001031",
"roomId": 0,
"bodyId": 0,
"blockId": "1920739895505059840",
"oldBlockId": "1920739895505059840",
"blockNo": "250575324041",
"customPlateNo": "F003-R001-C001-P015",
"labelNo": "",
"blockName": "背板10-R80",
"plateRemark": "",
"remark1": "",
"remark2": "",
"remark3": "",
"remark4": "",
"remark5": "",
"extraRemark": {},
"width": 400,
"length": 600,
"thickness": 18,
"area": 0.24,
"sealLeft": 0,
"sealRight": 0,
"sealTop": 0,
"sealBottom": 0,
"cutWidth": 400,
"cutLength": 600,
"cutArea": 0.24,
"isAdditionalBlock": false,
"isRemainBlock": false,
"texture": 0,
"placeHole": 2,
"isUnRegular": true,
"isTurnFaceToPlace": true,
"isTwoFaceToPlace": false,
"isCurvedGroundLine": false,
"isPlaced": true,
"fullBoardId": 0,
"boardId": 2,
"placeId": 4,
"placeX": 3.005,
"placeY": 1821.035,
"placeStyle": 4,
"cutRegion": 0,
"cutOrder": 8,
"cutPointId": 3,
"placeWidth": 400,
"placeLength": 600,
"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": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"modelListFaceA": [
{
"orderId": "",
"blockId": 0,
"modelId": 1,
"lineId": 1,
"face": 1,
"knifeName": "",
"knifeRadius": 3,
"depth": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 520
},
{
"x": 320,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0.41421356237309503,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 520
},
{
"x": 320,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0.41421356237309503,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"curve": 0
}
],
"realKnifeId": 1,
"isCncCanNotProcess": true,
"cncCanNotProcessType": "",
"isCutting": true,
"offsetList": [],
"VLines": [],
"offsetInfo": ""
}
],
"labelPosX": 401,
"labelPosY": -1,
"isCncLabelA": false,
"isCncLabelB": false,
"isCncLabelTurnOver": false,
"type": 2,
"openDoorType": 0,
"_blockId": "1920739895505059840"
},
{
"blockDetail": {
"organId": 0,
"blockId": "1920739895526031360",
"pointDetail": [],
"modelDetail": [],
"holeDetail": [],
"offsetX": 0,
"offsetY": 0,
"cutWidth": 400,
"cutLength": 600,
"points": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 460,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 350,
"pointY": 460,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 350,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgPoints": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 460,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 350,
"pointY": 460,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 350,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgContourData": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 460
},
{
"x": 350,
"y": 460
},
{
"x": 350,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0
]
},
"holes": [
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceA": [],
"holeListFaceB": [
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListThrough": [],
"holeListSide": [],
"models": [
{
"orderId": "",
"blockId": 0,
"modelId": 1,
"lineId": 1,
"face": 1,
"knifeName": "",
"knifeRadius": 3,
"depth": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 460
},
{
"x": 350,
"y": 460
},
{
"x": 350,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 460
},
{
"x": 350,
"y": 460
},
{
"x": 350,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 460
},
{
"x": 350,
"y": 460
},
{
"x": 350,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 460
},
{
"x": 350,
"y": 460
},
{
"x": 350,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
}
],
"realKnifeId": 1,
"isCncCanNotProcess": true,
"cncCanNotProcessType": "",
"isCutting": true,
"offsetList": [],
"VLines": [],
"offsetInfo": ""
}
],
"modelListThrough": [],
"modelListSide": [],
"thickness": 18,
"isUnRegular": true,
"bigHoleInFaceA": false,
"holeCountFront": 0,
"holeCountBack": 2,
"holeCountThrough": 0,
"holeCountSide": 0,
"holeCountLeft": 0,
"holeCountRight": 0,
"holeCountTop": 0,
"holeCountBottom": 0,
"holeCountBevelled": 0,
"modelCountFront": 1,
"modelCountBack": 1,
"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": 3,
"bottom": 3,
"width": 0,
"length": 6
},
"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": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 460
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 350,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 50
},
{
"m_StartPoint": {
"m_X": 350,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 350,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 350,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 350
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 460
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 350,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 50
},
{
"m_StartPoint": {
"m_X": 350,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 350,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 350,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 350
}
],
"borderPreMilling": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 460
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 350,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 50
},
{
"m_StartPoint": {
"m_X": 350,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 350,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 350,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 350
}
],
"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": 400,
"y": 0
},
"bul": 0
},
{
"pt": {
"x": 400,
"y": 460
},
"bul": 0
},
{
"pt": {
"x": 350,
"y": 460
},
"bul": 0
},
{
"pt": {
"x": 350,
"y": 600
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
},
"border": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 460
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 350,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 50
},
{
"m_StartPoint": {
"m_X": 350,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 350,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 350,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 350
}
],
"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": 300,
"y": -3
},
"bul": 0
},
{
"pt": {
"x": 320,
"y": -2.9999999999998863
},
"bul": 0
},
{
"pt": {
"x": 320,
"y": 603
},
"bul": 0
},
{
"pt": {
"x": 300,
"y": 602.9999999999999
},
"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": 92,
"y": -2.9999999999998863
},
"bul": 0
},
{
"pt": {
"x": 92,
"y": 603
},
"bul": 0
},
{
"pt": {
"x": 80,
"y": 602.9999999999999
},
"bul": 0
},
{
"pt": {
"x": 80,
"y": -3
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
}
],
"placeContours": [
{
"placeStyle": 4,
"borderFinal": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 50,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 350
},
{
"m_StartPoint": {
"m_X": 50,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 50,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 50,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 50
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 460
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 50,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 350
},
{
"m_StartPoint": {
"m_X": 50,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 50,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 50,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 50
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 460
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"border": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 50,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 350
},
{
"m_StartPoint": {
"m_X": 50,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 50,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 50,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 50
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 460
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"placeContours": []
}
]
},
"remarkParams": {}
},
"orderId": "1920739893772812288",
"goodsId": "SP202001031",
"roomId": 0,
"bodyId": 0,
"blockId": "1920739895526031360",
"oldBlockId": "1920739895526031360",
"blockNo": "250575324042",
"customPlateNo": "F003-R001-C001-P016",
"labelNo": "",
"blockName": "背板12-rec-w50-h140",
"plateRemark": "",
"remark1": "",
"remark2": "",
"remark3": "",
"remark4": "",
"remark5": "",
"extraRemark": {},
"width": 400,
"length": 600,
"thickness": 18,
"area": 0.24,
"sealLeft": 0,
"sealRight": 0,
"sealTop": 0,
"sealBottom": 0,
"cutWidth": 400,
"cutLength": 600,
"cutArea": 0.24,
"isAdditionalBlock": false,
"isRemainBlock": false,
"texture": 0,
"placeHole": 2,
"isUnRegular": true,
"isTurnFaceToPlace": true,
"isTwoFaceToPlace": false,
"isCurvedGroundLine": false,
"isPlaced": true,
"fullBoardId": 0,
"boardId": 2,
"placeId": 5,
"placeX": 409.015,
"placeY": 3.005,
"placeStyle": 4,
"cutRegion": 0,
"cutOrder": 9,
"cutPointId": 1,
"placeWidth": 400,
"placeLength": 600,
"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": [
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceB": [],
"modelListFaceA": [
{
"orderId": "",
"blockId": 0,
"modelId": 1,
"lineId": 1,
"face": 1,
"knifeName": "",
"knifeRadius": 3,
"depth": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 460
},
{
"x": 350,
"y": 460
},
{
"x": 350,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 460
},
{
"x": 350,
"y": 460
},
{
"x": 350,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"curve": 0
}
],
"realKnifeId": 1,
"isCncCanNotProcess": true,
"cncCanNotProcessType": "",
"isCutting": true,
"offsetList": [],
"VLines": [],
"offsetInfo": ""
}
],
"labelPosX": 401,
"labelPosY": -1,
"isCncLabelA": false,
"isCncLabelB": false,
"isCncLabelTurnOver": false,
"type": 2,
"openDoorType": 0,
"_blockId": "1920739895526031360"
},
{
"blockDetail": {
"organId": 0,
"blockId": "1920739895542808576",
"pointDetail": [],
"modelDetail": [],
"holeDetail": [],
"offsetX": 0,
"offsetY": 0,
"cutWidth": 400,
"cutLength": 600,
"points": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 270,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 270,
"pointY": 500,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 130,
"pointY": 500,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 130,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgPoints": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 270,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 270,
"pointY": 500,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 130,
"pointY": 500,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 130,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgContourData": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 600
},
{
"x": 270,
"y": 600
},
{
"x": 270,
"y": 500
},
{
"x": 130,
"y": 500
},
{
"x": 130,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0,
0,
0
]
},
"holes": [
{
"holeType": 40,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 40,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 40,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 40,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceA": [
{
"holeType": 40,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 40,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceB": [
{
"holeType": 40,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 40,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListThrough": [],
"holeListSide": [],
"models": [
{
"orderId": "",
"blockId": 0,
"modelId": 1,
"lineId": 1,
"face": 1,
"knifeName": "",
"knifeRadius": 3,
"depth": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 600
},
{
"x": 270,
"y": 600
},
{
"x": 270,
"y": 500
},
{
"x": 130,
"y": 500
},
{
"x": 130,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 600
},
{
"x": 270,
"y": 600
},
{
"x": 270,
"y": 500
},
{
"x": 130,
"y": 500
},
{
"x": 130,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 600
},
{
"x": 270,
"y": 600
},
{
"x": 270,
"y": 500
},
{
"x": 130,
"y": 500
},
{
"x": 130,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 600
},
{
"x": 270,
"y": 600
},
{
"x": 270,
"y": 500
},
{
"x": 130,
"y": 500
},
{
"x": 130,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
}
],
"realKnifeId": 1,
"isCncCanNotProcess": true,
"cncCanNotProcessType": "",
"isCutting": true,
"offsetList": [],
"VLines": [],
"offsetInfo": ""
}
],
"modelListThrough": [],
"modelListSide": [],
"thickness": 18,
"isUnRegular": true,
"bigHoleInFaceA": false,
"holeCountFront": 2,
"holeCountBack": 2,
"holeCountThrough": 0,
"holeCountSide": 0,
"holeCountLeft": 0,
"holeCountRight": 0,
"holeCountTop": 0,
"holeCountBottom": 0,
"holeCountBevelled": 0,
"modelCountFront": 1,
"modelCountBack": 1,
"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": 3,
"bottom": 3,
"width": 0,
"length": 6
},
"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": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
}
],
"borderPreMilling": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
}
],
"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": 400,
"y": 0
},
"bul": 0
},
{
"pt": {
"x": 400,
"y": 600
},
"bul": 0
},
{
"pt": {
"x": 270,
"y": 600
},
"bul": 0
},
{
"pt": {
"x": 270,
"y": 500
},
"bul": 0
},
{
"pt": {
"x": 130,
"y": 500
},
"bul": 0
},
{
"pt": {
"x": 130,
"y": 600
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
},
"border": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
}
],
"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": 300,
"y": -3
},
"bul": 0
},
{
"pt": {
"x": 320,
"y": -2.9999999999998863
},
"bul": 0
},
{
"pt": {
"x": 320,
"y": 603
},
"bul": 0
},
{
"pt": {
"x": 300,
"y": 602.9999999999999
},
"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": 92,
"y": -2.9999999999998863
},
"bul": 0
},
{
"pt": {
"x": 92,
"y": 603
},
"bul": 0
},
{
"pt": {
"x": 80,
"y": 602.9999999999999
},
"bul": 0
},
{
"pt": {
"x": 80,
"y": -3
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
}
],
"placeContours": [
{
"placeStyle": 4,
"borderFinal": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"border": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"placeContours": []
}
]
},
"remarkParams": {}
},
"orderId": "1920739893772812288",
"goodsId": "SP202001031",
"roomId": 0,
"bodyId": 0,
"blockId": "1920739895542808576",
"oldBlockId": "1920739895542808576",
"blockNo": "250575324043",
"customPlateNo": "F003-R001-C001-P006",
"labelNo": "",
"blockName": "背板14-rec-w140-h100",
"plateRemark": "",
"remark1": "",
"remark2": "",
"remark3": "",
"remark4": "",
"remark5": "",
"extraRemark": {},
"width": 400,
"length": 600,
"thickness": 18,
"area": 0.24,
"sealLeft": 0,
"sealRight": 0,
"sealTop": 0,
"sealBottom": 0,
"cutWidth": 400,
"cutLength": 600,
"cutArea": 0.24,
"isAdditionalBlock": false,
"isRemainBlock": false,
"texture": 0,
"placeHole": 2,
"isUnRegular": true,
"isTurnFaceToPlace": true,
"isTwoFaceToPlace": false,
"isCurvedGroundLine": false,
"isPlaced": true,
"fullBoardId": 0,
"boardId": 2,
"placeId": 6,
"placeX": 815.025,
"placeY": 3.005,
"placeStyle": 4,
"cutRegion": 0,
"cutOrder": 4,
"cutPointId": 6,
"placeWidth": 400,
"placeLength": 600,
"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": [
{
"holeType": 40,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 40,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceB": [
{
"holeType": 40,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 40,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"modelListFaceA": [
{
"orderId": "",
"blockId": 0,
"modelId": 1,
"lineId": 1,
"face": 1,
"knifeName": "",
"knifeRadius": 3,
"depth": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 600
},
{
"x": 270,
"y": 600
},
{
"x": 270,
"y": 500
},
{
"x": 130,
"y": 500
},
{
"x": 130,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 600
},
{
"x": 270,
"y": 600
},
{
"x": 270,
"y": 500
},
{
"x": 130,
"y": 500
},
{
"x": 130,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"curve": 0
}
],
"realKnifeId": 1,
"isCncCanNotProcess": true,
"cncCanNotProcessType": "",
"isCutting": true,
"offsetList": [],
"VLines": [],
"offsetInfo": ""
}
],
"labelPosX": 401,
"labelPosY": -1,
"isCncLabelA": false,
"isCncLabelB": false,
"isCncLabelTurnOver": false,
"type": 2,
"openDoorType": 0,
"_blockId": "1920739895542808576"
},
{
"blockDetail": {
"organId": 0,
"blockId": "1920739895580557312",
"pointDetail": [],
"modelDetail": [],
"holeDetail": [],
"offsetX": 0,
"offsetY": 0,
"cutWidth": 400,
"cutLength": 600,
"points": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 580,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 380,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgPoints": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 580,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 380,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgContourData": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 580
},
{
"x": 380,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0
]
},
"holes": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceA": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceB": [],
"holeListThrough": [],
"holeListSide": [],
"models": [
{
"orderId": "",
"blockId": 0,
"modelId": 1,
"lineId": 1,
"face": 1,
"knifeName": "",
"knifeRadius": 3,
"depth": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 580
},
{
"x": 380,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 580
},
{
"x": 380,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 580
},
{
"x": 380,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 580
},
{
"x": 380,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
}
],
"realKnifeId": 1,
"isCncCanNotProcess": true,
"cncCanNotProcessType": "",
"isCutting": true,
"offsetList": [],
"VLines": [],
"offsetInfo": ""
}
],
"modelListThrough": [],
"modelListSide": [],
"thickness": 18,
"isUnRegular": true,
"bigHoleInFaceA": false,
"holeCountFront": 2,
"holeCountBack": 0,
"holeCountThrough": 0,
"holeCountSide": 0,
"holeCountLeft": 0,
"holeCountRight": 0,
"holeCountTop": 0,
"holeCountBottom": 0,
"holeCountBevelled": 0,
"modelCountFront": 1,
"modelCountBack": 1,
"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": 3,
"bottom": 3,
"width": 0,
"length": 6
},
"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": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 28.284271247461902
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 28.284271247461902
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
}
],
"borderPreMilling": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 28.284271247461902
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
}
],
"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": 400,
"y": 0
},
"bul": 0
},
{
"pt": {
"x": 400,
"y": 580
},
"bul": 0
},
{
"pt": {
"x": 380,
"y": 600
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
},
"border": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 28.284271247461902
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
}
],
"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": 300,
"y": -3
},
"bul": 0
},
{
"pt": {
"x": 320,
"y": -2.9999999999998863
},
"bul": 0
},
{
"pt": {
"x": 320,
"y": 603
},
"bul": 0
},
{
"pt": {
"x": 300,
"y": 602.9999999999999
},
"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": 92,
"y": -2.9999999999998863
},
"bul": 0
},
{
"pt": {
"x": 92,
"y": 603
},
"bul": 0
},
{
"pt": {
"x": 80,
"y": 602.9999999999999
},
"bul": 0
},
{
"pt": {
"x": 80,
"y": -3
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
}
],
"placeContours": [
{
"placeStyle": 4,
"borderFinal": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 28.284271247461902
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 28.284271247461902
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"border": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 28.284271247461902
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"placeContours": []
}
]
},
"remarkParams": {}
},
"orderId": "1920739893772812288",
"goodsId": "SP202001031",
"roomId": 0,
"bodyId": 0,
"blockId": "1920739895580557312",
"oldBlockId": "1920739895580557312",
"blockNo": "250575324045",
"customPlateNo": "F003-R001-C001-P010",
"labelNo": "",
"blockName": "背板8-cha-w20-h20",
"plateRemark": "",
"remark1": "",
"remark2": "",
"remark3": "",
"remark4": "",
"remark5": "",
"extraRemark": {},
"width": 400,
"length": 600,
"thickness": 18,
"area": 0.24,
"sealLeft": 0,
"sealRight": 0,
"sealTop": 0,
"sealBottom": 0,
"cutWidth": 400,
"cutLength": 600,
"cutArea": 0.24,
"isAdditionalBlock": false,
"isRemainBlock": false,
"texture": 0,
"placeHole": 2,
"isUnRegular": true,
"isTurnFaceToPlace": true,
"isTwoFaceToPlace": false,
"isCurvedGroundLine": false,
"isPlaced": true,
"fullBoardId": 0,
"boardId": 2,
"placeId": 7,
"placeX": 409.015,
"placeY": 609.015,
"placeStyle": 4,
"cutRegion": 0,
"cutOrder": 10,
"cutPointId": 1,
"placeWidth": 400,
"placeLength": 600,
"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": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"modelListFaceA": [
{
"orderId": "",
"blockId": 0,
"modelId": 1,
"lineId": 1,
"face": 1,
"knifeName": "",
"knifeRadius": 3,
"depth": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 580
},
{
"x": 380,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 580
},
{
"x": 380,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"curve": 0
}
],
"realKnifeId": 1,
"isCncCanNotProcess": true,
"cncCanNotProcessType": "",
"isCutting": true,
"offsetList": [],
"VLines": [],
"offsetInfo": ""
}
],
"labelPosX": 401,
"labelPosY": -1,
"isCncLabelA": false,
"isCncLabelB": false,
"isCncLabelTurnOver": false,
"type": 2,
"openDoorType": 0,
"_blockId": "1920739895580557312"
},
{
"blockDetail": {
"organId": 0,
"blockId": "1920739895618306048",
"pointDetail": [],
"modelDetail": [],
"holeDetail": [],
"offsetX": 0,
"offsetY": 0,
"cutWidth": 400,
"cutLength": 600,
"points": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 470,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 320,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgPoints": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 470,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 320,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgContourData": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 470
},
{
"x": 320,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0
]
},
"holes": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceA": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceB": [],
"holeListThrough": [],
"holeListSide": [],
"models": [
{
"orderId": "",
"blockId": 0,
"modelId": 1,
"lineId": 1,
"face": 1,
"knifeName": "",
"knifeRadius": 3,
"depth": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 470
},
{
"x": 320,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 470
},
{
"x": 320,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 470
},
{
"x": 320,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 470
},
{
"x": 320,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
}
],
"realKnifeId": 1,
"isCncCanNotProcess": true,
"cncCanNotProcessType": "",
"isCutting": true,
"offsetList": [],
"VLines": [],
"offsetInfo": ""
}
],
"modelListThrough": [],
"modelListSide": [],
"thickness": 18,
"isUnRegular": true,
"bigHoleInFaceA": false,
"holeCountFront": 2,
"holeCountBack": 0,
"holeCountThrough": 0,
"holeCountSide": 0,
"holeCountLeft": 0,
"holeCountRight": 0,
"holeCountTop": 0,
"holeCountBottom": 0,
"holeCountBevelled": 0,
"modelCountFront": 1,
"modelCountBack": 1,
"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": 3,
"bottom": 3,
"width": 0,
"length": 6
},
"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": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 470
},
"tagData": 0,
"tagData2": 0,
"m_Length": 470
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 470
},
"m_EndPoint": {
"m_X": 320,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 152.64337522473747
},
{
"m_StartPoint": {
"m_X": 320,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 470
},
"tagData": 0,
"tagData2": 0,
"m_Length": 470
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 470
},
"m_EndPoint": {
"m_X": 320,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 152.64337522473747
},
{
"m_StartPoint": {
"m_X": 320,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
}
],
"borderPreMilling": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 470
},
"tagData": 0,
"tagData2": 0,
"m_Length": 470
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 470
},
"m_EndPoint": {
"m_X": 320,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 152.64337522473747
},
{
"m_StartPoint": {
"m_X": 320,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
}
],
"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": 400,
"y": 0
},
"bul": 0
},
{
"pt": {
"x": 400,
"y": 470
},
"bul": 0
},
{
"pt": {
"x": 320,
"y": 600
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
},
"border": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 470
},
"tagData": 0,
"tagData2": 0,
"m_Length": 470
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 470
},
"m_EndPoint": {
"m_X": 320,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 152.64337522473747
},
{
"m_StartPoint": {
"m_X": 320,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
}
],
"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": 300,
"y": -3
},
"bul": 0
},
{
"pt": {
"x": 320,
"y": -2.9999999999998863
},
"bul": 0
},
{
"pt": {
"x": 320,
"y": 603
},
"bul": 0
},
{
"pt": {
"x": 300,
"y": 602.9999999999999
},
"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": 92,
"y": -2.9999999999998863
},
"bul": 0
},
{
"pt": {
"x": 92,
"y": 603
},
"bul": 0
},
{
"pt": {
"x": 80,
"y": 602.9999999999999
},
"bul": 0
},
{
"pt": {
"x": 80,
"y": -3
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
}
],
"placeContours": [
{
"placeStyle": 4,
"borderFinal": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 80,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
},
{
"m_StartPoint": {
"m_X": 80,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 470
},
"tagData": 0,
"tagData2": 0,
"m_Length": 152.64337522473747
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 470
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 470
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 80,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
},
{
"m_StartPoint": {
"m_X": 80,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 470
},
"tagData": 0,
"tagData2": 0,
"m_Length": 152.64337522473747
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 470
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 470
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"border": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 80,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
},
{
"m_StartPoint": {
"m_X": 80,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 470
},
"tagData": 0,
"tagData2": 0,
"m_Length": 152.64337522473747
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 470
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 470
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"placeContours": []
}
]
},
"remarkParams": {}
},
"orderId": "1920739893772812288",
"goodsId": "SP202001031",
"roomId": 0,
"bodyId": 0,
"blockId": "1920739895618306048",
"oldBlockId": "1920739895618306048",
"blockNo": "250575324047",
"customPlateNo": "F003-R001-C001-P002",
"labelNo": "",
"blockName": "背板16-cha-w80-h130",
"plateRemark": "",
"remark1": "",
"remark2": "",
"remark3": "",
"remark4": "",
"remark5": "",
"extraRemark": {},
"width": 400,
"length": 600,
"thickness": 18,
"area": 0.24,
"sealLeft": 0,
"sealRight": 0,
"sealTop": 0,
"sealBottom": 0,
"cutWidth": 400,
"cutLength": 600,
"cutArea": 0.24,
"isAdditionalBlock": false,
"isRemainBlock": false,
"texture": 0,
"placeHole": 2,
"isUnRegular": true,
"isTurnFaceToPlace": true,
"isTwoFaceToPlace": false,
"isCurvedGroundLine": false,
"isPlaced": true,
"fullBoardId": 0,
"boardId": 2,
"placeId": 8,
"placeX": 409.015,
"placeY": 1215.025,
"placeStyle": 4,
"cutRegion": 0,
"cutOrder": 12,
"cutPointId": 3,
"placeWidth": 400,
"placeLength": 600,
"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": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"modelListFaceA": [
{
"orderId": "",
"blockId": 0,
"modelId": 1,
"lineId": 1,
"face": 1,
"knifeName": "",
"knifeRadius": 3,
"depth": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 320,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 300,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 470
},
{
"x": 320,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 317,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 303,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 6,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 311,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 594,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 309,
"pointY": 6,
"radius": 0,
"depth": 12,
"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": 12,
"canSpace": false,
"isRect": false,
"isTilt": false,
"type": "",
"knife": null,
"modelWidth": 0,
"modelLength": 0,
"modelStartPoint": null,
"modelEndPoint": null,
"originModeling": {
"knifeRadius": 3,
"thickness": 12,
"dir": 0,
"outline": [
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 80.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 0,
"z": 0
},
"buls": 0,
"radius": null
},
{
"pts": {
"x": 92.00000000000182,
"y": 600,
"z": 0
},
"buls": 0,
"radius": null
}
],
"holes": [],
"addLen": 0,
"addWidth": 0,
"addDepth": 0,
"brThickness": 18,
"boardContour": {
"pts": [
{
"x": 0,
"y": 0
},
{
"x": 400,
"y": 0
},
{
"x": 400,
"y": 470
},
{
"x": 320,
"y": 600
},
{
"x": 0,
"y": 600
}
],
"buls": [
0,
0,
0,
0,
0
]
}
},
"pointList": [
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": null,
"depth": null,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": null,
"depth": null,
"curve": 0
}
],
"realKnifeRadius": 3,
"realPointList": [
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 600,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 89,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 83,
"pointY": 0,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 3,
"radius": 0,
"depth": 12,
"curve": 0
},
{
"pointX": 86,
"pointY": 597,
"radius": 0,
"depth": 12,
"curve": 0
}
],
"realKnifeId": 1,
"isCncCanNotProcess": true,
"cncCanNotProcessType": "",
"isCutting": true,
"offsetList": [],
"VLines": [],
"offsetInfo": ""
}
],
"labelPosX": 401,
"labelPosY": -1,
"isCncLabelA": false,
"isCncLabelB": false,
"isCncLabelTurnOver": false,
"type": 2,
"openDoorType": 0,
"_blockId": "1920739895618306048"
},
{
"blockDetail": {
"organId": 0,
"blockId": "1920739895333093376",
"pointDetail": [],
"modelDetail": [],
"holeDetail": [],
"offsetX": 0,
"offsetY": 0,
"cutWidth": 400,
"cutLength": 600,
"points": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 580,
"curve": 0.41421356237309503,
"radius": 20.000000000000004,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 380,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgPoints": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 580,
"curve": 0.41421356237309503,
"radius": 20.000000000000004,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 380,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgContourData": null,
"holes": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceA": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceB": [],
"holeListThrough": [],
"holeListSide": [],
"models": [],
"modelListFaceA": [],
"modelListFaceB": [],
"modelListThrough": [],
"modelListSide": [],
"thickness": 18,
"isUnRegular": true,
"bigHoleInFaceA": false,
"holeCountFront": 2,
"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": 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": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 380,
"m_Y": 580
},
"m_Radius": 20.000000000000004,
"m_StartAngle": 0,
"m_EndAngle": 1.5707963267948966,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 380,
"m_Y": 580
},
"m_Radius": 20.000000000000004,
"m_StartAngle": 0,
"m_EndAngle": 1.5707963267948966,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
}
],
"borderPreMilling": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 380,
"m_Y": 580
},
"m_Radius": 20.000000000000004,
"m_StartAngle": 0,
"m_EndAngle": 1.5707963267948966,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
}
],
"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": 400,
"y": 0
},
"bul": 0
},
{
"pt": {
"x": 400,
"y": 580
},
"bul": 0.41421356237309503
},
{
"pt": {
"x": 380,
"y": 600
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
},
"border": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 380,
"m_Y": 580
},
"m_Radius": 20.000000000000004,
"m_StartAngle": 0,
"m_EndAngle": 1.5707963267948966,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
}
],
"borderModelThrough": [],
"borderModelThroughR": [],
"cutLinesModelThrough": [],
"borderInnerPlace": [],
"blockInnerSpace": [],
"polylines2vModel": [],
"polylinesOutModel": [],
"placeContours": [
{
"placeStyle": 4,
"borderFinal": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 20,
"m_Y": 580
},
"m_Radius": 20.000000000000004,
"m_StartAngle": 1.5707963267948966,
"m_EndAngle": 3.141592653589793,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 20,
"m_Y": 580
},
"m_Radius": 20.000000000000004,
"m_StartAngle": 1.5707963267948966,
"m_EndAngle": 3.141592653589793,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"border": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 20,
"m_Y": 580
},
"m_Radius": 20.000000000000004,
"m_StartAngle": 1.5707963267948966,
"m_EndAngle": 3.141592653589793,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"placeContours": []
}
]
},
"remarkParams": {}
},
"orderId": "1920739893772812288",
"goodsId": "SP202001031",
"roomId": 0,
"bodyId": 0,
"blockId": "1920739895333093376",
"oldBlockId": "1920739895333093376",
"blockNo": "250575324032",
"customPlateNo": "F003-R001-C001-P005",
"labelNo": "",
"blockName": "背板1-R20",
"plateRemark": "",
"remark1": "",
"remark2": "",
"remark3": "",
"remark4": "",
"remark5": "",
"extraRemark": {},
"width": 400,
"length": 600,
"thickness": 18,
"area": 0.24,
"sealLeft": 0,
"sealRight": 0,
"sealTop": 0,
"sealBottom": 0,
"cutWidth": 400,
"cutLength": 600,
"cutArea": 0.24,
"isAdditionalBlock": false,
"isRemainBlock": false,
"texture": 0,
"placeHole": 2,
"isUnRegular": true,
"isTurnFaceToPlace": true,
"isTwoFaceToPlace": false,
"isCurvedGroundLine": false,
"isPlaced": true,
"fullBoardId": 0,
"boardId": 2,
"placeId": 9,
"placeX": 409.015,
"placeY": 1821.035,
"placeStyle": 4,
"cutRegion": 0,
"cutOrder": 11,
"cutPointId": 3,
"placeWidth": 400,
"placeLength": 600,
"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": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"modelListFaceA": [],
"modelListFaceB": [],
"labelPosX": 401,
"labelPosY": -1,
"isCncLabelA": false,
"isCncLabelB": false,
"isCncLabelTurnOver": false,
"type": 2,
"openDoorType": 0,
"_blockId": "1920739895333093376"
},
{
"blockDetail": {
"organId": 0,
"blockId": "1920739895354064896",
"pointDetail": [],
"modelDetail": [],
"holeDetail": [],
"offsetX": 0,
"offsetY": 0,
"cutWidth": 400,
"cutLength": 600,
"points": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 560,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 380,
"pointY": 560,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 380,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgPoints": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 560,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 380,
"pointY": 560,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 380,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgContourData": null,
"holes": [
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceA": [],
"holeListFaceB": [
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListThrough": [],
"holeListSide": [],
"models": [],
"modelListFaceA": [],
"modelListFaceB": [],
"modelListThrough": [],
"modelListSide": [],
"thickness": 18,
"isUnRegular": true,
"bigHoleInFaceA": false,
"holeCountFront": 0,
"holeCountBack": 2,
"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": 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": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 560
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 560
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
}
],
"borderPreMilling": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 560
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
}
],
"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": 400,
"y": 0
},
"bul": 0
},
{
"pt": {
"x": 400,
"y": 560
},
"bul": 0
},
{
"pt": {
"x": 380,
"y": 560
},
"bul": 0
},
{
"pt": {
"x": 380,
"y": 600
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
},
"border": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 560
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
}
],
"borderModelThrough": [],
"borderModelThroughR": [],
"cutLinesModelThrough": [],
"borderInnerPlace": [],
"blockInnerSpace": [],
"polylines2vModel": [],
"polylinesOutModel": [],
"placeContours": [
{
"placeStyle": 4,
"borderFinal": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 560
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 560
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"border": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 560
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 560
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 560
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"placeContours": []
}
]
},
"remarkParams": {}
},
"orderId": "1920739893772812288",
"goodsId": "SP202001031",
"roomId": 0,
"bodyId": 0,
"blockId": "1920739895354064896",
"oldBlockId": "1920739895354064896",
"blockNo": "250575324033",
"customPlateNo": "F003-R001-C001-P007",
"labelNo": "",
"blockName": "背板3-rec-w20-h40",
"plateRemark": "",
"remark1": "",
"remark2": "",
"remark3": "",
"remark4": "",
"remark5": "",
"extraRemark": {},
"width": 400,
"length": 600,
"thickness": 18,
"area": 0.24,
"sealLeft": 0,
"sealRight": 0,
"sealTop": 0,
"sealBottom": 0,
"cutWidth": 400,
"cutLength": 600,
"cutArea": 0.24,
"isAdditionalBlock": false,
"isRemainBlock": false,
"texture": 0,
"placeHole": 2,
"isUnRegular": true,
"isTurnFaceToPlace": true,
"isTwoFaceToPlace": false,
"isCurvedGroundLine": false,
"isPlaced": true,
"fullBoardId": 0,
"boardId": 2,
"placeId": 10,
"placeX": 815.025,
"placeY": 609.015,
"placeStyle": 4,
"cutRegion": 0,
"cutOrder": 3,
"cutPointId": 4,
"placeWidth": 400,
"placeLength": 600,
"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": [
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceB": [],
"modelListFaceA": [],
"modelListFaceB": [],
"labelPosX": 401,
"labelPosY": -1,
"isCncLabelA": false,
"isCncLabelB": false,
"isCncLabelTurnOver": false,
"type": 2,
"openDoorType": 0,
"_blockId": "1920739895354064896"
},
{
"blockDetail": {
"organId": 0,
"blockId": "1920739895375036416",
"pointDetail": [],
"modelDetail": [],
"holeDetail": [],
"offsetX": 0,
"offsetY": 0,
"cutWidth": 400,
"cutLength": 600,
"points": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 220,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 220,
"pointY": 580,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 180,
"pointY": 580,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 180,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgPoints": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 220,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 220,
"pointY": 580,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 180,
"pointY": 580,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 180,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgContourData": null,
"holes": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 391,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 391,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceA": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceB": [
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 391,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 391,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListThrough": [],
"holeListSide": [],
"models": [],
"modelListFaceA": [],
"modelListFaceB": [],
"modelListThrough": [],
"modelListSide": [],
"thickness": 18,
"isUnRegular": true,
"bigHoleInFaceA": false,
"holeCountFront": 2,
"holeCountBack": 2,
"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": 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": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
}
],
"borderPreMilling": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
}
],
"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": 400,
"y": 0
},
"bul": 0
},
{
"pt": {
"x": 400,
"y": 600
},
"bul": 0
},
{
"pt": {
"x": 220,
"y": 600
},
"bul": 0
},
{
"pt": {
"x": 220,
"y": 580
},
"bul": 0
},
{
"pt": {
"x": 180,
"y": 580
},
"bul": 0
},
{
"pt": {
"x": 180,
"y": 600
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
},
"border": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
}
],
"borderModelThrough": [],
"borderModelThroughR": [],
"cutLinesModelThrough": [],
"borderInnerPlace": [],
"blockInnerSpace": [],
"polylines2vModel": [],
"polylinesOutModel": [],
"placeContours": [
{
"placeStyle": 4,
"borderFinal": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"border": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 220,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 220,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 40
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 180,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 20
},
{
"m_StartPoint": {
"m_X": 180,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 180
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"placeContours": []
}
]
},
"remarkParams": {}
},
"orderId": "1920739893772812288",
"goodsId": "SP202001031",
"roomId": 0,
"bodyId": 0,
"blockId": "1920739895375036416",
"oldBlockId": "1920739895375036416",
"blockNo": "250575324034",
"customPlateNo": "F003-R001-C001-P009",
"labelNo": "",
"blockName": "背板5-rec-w40-h20",
"plateRemark": "",
"remark1": "",
"remark2": "",
"remark3": "",
"remark4": "",
"remark5": "",
"extraRemark": {},
"width": 400,
"length": 600,
"thickness": 18,
"area": 0.24,
"sealLeft": 0,
"sealRight": 0,
"sealTop": 0,
"sealBottom": 0,
"cutWidth": 400,
"cutLength": 600,
"cutArea": 0.24,
"isAdditionalBlock": false,
"isRemainBlock": false,
"texture": 0,
"placeHole": 2,
"isUnRegular": true,
"isTurnFaceToPlace": true,
"isTwoFaceToPlace": false,
"isCurvedGroundLine": false,
"isPlaced": true,
"fullBoardId": 0,
"boardId": 2,
"placeId": 11,
"placeX": 815.025,
"placeY": 1215.025,
"placeStyle": 4,
"cutRegion": 0,
"cutOrder": 2,
"cutPointId": 6,
"placeWidth": 400,
"placeLength": 600,
"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": [
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 391,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 391,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceB": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"modelListFaceA": [],
"modelListFaceB": [],
"labelPosX": 401,
"labelPosY": -1,
"isCncLabelA": false,
"isCncLabelB": false,
"isCncLabelTurnOver": false,
"type": 2,
"openDoorType": 0,
"_blockId": "1920739895375036416"
},
{
"blockDetail": {
"organId": 0,
"blockId": "1920739895450533888",
"pointDetail": [],
"modelDetail": [],
"holeDetail": [],
"offsetX": 0,
"offsetY": 0,
"cutWidth": 400,
"cutLength": 600,
"points": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 520,
"curve": 0.41421356237309503,
"radius": 80.00000000000001,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 320,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgPoints": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 520,
"curve": 0.41421356237309503,
"radius": 80.00000000000001,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 320,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgContourData": null,
"holes": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceA": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceB": [],
"holeListThrough": [],
"holeListSide": [],
"models": [],
"modelListFaceA": [],
"modelListFaceB": [],
"modelListThrough": [],
"modelListSide": [],
"thickness": 18,
"isUnRegular": true,
"bigHoleInFaceA": false,
"holeCountFront": 2,
"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": 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": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 520
},
"tagData": 0,
"tagData2": 0,
"m_Length": 520
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 520
},
"m_EndPoint": {
"m_X": 320,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 320,
"m_Y": 520
},
"m_Radius": 80.00000000000001,
"m_StartAngle": 0,
"m_EndAngle": 1.5707963267948966,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 320,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 520
},
"tagData": 0,
"tagData2": 0,
"m_Length": 520
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 520
},
"m_EndPoint": {
"m_X": 320,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 320,
"m_Y": 520
},
"m_Radius": 80.00000000000001,
"m_StartAngle": 0,
"m_EndAngle": 1.5707963267948966,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 320,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
}
],
"borderPreMilling": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 520
},
"tagData": 0,
"tagData2": 0,
"m_Length": 520
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 520
},
"m_EndPoint": {
"m_X": 320,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 320,
"m_Y": 520
},
"m_Radius": 80.00000000000001,
"m_StartAngle": 0,
"m_EndAngle": 1.5707963267948966,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 320,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
}
],
"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": 400,
"y": 0
},
"bul": 0
},
{
"pt": {
"x": 400,
"y": 520
},
"bul": 0.41421356237309503
},
{
"pt": {
"x": 320,
"y": 600
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
},
"border": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 520
},
"tagData": 0,
"tagData2": 0,
"m_Length": 520
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 520
},
"m_EndPoint": {
"m_X": 320,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 320,
"m_Y": 520
},
"m_Radius": 80.00000000000001,
"m_StartAngle": 0,
"m_EndAngle": 1.5707963267948966,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 320,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
}
],
"borderModelThrough": [],
"borderModelThroughR": [],
"cutLinesModelThrough": [],
"borderInnerPlace": [],
"blockInnerSpace": [],
"polylines2vModel": [],
"polylinesOutModel": [],
"placeContours": [
{
"placeStyle": 4,
"borderFinal": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 80,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
},
{
"m_StartPoint": {
"m_X": 80,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 520
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 80,
"m_Y": 520
},
"m_Radius": 80.00000000000001,
"m_StartAngle": 1.5707963267948966,
"m_EndAngle": 3.141592653589793,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 520
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 520
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 80,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
},
{
"m_StartPoint": {
"m_X": 80,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 520
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 80,
"m_Y": 520
},
"m_Radius": 80.00000000000001,
"m_StartAngle": 1.5707963267948966,
"m_EndAngle": 3.141592653589793,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 520
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 520
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"border": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 80,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
},
{
"m_StartPoint": {
"m_X": 80,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 520
},
"tagData": 0,
"tagData2": 0,
"m_Center": {
"m_X": 80,
"m_Y": 520
},
"m_Radius": 80.00000000000001,
"m_StartAngle": 1.5707963267948966,
"m_EndAngle": 3.141592653589793,
"m_AllAngle": 1.5707963267948966,
"m_Bul": 0.41421356237309503
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 520
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 520
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"placeContours": []
}
]
},
"remarkParams": {}
},
"orderId": "1920739893772812288",
"goodsId": "SP202001031",
"roomId": 0,
"bodyId": 0,
"blockId": "1920739895450533888",
"oldBlockId": "1920739895450533888",
"blockNo": "250575324038",
"customPlateNo": "F003-R001-C001-P004",
"labelNo": "",
"blockName": "背板9-R80",
"plateRemark": "",
"remark1": "",
"remark2": "",
"remark3": "",
"remark4": "",
"remark5": "",
"extraRemark": {},
"width": 400,
"length": 600,
"thickness": 18,
"area": 0.24,
"sealLeft": 0,
"sealRight": 0,
"sealTop": 0,
"sealBottom": 0,
"cutWidth": 400,
"cutLength": 600,
"cutArea": 0.24,
"isAdditionalBlock": false,
"isRemainBlock": false,
"texture": 0,
"placeHole": 2,
"isUnRegular": true,
"isTurnFaceToPlace": true,
"isTwoFaceToPlace": false,
"isCurvedGroundLine": false,
"isPlaced": true,
"fullBoardId": 0,
"boardId": 2,
"placeId": 12,
"placeX": 815.025,
"placeY": 1821.035,
"placeStyle": 4,
"cutRegion": 0,
"cutOrder": 1,
"cutPointId": 0,
"placeWidth": 400,
"placeLength": 600,
"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": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"modelListFaceA": [],
"modelListFaceB": [],
"labelPosX": 401,
"labelPosY": -1,
"isCncLabelA": false,
"isCncLabelB": false,
"isCncLabelTurnOver": false,
"type": 2,
"openDoorType": 0,
"_blockId": "1920739895450533888"
},
{
"blockDetail": {
"organId": 0,
"blockId": "1920739895467311104",
"pointDetail": [],
"modelDetail": [],
"holeDetail": [],
"offsetX": 0,
"offsetY": 0,
"cutWidth": 400,
"cutLength": 600,
"points": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 460,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 350,
"pointY": 460,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 350,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgPoints": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 460,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 350,
"pointY": 460,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 350,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgContourData": null,
"holes": [
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceA": [],
"holeListFaceB": [
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListThrough": [],
"holeListSide": [],
"models": [],
"modelListFaceA": [],
"modelListFaceB": [],
"modelListThrough": [],
"modelListSide": [],
"thickness": 18,
"isUnRegular": true,
"bigHoleInFaceA": false,
"holeCountFront": 0,
"holeCountBack": 2,
"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": 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": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 460
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 350,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 50
},
{
"m_StartPoint": {
"m_X": 350,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 350,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 350,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 350
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 460
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 350,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 50
},
{
"m_StartPoint": {
"m_X": 350,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 350,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 350,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 350
}
],
"borderPreMilling": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 460
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 350,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 50
},
{
"m_StartPoint": {
"m_X": 350,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 350,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 350,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 350
}
],
"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": 400,
"y": 0
},
"bul": 0
},
{
"pt": {
"x": 400,
"y": 460
},
"bul": 0
},
{
"pt": {
"x": 350,
"y": 460
},
"bul": 0
},
{
"pt": {
"x": 350,
"y": 600
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
},
"border": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 460
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 350,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 50
},
{
"m_StartPoint": {
"m_X": 350,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 350,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 350,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 350
}
],
"borderModelThrough": [],
"borderModelThroughR": [],
"cutLinesModelThrough": [],
"borderInnerPlace": [],
"blockInnerSpace": [],
"polylines2vModel": [],
"polylinesOutModel": [],
"placeContours": [
{
"placeStyle": 4,
"borderFinal": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 50,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 350
},
{
"m_StartPoint": {
"m_X": 50,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 50,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 50,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 50
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 460
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 50,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 350
},
{
"m_StartPoint": {
"m_X": 50,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 50,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 50,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 50
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 460
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"border": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 50,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 350
},
{
"m_StartPoint": {
"m_X": 50,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 50,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 50,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 460
},
"tagData": 0,
"tagData2": 0,
"m_Length": 50
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 460
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 460
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"placeContours": []
}
]
},
"remarkParams": {}
},
"orderId": "1920739893772812288",
"goodsId": "SP202001031",
"roomId": 0,
"bodyId": 0,
"blockId": "1920739895467311104",
"oldBlockId": "1920739895467311104",
"blockNo": "250575324039",
"customPlateNo": "F003-R001-C001-P013",
"labelNo": "",
"blockName": "背板11-rec-w50-h140",
"plateRemark": "",
"remark1": "",
"remark2": "",
"remark3": "",
"remark4": "",
"remark5": "",
"extraRemark": {},
"width": 400,
"length": 600,
"thickness": 18,
"area": 0.24,
"sealLeft": 0,
"sealRight": 0,
"sealTop": 0,
"sealBottom": 0,
"cutWidth": 400,
"cutLength": 600,
"cutArea": 0.24,
"isAdditionalBlock": false,
"isRemainBlock": false,
"texture": 0,
"placeHole": 2,
"isUnRegular": true,
"isTurnFaceToPlace": true,
"isTwoFaceToPlace": false,
"isCurvedGroundLine": false,
"isPlaced": true,
"fullBoardId": 0,
"boardId": 3,
"placeId": 1,
"placeX": 3.005,
"placeY": 3.005,
"placeStyle": 4,
"cutRegion": 0,
"cutOrder": 0,
"cutPointId": 1,
"placeWidth": 400,
"placeLength": 600,
"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": [
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceB": [],
"modelListFaceA": [],
"modelListFaceB": [],
"labelPosX": 401,
"labelPosY": -1,
"isCncLabelA": false,
"isCncLabelB": false,
"isCncLabelTurnOver": false,
"type": 2,
"openDoorType": 0,
"_blockId": "1920739895467311104"
},
{
"blockDetail": {
"organId": 0,
"blockId": "1920739895488282624",
"pointDetail": [],
"modelDetail": [],
"holeDetail": [],
"offsetX": 0,
"offsetY": 0,
"cutWidth": 400,
"cutLength": 600,
"points": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 270,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 270,
"pointY": 500,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 130,
"pointY": 500,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 130,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgPoints": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 270,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 270,
"pointY": 500,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 130,
"pointY": 500,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 130,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgContourData": null,
"holes": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 391,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 391,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceA": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceB": [
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 391,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 391,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListThrough": [],
"holeListSide": [],
"models": [],
"modelListFaceA": [],
"modelListFaceB": [],
"modelListThrough": [],
"modelListSide": [],
"thickness": 18,
"isUnRegular": true,
"bigHoleInFaceA": false,
"holeCountFront": 2,
"holeCountBack": 2,
"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": 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": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
}
],
"borderPreMilling": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
}
],
"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": 400,
"y": 0
},
"bul": 0
},
{
"pt": {
"x": 400,
"y": 600
},
"bul": 0
},
{
"pt": {
"x": 270,
"y": 600
},
"bul": 0
},
{
"pt": {
"x": 270,
"y": 500
},
"bul": 0
},
{
"pt": {
"x": 130,
"y": 500
},
"bul": 0
},
{
"pt": {
"x": 130,
"y": 600
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
},
"border": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
}
],
"borderModelThrough": [],
"borderModelThroughR": [],
"cutLinesModelThrough": [],
"borderInnerPlace": [],
"blockInnerSpace": [],
"polylines2vModel": [],
"polylinesOutModel": [],
"placeContours": [
{
"placeStyle": 4,
"borderFinal": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"border": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 270,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 270,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 500
},
"tagData": 0,
"tagData2": 0,
"m_Length": 140
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 500
},
"m_EndPoint": {
"m_X": 130,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 100
},
{
"m_StartPoint": {
"m_X": 130,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 130
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"placeContours": []
}
]
},
"remarkParams": {}
},
"orderId": "1920739893772812288",
"goodsId": "SP202001031",
"roomId": 0,
"bodyId": 0,
"blockId": "1920739895488282624",
"oldBlockId": "1920739895488282624",
"blockNo": "250575324040",
"customPlateNo": "F003-R001-C001-P014",
"labelNo": "",
"blockName": "背板13-rec-w140-h100",
"plateRemark": "",
"remark1": "",
"remark2": "",
"remark3": "",
"remark4": "",
"remark5": "",
"extraRemark": {},
"width": 400,
"length": 600,
"thickness": 18,
"area": 0.24,
"sealLeft": 0,
"sealRight": 0,
"sealTop": 0,
"sealBottom": 0,
"cutWidth": 400,
"cutLength": 600,
"cutArea": 0.24,
"isAdditionalBlock": false,
"isRemainBlock": false,
"texture": 0,
"placeHole": 2,
"isUnRegular": true,
"isTurnFaceToPlace": true,
"isTwoFaceToPlace": false,
"isCurvedGroundLine": false,
"isPlaced": true,
"fullBoardId": 0,
"boardId": 3,
"placeId": 2,
"placeX": 3.005,
"placeY": 609.015,
"placeStyle": 4,
"cutRegion": 0,
"cutOrder": 0,
"cutPointId": 3,
"placeWidth": 400,
"placeLength": 600,
"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": [
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 391,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 1,
"sideFace": 0,
"pointX": 391,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceB": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"modelListFaceA": [],
"modelListFaceB": [],
"labelPosX": 401,
"labelPosY": -1,
"isCncLabelA": false,
"isCncLabelB": false,
"isCncLabelTurnOver": false,
"type": 2,
"openDoorType": 0,
"_blockId": "1920739895488282624"
},
{
"blockDetail": {
"organId": 0,
"blockId": "1920739895563780096",
"pointDetail": [],
"modelDetail": [],
"holeDetail": [],
"offsetX": 0,
"offsetY": 0,
"cutWidth": 400,
"cutLength": 600,
"points": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 580,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 380,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgPoints": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 580,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 380,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgContourData": null,
"holes": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceA": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceB": [],
"holeListThrough": [],
"holeListSide": [],
"models": [],
"modelListFaceA": [],
"modelListFaceB": [],
"modelListThrough": [],
"modelListSide": [],
"thickness": 18,
"isUnRegular": true,
"bigHoleInFaceA": false,
"holeCountFront": 2,
"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": 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": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 28.284271247461902
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 28.284271247461902
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
}
],
"borderPreMilling": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 28.284271247461902
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
}
],
"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": 400,
"y": 0
},
"bul": 0
},
{
"pt": {
"x": 400,
"y": 580
},
"bul": 0
},
{
"pt": {
"x": 380,
"y": 600
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
},
"border": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 380,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 28.284271247461902
},
{
"m_StartPoint": {
"m_X": 380,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
}
],
"borderModelThrough": [],
"borderModelThroughR": [],
"cutLinesModelThrough": [],
"borderInnerPlace": [],
"blockInnerSpace": [],
"polylines2vModel": [],
"polylinesOutModel": [],
"placeContours": [
{
"placeStyle": 4,
"borderFinal": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 28.284271247461902
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 28.284271247461902
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"border": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 20,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 380
},
{
"m_StartPoint": {
"m_X": 20,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 580
},
"tagData": 0,
"tagData2": 0,
"m_Length": 28.284271247461902
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 580
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 580
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"placeContours": []
}
]
},
"remarkParams": {}
},
"orderId": "1920739893772812288",
"goodsId": "SP202001031",
"roomId": 0,
"bodyId": 0,
"blockId": "1920739895563780096",
"oldBlockId": "1920739895563780096",
"blockNo": "250575324044",
"customPlateNo": "F003-R001-C001-P008",
"labelNo": "",
"blockName": "背板7-cha-w20-h20",
"plateRemark": "",
"remark1": "",
"remark2": "",
"remark3": "",
"remark4": "",
"remark5": "",
"extraRemark": {},
"width": 400,
"length": 600,
"thickness": 18,
"area": 0.24,
"sealLeft": 0,
"sealRight": 0,
"sealTop": 0,
"sealBottom": 0,
"cutWidth": 400,
"cutLength": 600,
"cutArea": 0.24,
"isAdditionalBlock": false,
"isRemainBlock": false,
"texture": 0,
"placeHole": 2,
"isUnRegular": true,
"isTurnFaceToPlace": true,
"isTwoFaceToPlace": false,
"isCurvedGroundLine": false,
"isPlaced": true,
"fullBoardId": 0,
"boardId": 3,
"placeId": 3,
"placeX": 3.005,
"placeY": 1215.025,
"placeStyle": 4,
"cutRegion": 0,
"cutOrder": 0,
"cutPointId": 0,
"placeWidth": 400,
"placeLength": 600,
"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": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"modelListFaceA": [],
"modelListFaceB": [],
"labelPosX": 401,
"labelPosY": -1,
"isCncLabelA": false,
"isCncLabelB": false,
"isCncLabelTurnOver": false,
"type": 2,
"openDoorType": 0,
"_blockId": "1920739895563780096"
},
{
"blockDetail": {
"organId": 0,
"blockId": "1920739895597334528",
"pointDetail": [],
"modelDetail": [],
"holeDetail": [],
"offsetX": 0,
"offsetY": 0,
"cutWidth": 400,
"cutLength": 600,
"points": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 470,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 320,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgPoints": [
{
"pointX": 0,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 0,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 400,
"pointY": 470,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 320,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
},
{
"pointX": 0,
"pointY": 600,
"curve": 0,
"radius": 0,
"sealSize": 0,
"isPreCutRequired": false
}
],
"orgContourData": null,
"holes": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceA": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"holeListFaceB": [],
"holeListThrough": [],
"holeListSide": [],
"models": [],
"modelListFaceA": [],
"modelListFaceB": [],
"modelListThrough": [],
"modelListSide": [],
"thickness": 18,
"isUnRegular": true,
"bigHoleInFaceA": false,
"holeCountFront": 2,
"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": 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": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 470
},
"tagData": 0,
"tagData2": 0,
"m_Length": 470
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 470
},
"m_EndPoint": {
"m_X": 320,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 152.64337522473747
},
{
"m_StartPoint": {
"m_X": 320,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 470
},
"tagData": 0,
"tagData2": 0,
"m_Length": 470
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 470
},
"m_EndPoint": {
"m_X": 320,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 152.64337522473747
},
{
"m_StartPoint": {
"m_X": 320,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
}
],
"borderPreMilling": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 470
},
"tagData": 0,
"tagData2": 0,
"m_Length": 470
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 470
},
"m_EndPoint": {
"m_X": 320,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 152.64337522473747
},
{
"m_StartPoint": {
"m_X": 320,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
}
],
"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": 400,
"y": 0
},
"bul": 0
},
{
"pt": {
"x": 400,
"y": 470
},
"bul": 0
},
{
"pt": {
"x": 320,
"y": 600
},
"bul": 0
}
],
"_DisplayAccuracy": 0,
"_ClosedMark": true
},
"border": [
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 470
},
"tagData": 0,
"tagData2": 0,
"m_Length": 470
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 470
},
"m_EndPoint": {
"m_X": 320,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 152.64337522473747
},
{
"m_StartPoint": {
"m_X": 320,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
}
],
"borderModelThrough": [],
"borderModelThroughR": [],
"cutLinesModelThrough": [],
"borderInnerPlace": [],
"blockInnerSpace": [],
"polylines2vModel": [],
"polylinesOutModel": [],
"placeContours": [
{
"placeStyle": 4,
"borderFinal": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 600
},
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 80,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
},
{
"m_StartPoint": {
"m_X": 80,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 470
},
"tagData": 0,
"tagData2": 0,
"m_Length": 152.64337522473747
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 470
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 470
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"borderOrg": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 80,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
},
{
"m_StartPoint": {
"m_X": 80,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 470
},
"tagData": 0,
"tagData2": 0,
"m_Length": 152.64337522473747
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 470
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 470
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"border": [
{
"m_StartPoint": {
"m_X": 400,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 80,
"m_Y": 600
},
"tagData": 0,
"tagData2": 0,
"m_Length": 320
},
{
"m_StartPoint": {
"m_X": 80,
"m_Y": 600
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 470
},
"tagData": 0,
"tagData2": 0,
"m_Length": 152.64337522473747
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 470
},
"m_EndPoint": {
"m_X": 0,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 470
},
{
"m_StartPoint": {
"m_X": 0,
"m_Y": 0
},
"m_EndPoint": {
"m_X": 400,
"m_Y": 0
},
"tagData": 0,
"tagData2": 0,
"m_Length": 400
}
],
"placeContours": []
}
]
},
"remarkParams": {}
},
"orderId": "1920739893772812288",
"goodsId": "SP202001031",
"roomId": 0,
"bodyId": 0,
"blockId": "1920739895597334528",
"oldBlockId": "1920739895597334528",
"blockNo": "250575324046",
"customPlateNo": "F003-R001-C001-P012",
"labelNo": "",
"blockName": "背板15-cha-w80-h130",
"plateRemark": "",
"remark1": "",
"remark2": "",
"remark3": "",
"remark4": "",
"remark5": "",
"extraRemark": {},
"width": 400,
"length": 600,
"thickness": 18,
"area": 0.24,
"sealLeft": 0,
"sealRight": 0,
"sealTop": 0,
"sealBottom": 0,
"cutWidth": 400,
"cutLength": 600,
"cutArea": 0.24,
"isAdditionalBlock": false,
"isRemainBlock": false,
"texture": 0,
"placeHole": 2,
"isUnRegular": true,
"isTurnFaceToPlace": true,
"isTwoFaceToPlace": false,
"isCurvedGroundLine": false,
"isPlaced": true,
"fullBoardId": 0,
"boardId": 3,
"placeId": 4,
"placeX": 3.005,
"placeY": 1821.035,
"placeStyle": 4,
"cutRegion": 0,
"cutOrder": 0,
"cutPointId": 0,
"placeWidth": 400,
"placeLength": 600,
"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": [
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 550,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
},
{
"holeType": 10,
"face": 0,
"sideFace": 0,
"pointX": 9,
"pointY": 50,
"pointZ": 0,
"radius": 2.5,
"depth": 13.5,
"endPoint": 0,
"angle": 0,
"isCncCanNotProcess": false,
"cncCanNotProcessType": "",
"isCutting": true,
"knife": null
}
],
"modelListFaceA": [],
"modelListFaceB": [],
"labelPosX": 401,
"labelPosY": -1,
"isCncLabelA": false,
"isCncLabelB": false,
"isCncLabelTurnOver": false,
"type": 2,
"openDoorType": 0,
"_blockId": "1920739895597334528"
}
]