mxcad 1.0.231 → 1.0.232

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/mxcad.d.ts CHANGED
@@ -11471,6 +11471,10 @@ export declare class McObject {
11471
11471
  * ```
11472
11472
  */
11473
11473
  addImageDefine(imageUrl: string, sName?: string, isConvertBase64?: boolean): McObjectId;
11474
+ /**
11475
+ * 显示线重
11476
+ */
11477
+ showLineWeight(isShow: boolean): boolean;
11474
11478
  /**
11475
11479
  * 加载另一个dwg文件当前背景对象绘制.
11476
11480
  */
@@ -17048,10 +17052,7 @@ export declare class MxOldMx3dGePoint extends MxOldMx3dGeObject {
17048
17052
  setZ(theZ: number): void;
17049
17053
  }
17050
17054
  export declare function loadMxCADassembly3d(config: MxDraw3dConfig, call?: (mxDraw3d: MxDraw3d) => void): Promise<MxDraw3d>;
17051
- /**
17052
- * MxCppType 类
17053
- */
17054
- export declare class MxApp3DType extends PubSub<{
17055
+ declare class MxApp3DType extends PubSub<{
17055
17056
  eventModesSelected: (ids: number[]) => void;
17056
17057
  eventAddToTree: (node: string) => void;
17057
17058
  eventRemoveFromTree: (ids: number[]) => void;
@@ -17061,10 +17062,25 @@ export declare class MxApp3DType extends PubSub<{
17061
17062
  eventUpdateViewSize: (pointer: number[]) => void;
17062
17063
  eventUpdateAttribute: (attrStr: string) => void;
17063
17064
  }> {
17065
+ /**
17066
+ * @internal
17067
+ */
17064
17068
  init(imp: any): void;
17069
+ /**
17070
+ * @internal
17071
+ */
17065
17072
  imp?: any;
17073
+ /**
17074
+ * @internal
17075
+ */
17066
17076
  cpp_app: any;
17077
+ /**
17078
+ * @internal
17079
+ */
17067
17080
  tool: any;
17081
+ /**
17082
+ * @internal
17083
+ */
17068
17084
  globalMethods: any;
17069
17085
  /**
17070
17086
  * 为当前应用程序创建一个视图
@@ -17078,7 +17094,10 @@ export declare class MxApp3DType extends PubSub<{
17078
17094
  */
17079
17095
  getCurrentActiveView(): Mx3dView;
17080
17096
  }
17081
- export declare let MxApp3D: MxApp3DType;
17097
+ /**
17098
+ * 全局应用程序单实例
17099
+ */
17100
+ export declare const MxApp3D: MxApp3DType;
17082
17101
  export interface MxCAD3DConfig {
17083
17102
  [x: string]: any;
17084
17103
  canvas: string | HTMLCanvasElement;
@@ -17095,10 +17114,25 @@ export interface MxCAD3DConfig {
17095
17114
  * 一个文档视图对象对应一个Canvas视图和一个文档
17096
17115
  */
17097
17116
  export declare class MxCAD3DObject {
17117
+ /**
17118
+ * @internal
17119
+ */
17098
17120
  private event;
17121
+ /**
17122
+ * @internal
17123
+ */
17099
17124
  private imp;
17125
+ /**
17126
+ * @internal
17127
+ */
17100
17128
  private canvas;
17129
+ /**
17130
+ * @internal
17131
+ */
17101
17132
  private ctx;
17133
+ /**
17134
+ * @internal
17135
+ */
17102
17136
  private updateCanvasSizeFun;
17103
17137
  constructor();
17104
17138
  /**
@@ -17259,35 +17293,34 @@ export declare class MxCAD3DObject {
17259
17293
  */
17260
17294
  create(config: MxCAD3DConfig): void;
17261
17295
  }
17262
- /**
17263
- * 点和数组的联合类型
17264
- */
17265
- export type UniPoint = Mx3dGePoint | [
17296
+ export type Vector = [
17266
17297
  theX: number,
17267
17298
  theY: number,
17268
17299
  theZ: number
17269
17300
  ];
17301
+ /**
17302
+ * 点和数组的联合类型
17303
+ */
17304
+ export type UniPoint = Mx3dGePoint | Vector;
17270
17305
  /**
17271
17306
  * 方向向量和数组的联合类型
17272
17307
  */
17273
- export type UniDir = Mx3dGeDir | [
17274
- theX: number,
17275
- theY: number,
17276
- theZ: number
17277
- ];
17308
+ export type UniDir = Mx3dGeDir | Vector;
17278
17309
  /**
17279
17310
  * 向量和数组的联合类型
17280
17311
  */
17281
- export type UniVec = Mx3dGeVec | [
17282
- theX: number,
17283
- theY: number,
17284
- theZ: number
17285
- ];
17312
+ export type UniVec = Mx3dGeVec | Vector;
17286
17313
  /**
17287
17314
  * 应用程序类,全局单实例
17288
17315
  */
17289
17316
  export declare class Mx3dApplication {
17317
+ /**
17318
+ * @internal
17319
+ */
17290
17320
  protected imp: any;
17321
+ /**
17322
+ * @internal
17323
+ */
17291
17324
  constructor();
17292
17325
  /**
17293
17326
  * 为当前应用程序创建一个视图
@@ -17305,51 +17338,84 @@ export declare class Mx3dApplication {
17305
17338
  * 管理对象生命周期的基类
17306
17339
  */
17307
17340
  export declare class Mx3dBaseObject {
17341
+ /**
17342
+ * @internal
17343
+ */
17308
17344
  protected imp: any;
17345
+ /**
17346
+ * @internal
17347
+ */
17309
17348
  constructor(imp?: any);
17349
+ /**
17350
+ * @internal
17351
+ */
17310
17352
  getImp(): any;
17353
+ /**
17354
+ * @internal
17355
+ */
17311
17356
  protected initTempObject(imp: any): void;
17312
17357
  }
17313
17358
  /**
17314
17359
  * 尺寸标注的基类
17315
17360
  */
17316
17361
  export declare class Mx3dDimObject extends Mx3dBaseObject {
17362
+ /**
17363
+ * @internal
17364
+ */
17317
17365
  constructor(p?: object);
17318
17366
  }
17319
17367
  /**
17320
17368
  * 符号的基类
17321
17369
  */
17322
17370
  export declare class Mx3dSymbolObject extends Mx3dBaseObject {
17371
+ /**
17372
+ * @internal
17373
+ */
17323
17374
  constructor(p?: object);
17324
17375
  }
17325
17376
  /**
17326
17377
  * 模型算法的基类
17327
17378
  */
17328
17379
  export declare class Mx3dAlgoObject extends Mx3dBaseObject {
17380
+ /**
17381
+ * @internal
17382
+ */
17329
17383
  constructor(p?: object);
17330
17384
  }
17331
17385
  /**
17332
17386
  * 样式基类
17333
17387
  */
17334
17388
  export declare class Mx3dAspectObject extends Mx3dBaseObject {
17389
+ /**
17390
+ * @internal
17391
+ */
17335
17392
  constructor(p?: object);
17336
17393
  }
17337
17394
  /**
17338
17395
  * 数学几何基类
17339
17396
  */
17340
17397
  export declare class Mx3dGeObject extends Mx3dBaseObject {
17398
+ /**
17399
+ * @internal
17400
+ */
17341
17401
  constructor(p?: object);
17342
17402
  }
17343
17403
  /**
17344
17404
  * 曲线基类
17345
17405
  */
17346
17406
  export declare class Mx3dGeCurve extends Mx3dGeObject {
17407
+ /**
17408
+ * @internal
17409
+ */
17347
17410
  constructor(p?: object);
17348
17411
  }
17349
17412
  /**
17350
17413
  * 圆锥曲线基类
17351
17414
  */
17352
17415
  export declare class Mx3dGeConic extends Mx3dGeCurve {
17416
+ /**
17417
+ * @internal
17418
+ */
17353
17419
  constructor(p?: object);
17354
17420
  }
17355
17421
  /**
@@ -17367,11 +17433,7 @@ export declare class Mx3dGePoint extends Mx3dGeObject {
17367
17433
  *
17368
17434
  * @param theXYZ - 包含X, Y, Z坐标值的数组。
17369
17435
  */
17370
- constructor(theXYZ: [
17371
- theX: number,
17372
- theY: number,
17373
- theZ: number
17374
- ]);
17436
+ constructor(theXYZ: Vector);
17375
17437
  /**
17376
17438
  * 使用给定的X, Y, Z坐标值构造一个点。
17377
17439
  *
@@ -19004,8 +19066,21 @@ export declare class Mx3dAlgoFillet extends Mx3dAlgoObject {
19004
19066
  * 倒斜角算法
19005
19067
  */
19006
19068
  export declare class Mx3dAlgoChamfer extends Mx3dAlgoObject {
19069
+ /**
19070
+ * 构造函数,输入需要倒斜角的对象
19071
+ * @param S 进行倒斜角算法的对象
19072
+ */
19007
19073
  constructor(S: Mx3dShapeObject);
19074
+ /**
19075
+ * 添加对象上需要倒斜角的边
19076
+ * @param Dis 倒斜角距离
19077
+ * @param E 对象上的边
19078
+ */
19008
19079
  Add(Dis: number, E: Mx3dShapeEdge): void;
19080
+ /**
19081
+ * 获取倒斜角后的形状对象
19082
+ * @returns 倒斜角后的形状对象
19083
+ */
19009
19084
  Shape(): Mx3dShapeObject;
19010
19085
  }
19011
19086
  /**
package/dist/mxcad.es.js CHANGED
@@ -14145,7 +14145,7 @@ win.McDrawObjectEvent_asciiToUTF8 = function (hexstr) {
14145
14145
  return MxG2312Obj.decodeFromGb2312(hexstr);
14146
14146
  };
14147
14147
 
14148
- const version$1 = "1.0.231";
14148
+ const version$1 = "1.0.232";
14149
14149
 
14150
14150
  var isSharedArrayBuffer = ("SharedArrayBuffer" in window);
14151
14151
  var isCdn = document.currentScript && /unpkg\.com\/mxcad/.test(document.currentScript.src);
@@ -20544,6 +20544,13 @@ var McObject = /*#__PURE__*/function () {
20544
20544
  var isConvertBase64 = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
20545
20545
  return new McObjectId(this.imp.addImageDefine(MxG2312Obj.encodeToGb2312(imageUrl), MxG2312Obj.encodeToGb2312(sName), isConvertBase64));
20546
20546
  }
20547
+ }, {
20548
+ key: "showLineWeight",
20549
+ value: function showLineWeight(isShow) {
20550
+ var ret = this.imp.showLineWeight(isShow);
20551
+ this.updateDisplay(false);
20552
+ return ret;
20553
+ }
20547
20554
  }, {
20548
20555
  key: "loadDwgBackground",
20549
20556
  value: function loadDwgBackground(sFileUrl, call) {
@@ -20572,7 +20579,7 @@ var McObject = /*#__PURE__*/function () {
20572
20579
  }, {
20573
20580
  key: "clearDwgBackground",
20574
20581
  value: function clearDwgBackground() {
20575
- this.imp.clearDwgBackground();
20582
+ this.getBackgroundEntity().clearAll();
20576
20583
  }
20577
20584
  }, {
20578
20585
  key: "addSystemVarNameForEvent",
@@ -29465,7 +29472,7 @@ function _Mx_WindowZoom() {
29465
29472
  case 0:
29466
29473
  getPoint = new MxCADUiPrPoint();
29467
29474
  getPoint.disableAllTrace();
29468
- getPoint.setMessage("\u70B9\u53D6\u7F29\u653E\u533A\u57DF");
29475
+ getPoint.setMessage("\n\u70B9\u53D6\u7F29\u653E\u533A\u57DF");
29469
29476
  getPoint.setDynamicInputType(DynamicInputType.kDynTip);
29470
29477
  _context8.next = 6;
29471
29478
  return getPoint.go();
@@ -47091,7 +47098,7 @@ var MxCAD3DObject = /*#__PURE__*/function () {
47091
47098
  _config$minWidth = config.minWidth,
47092
47099
  minWidth = _config$minWidth === void 0 ? 300 : _config$minWidth,
47093
47100
  _config$minHeight = config.minHeight,
47094
- minHeight = _config$minHeight === void 0 ? 300 + 500 : _config$minHeight,
47101
+ minHeight = _config$minHeight === void 0 ? 300 : _config$minHeight,
47095
47102
  _config$updateCanvasS = config.updateCanvasSize,
47096
47103
  updateCanvasSize = _config$updateCanvasS === void 0 ? _updateCanvasSize : _config$updateCanvasS;
47097
47104
  var isInit = false;
@@ -49192,6 +49199,8 @@ var Mx3dAlgoChamfer = /*#__PURE__*/function (_Mx3dAlgoObject2) {
49192
49199
  if (S instanceof Mx3dShapeObject) {
49193
49200
  _this22 = _super28.call(this);
49194
49201
  _this22.initTempObject(new MxApp3D.imp.Mx3dAlgoChamfer(S.getImp()));
49202
+ } else if (S instanceof Object) {
49203
+ _this22 = _super28.call(this, S);
49195
49204
  }
49196
49205
  return _possibleConstructorReturn$1(_this22);
49197
49206
  }
@@ -59834,7 +59843,6 @@ const mxcad = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
59834
59843
  MxOldMx3dGePoint,
59835
59844
  get MdGe () { return MdGe; },
59836
59845
  loadMxCADassembly3d,
59837
- MxApp3DType,
59838
59846
  MxApp3D,
59839
59847
  MxCAD3DObject,
59840
59848
  Mx3dApplication,
@@ -59934,4 +59942,4 @@ const mxcad = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
59934
59942
  mx_gcj02_To_gps84
59935
59943
  }, Symbol.toStringTag, { value: 'Module' }));
59936
59944
 
59937
- export { ColorIndexType, ColorMethod, DxfCode, FetchAttributes, IMcDbDwgFiler, IsZero, McAppType, McCmColor, McDb, McDb2LineAngularDimension, McDbAlignedDimension, McDbArc, McDbAttribute, McDbAttributeDefinition, McDbBackgroundEntity, McDbBlockReference, McDbBlockTable, McDbBlockTableRecord, McDbCircle, McDbCurve, McDbCustomEntity, McDbDatabase, McDbDictionary, McDbDimension, McDbEllipse, McDbEntity, McDbGroup, McDbHatch, McDbLayerTable, McDbLayerTableRecord, McDbLine, McDbLinetypeTable, McDbLinetypeTableRecord, McDbMText, McDbObject, McDbObjectArray, McDbPoint, McDbPolyline, McDbProxyEntity, McDbRasterImage, McDbRasterImageDef, McDbRotatedDimension, McDbText, McDbTextStyleTable, McDbTextStyleTableRecord, McDbXrecord, McGeBound, McGeDoubleArray, McGeLongArray, McGeMatrix3d, McGePoint3d, McGePoint3dArray, McGeStringArray, McGeVector3d, McObject, McObjectId, McObjectIdType, McRxObject, MdGe, MdGeAisContext, MdGeAisObject, MdGeAisShape, MdGeAisTexturedShape, MdGeAngleDim, MdGeApplication, MdGeArray1OfInteger, MdGeArray1OfPnt, MdGeArray1OfReal, MdGeArray2OfPnt, MdGeArray2OfReal, MdGeArrowAspect, MdGeAxis, MdGeBRep, MdGeBSplineCurve, MdGeBSplineSurface, MdGeBezierCurve, MdGeBezierSurface, MdGeBndBox, MdGeBox, MdGeCSYS, MdGeCSYSR, MdGeChamfer, MdGeCircle, MdGeColor, MdGeCompSolid, MdGeCompound, MdGeCone, MdGeCylinder, MdGeDiameterDim, MdGeDimAspect, MdGeDir, MdGeDocColorTool, MdGeDocReader, MdGeDocShapeTool, MdGeDocWriter, MdGeDocument, MdGeEdge, MdGeEllipse, MdGeExplorer, MdGeFace, MdGeFillet, MdGeHGeomPlane, MdGeHGeomSurface, MdGeHypr, MdGeInterpolateBSpl, MdGeLabel, MdGeLabelSequence, MdGeLabelTree, MdGeLengthDim, MdGeLight, MdGeLine, MdGeLineAspect, MdGeListIteratorOfListOfShape, MdGeListOfShape, MdGeLocation, MdGeLoft, MdGeMakeArcOfCircle, MdGeMakeFace, MdGeMakeThickSolid, MdGeMakeWires, MdGeMat, MdGeMaterialAspect, MdGeParab, MdGePipe, MdGePlane, MdGePoint, MdGePointsToBSpl, MdGePointsToBSplSurface, MdGePrism, MdGeRadiusDim, MdGeRect, MdGeRevol, MdGeSequenceIteratorOfSequenceOfShape, MdGeSequenceOfShape, MdGeShape, MdGeShell, MdGeSolid, MdGeSphere, MdGeSpliter, MdGeText, MdGeTextAspect, MdGeTextLabel, MdGeTopo, MdGeTorus, MdGeTransform, MdGeTrsf, MdGeVec, MdGeVertex, MdGeWedge, MdGeWire, MdGeXYZ, Mx3dAlgoChamfer, Mx3dAlgoFillet, Mx3dAlgoObject, Mx3dApplication, Mx3dAspectArrow, Mx3dAspectDim, Mx3dAspectLine, Mx3dAspectObject, Mx3dAspectText, Mx3dBaseObject, Mx3dBrepCastGeom, Mx3dDbDocument, Mx3dDbLabel, Mx3dDbObject, Mx3dDimAngle, Mx3dDimDiameter, Mx3dDimLength, Mx3dDimObject, Mx3dDimRadius, Mx3dGeAxis, Mx3dGeBndBox, Mx3dGeCSYS, Mx3dGeCSYSR, Mx3dGeCircle, Mx3dGeColor, Mx3dGeConic, Mx3dGeCurve, Mx3dGeCylinder, Mx3dGeDir, Mx3dGeEllipse, Mx3dGeHyperbola, Mx3dGeLine, Mx3dGeLocation, Mx3dGeMaterial, Mx3dGeObject, Mx3dGePlane, Mx3dGePoint, Mx3dGeTrsf, Mx3dGeVec, Mx3dGeomBSplineCurve, Mx3dGeomBSplineSurface, Mx3dGeomBezierCurve, Mx3dGeomBezierSurface, Mx3dGeomBoundedCurve, Mx3dGeomBoundedSurface, Mx3dGeomCircle, Mx3dGeomConic, Mx3dGeomConicalSurface, Mx3dGeomCurve, Mx3dGeomCylindricalSurface, Mx3dGeomElementarySurface, Mx3dGeomEllipse, Mx3dGeomHyperbola, Mx3dGeomLine, Mx3dGeomObject, Mx3dGeomParabola, Mx3dGeomPlane, Mx3dGeomSphericalSurface, Mx3dGeomSurface, Mx3dGeomToroidalSurface, Mx3dInterpolateBSplineCurve, Mx3dMkBox, Mx3dMkCone, Mx3dMkCylinder, Mx3dMkFace, Mx3dMkLoft, Mx3dMkObject, Mx3dMkPipe, Mx3dMkPolygon, Mx3dMkPrism, Mx3dMkRevol, Mx3dMkSphere, Mx3dMkThickSolid, Mx3dMkTorus, Mx3dMkWedge, Mx3dShapeCompSolid, Mx3dShapeCompound, Mx3dShapeDownCast, Mx3dShapeEdge, Mx3dShapeFace, Mx3dShapeObject, Mx3dShapeShell, Mx3dShapeSolid, Mx3dShapeVertex, Mx3dShapeWire, Mx3dSymbolObject, Mx3dSymbolText, Mx3dUtils, Mx3dView, Mx3dWireTool, MxApp3D, MxApp3DType, MxCAD3DObject, MxCADCloneType, MxCADPluginBase, MxCADPluginMapDefaultData, MxCADPluginSampleCode, MxCADResbuf, MxCADSelectionSet, MxCADSelectionSetStatus, MxCADUiPrAngle, MxCADUiPrBase, MxCADUiPrDist, MxCADUiPrEntity, MxCADUiPrInt, MxCADUiPrKeyWord, MxCADUiPrPoint, MxCADUiPrString, MxCADUtility, MxCADUtilityClass, MxCADWorldDraw, MxCheckTheBrowser, MxCompare, MxCoordConvert, MxCoordConvertType, MxCpp, MxCppType, MxDraw3d, MxMap, MxMapAddGoogleCnLayer, MxMapAddRasterTileLayer, MxOldMx3dApplication, MxOldMx3dBaseObject, MxOldMx3dDbDocument, MxOldMx3dDbLabel, MxOldMx3dDbObject, MxOldMx3dGeBndBox, MxOldMx3dGeColor, MxOldMx3dGeLocation, MxOldMx3dGeObject, MxOldMx3dGePoint, MxOldMx3dLabelSequence, MxOldMx3dLabelSequenceIterator, MxOldMx3dShapeObject, MxPropertiesWindowCustom, MxPropertiesWindowCustomValue, MxPropertiesWindowCustomValueType, MxTools, Mx_Erase, _ML_String, b64Decode, b64Encode, createMcCmColor, createMxCad, mxcad as default, downloadFile, downloadFileFromUrl, drawArc, drawCircle, drawEllipticalArc, drawLine, drawMText, drawPolyLine, drawPolygon, drawRectang, drawText, getColorUtils, getFileFromUrl, getFilterImp, getJsonFromUrl, loadMxCADassembly, loadMxCADassembly3d, mx_gcj02_To_gps84, mx_gps84_To_gcj02, postEmscriptenIndexedDBFile, postMemoryFile, saveAsFileDialog, setMcCmColor };
59945
+ export { ColorIndexType, ColorMethod, DxfCode, FetchAttributes, IMcDbDwgFiler, IsZero, McAppType, McCmColor, McDb, McDb2LineAngularDimension, McDbAlignedDimension, McDbArc, McDbAttribute, McDbAttributeDefinition, McDbBackgroundEntity, McDbBlockReference, McDbBlockTable, McDbBlockTableRecord, McDbCircle, McDbCurve, McDbCustomEntity, McDbDatabase, McDbDictionary, McDbDimension, McDbEllipse, McDbEntity, McDbGroup, McDbHatch, McDbLayerTable, McDbLayerTableRecord, McDbLine, McDbLinetypeTable, McDbLinetypeTableRecord, McDbMText, McDbObject, McDbObjectArray, McDbPoint, McDbPolyline, McDbProxyEntity, McDbRasterImage, McDbRasterImageDef, McDbRotatedDimension, McDbText, McDbTextStyleTable, McDbTextStyleTableRecord, McDbXrecord, McGeBound, McGeDoubleArray, McGeLongArray, McGeMatrix3d, McGePoint3d, McGePoint3dArray, McGeStringArray, McGeVector3d, McObject, McObjectId, McObjectIdType, McRxObject, MdGe, MdGeAisContext, MdGeAisObject, MdGeAisShape, MdGeAisTexturedShape, MdGeAngleDim, MdGeApplication, MdGeArray1OfInteger, MdGeArray1OfPnt, MdGeArray1OfReal, MdGeArray2OfPnt, MdGeArray2OfReal, MdGeArrowAspect, MdGeAxis, MdGeBRep, MdGeBSplineCurve, MdGeBSplineSurface, MdGeBezierCurve, MdGeBezierSurface, MdGeBndBox, MdGeBox, MdGeCSYS, MdGeCSYSR, MdGeChamfer, MdGeCircle, MdGeColor, MdGeCompSolid, MdGeCompound, MdGeCone, MdGeCylinder, MdGeDiameterDim, MdGeDimAspect, MdGeDir, MdGeDocColorTool, MdGeDocReader, MdGeDocShapeTool, MdGeDocWriter, MdGeDocument, MdGeEdge, MdGeEllipse, MdGeExplorer, MdGeFace, MdGeFillet, MdGeHGeomPlane, MdGeHGeomSurface, MdGeHypr, MdGeInterpolateBSpl, MdGeLabel, MdGeLabelSequence, MdGeLabelTree, MdGeLengthDim, MdGeLight, MdGeLine, MdGeLineAspect, MdGeListIteratorOfListOfShape, MdGeListOfShape, MdGeLocation, MdGeLoft, MdGeMakeArcOfCircle, MdGeMakeFace, MdGeMakeThickSolid, MdGeMakeWires, MdGeMat, MdGeMaterialAspect, MdGeParab, MdGePipe, MdGePlane, MdGePoint, MdGePointsToBSpl, MdGePointsToBSplSurface, MdGePrism, MdGeRadiusDim, MdGeRect, MdGeRevol, MdGeSequenceIteratorOfSequenceOfShape, MdGeSequenceOfShape, MdGeShape, MdGeShell, MdGeSolid, MdGeSphere, MdGeSpliter, MdGeText, MdGeTextAspect, MdGeTextLabel, MdGeTopo, MdGeTorus, MdGeTransform, MdGeTrsf, MdGeVec, MdGeVertex, MdGeWedge, MdGeWire, MdGeXYZ, Mx3dAlgoChamfer, Mx3dAlgoFillet, Mx3dAlgoObject, Mx3dApplication, Mx3dAspectArrow, Mx3dAspectDim, Mx3dAspectLine, Mx3dAspectObject, Mx3dAspectText, Mx3dBaseObject, Mx3dBrepCastGeom, Mx3dDbDocument, Mx3dDbLabel, Mx3dDbObject, Mx3dDimAngle, Mx3dDimDiameter, Mx3dDimLength, Mx3dDimObject, Mx3dDimRadius, Mx3dGeAxis, Mx3dGeBndBox, Mx3dGeCSYS, Mx3dGeCSYSR, Mx3dGeCircle, Mx3dGeColor, Mx3dGeConic, Mx3dGeCurve, Mx3dGeCylinder, Mx3dGeDir, Mx3dGeEllipse, Mx3dGeHyperbola, Mx3dGeLine, Mx3dGeLocation, Mx3dGeMaterial, Mx3dGeObject, Mx3dGePlane, Mx3dGePoint, Mx3dGeTrsf, Mx3dGeVec, Mx3dGeomBSplineCurve, Mx3dGeomBSplineSurface, Mx3dGeomBezierCurve, Mx3dGeomBezierSurface, Mx3dGeomBoundedCurve, Mx3dGeomBoundedSurface, Mx3dGeomCircle, Mx3dGeomConic, Mx3dGeomConicalSurface, Mx3dGeomCurve, Mx3dGeomCylindricalSurface, Mx3dGeomElementarySurface, Mx3dGeomEllipse, Mx3dGeomHyperbola, Mx3dGeomLine, Mx3dGeomObject, Mx3dGeomParabola, Mx3dGeomPlane, Mx3dGeomSphericalSurface, Mx3dGeomSurface, Mx3dGeomToroidalSurface, Mx3dInterpolateBSplineCurve, Mx3dMkBox, Mx3dMkCone, Mx3dMkCylinder, Mx3dMkFace, Mx3dMkLoft, Mx3dMkObject, Mx3dMkPipe, Mx3dMkPolygon, Mx3dMkPrism, Mx3dMkRevol, Mx3dMkSphere, Mx3dMkThickSolid, Mx3dMkTorus, Mx3dMkWedge, Mx3dShapeCompSolid, Mx3dShapeCompound, Mx3dShapeDownCast, Mx3dShapeEdge, Mx3dShapeFace, Mx3dShapeObject, Mx3dShapeShell, Mx3dShapeSolid, Mx3dShapeVertex, Mx3dShapeWire, Mx3dSymbolObject, Mx3dSymbolText, Mx3dUtils, Mx3dView, Mx3dWireTool, MxApp3D, MxCAD3DObject, MxCADCloneType, MxCADPluginBase, MxCADPluginMapDefaultData, MxCADPluginSampleCode, MxCADResbuf, MxCADSelectionSet, MxCADSelectionSetStatus, MxCADUiPrAngle, MxCADUiPrBase, MxCADUiPrDist, MxCADUiPrEntity, MxCADUiPrInt, MxCADUiPrKeyWord, MxCADUiPrPoint, MxCADUiPrString, MxCADUtility, MxCADUtilityClass, MxCADWorldDraw, MxCheckTheBrowser, MxCompare, MxCoordConvert, MxCoordConvertType, MxCpp, MxCppType, MxDraw3d, MxMap, MxMapAddGoogleCnLayer, MxMapAddRasterTileLayer, MxOldMx3dApplication, MxOldMx3dBaseObject, MxOldMx3dDbDocument, MxOldMx3dDbLabel, MxOldMx3dDbObject, MxOldMx3dGeBndBox, MxOldMx3dGeColor, MxOldMx3dGeLocation, MxOldMx3dGeObject, MxOldMx3dGePoint, MxOldMx3dLabelSequence, MxOldMx3dLabelSequenceIterator, MxOldMx3dShapeObject, MxPropertiesWindowCustom, MxPropertiesWindowCustomValue, MxPropertiesWindowCustomValueType, MxTools, Mx_Erase, _ML_String, b64Decode, b64Encode, createMcCmColor, createMxCad, mxcad as default, downloadFile, downloadFileFromUrl, drawArc, drawCircle, drawEllipticalArc, drawLine, drawMText, drawPolyLine, drawPolygon, drawRectang, drawText, getColorUtils, getFileFromUrl, getFilterImp, getJsonFromUrl, loadMxCADassembly, loadMxCADassembly3d, mx_gcj02_To_gps84, mx_gps84_To_gcj02, postEmscriptenIndexedDBFile, postMemoryFile, saveAsFileDialog, setMcCmColor };