You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
WebCAD/.vscode/EntityDraw.code-snippets

20 lines
511 B

{
"实体绘制": {
"prefix": "draw",
"body": [
"//#region Draw",
"InitDrawObject(renderType: RenderType = RenderType.Wireframe);",
"{",
" let obj = new Object3D();",
" return obj;",
"}",
"",
"UpdateDrawObject(type: RenderType, obj: Object3D);",
"{",
"}",
"//#endregion"
],
"description": "实体绘制代码"
}
}