mxcad 1.0.194 → 1.0.197

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
@@ -229,6 +229,18 @@ export declare class McDbObject extends McRxObject {
229
229
  * 得到对象拥用者的id
230
230
  */
231
231
  getOwnerID(): number;
232
+ /**
233
+ * 得到对象的扩展字典数据.
234
+ */
235
+ getExtensionDictionary(): McDbDictionary;
236
+ /**
237
+ * 是否有扩展字典数据.
238
+ */
239
+ isHaveExtensionDictionary(): boolean;
240
+ /**
241
+ * 创建对象的扩展字典数据.
242
+ */
243
+ createExtensionDictionary(): boolean;
232
244
  getDatabaseIndexId(): number;
233
245
  moveGripPointsAt(iIndex: number, dXOffset: number, dYOffset: number, dZOffset: number): any;
234
246
  getGripPoints(): McGePoint3dArray;
@@ -572,7 +584,7 @@ export declare class McGePoint3dArray {
572
584
  /**
573
585
  * 复制对象的值
574
586
  */
575
- copy(val: McGePoint3dArray): this;
587
+ copy(val: McGePoint3dArray | McGePoint3d[]): this;
576
588
  /**
577
589
  * 添加一个值
578
590
  */
@@ -1093,6 +1105,11 @@ export declare class MxCADUiPrBase {
1093
1105
  * 设置输入控制设置,UserInputControls
1094
1106
  */
1095
1107
  setUserInputControls(contros: number): void;
1108
+ /**
1109
+ * 停止当前动态拖动
1110
+ * @returns void
1111
+ */
1112
+ abort(cause?: DetailedResult): void;
1096
1113
  }
1097
1114
  /** UI交互取点 (鼠标点击画布) */
1098
1115
  export declare class MxCADUiPrPoint extends MxCADUiPrBase {
@@ -1889,6 +1906,14 @@ export declare class McDbPolyline extends McDbCurve {
1889
1906
  * @param bulge 凸度
1890
1907
  */
1891
1908
  setWidthsAt(index: number, dStartWdith: number, dEntWdith: number): boolean;
1909
+ /**
1910
+ * 设置多线段类型
1911
+ */
1912
+ getType(): McDb.PolylineType;
1913
+ /**
1914
+ * 返回多线段类型
1915
+ */
1916
+ setType(type: McDb.PolylineType): boolean;
1892
1917
  }
1893
1918
  /**
1894
1919
  * 表示一个 CAD 图块引用实体。
@@ -2449,7 +2474,7 @@ export declare class McDbHatch extends McDbEntity {
2449
2474
  * @param vertices 坐标集合
2450
2475
  * @param bulges 凸度集合
2451
2476
  * */
2452
- appendLoop(vertices: McGePoint3dArray, bulges: number[], loopType?: number): boolean;
2477
+ appendLoop(vertices: McGePoint3dArray, bulges?: number[], loopType?: number): boolean;
2453
2478
  /** 追加圆构造的闭合区域
2454
2479
  * @param loopType 闭合区域类型
2455
2480
  * @param vertices 坐标集合
@@ -2508,6 +2533,16 @@ export declare class McDbRasterImage extends McDbEntity {
2508
2533
  * @public
2509
2534
  */
2510
2535
  export declare namespace McDb {
2536
+ /**
2537
+ * 多线类型
2538
+ * @public
2539
+ */
2540
+ enum PolylineType {
2541
+ /** LW Polyline */
2542
+ kLwPolyline = 0,
2543
+ /** 3D Polyline */
2544
+ k3dPolyline = 2
2545
+ }
2511
2546
  /**
2512
2547
  * 文本水平对齐方式枚举。
2513
2548
  * @public
@@ -4117,9 +4152,29 @@ export declare abstract class IMcDbDwgFiler {
4117
4152
  private type;
4118
4153
  constructor(type: MxCADCloneType);
4119
4154
  getType(): MxCADCloneType;
4120
- abstract writePoint(name: string, pt: McGePoint3d): void;
4155
+ writePoints(name: string, vals: McGePoint3d[]): void;
4156
+ readPoints(name: string): {
4157
+ val: McGePoint3d[];
4158
+ ret: boolean;
4159
+ };
4160
+ abstract writePoint(name: string, val: McGePoint3d): void;
4121
4161
  abstract readPoint(name: string): {
4122
- pt: McGePoint3d;
4162
+ val: McGePoint3d;
4163
+ ret: boolean;
4164
+ };
4165
+ abstract writeLong(name: string, val: number): void;
4166
+ abstract readLong(name: string): {
4167
+ val: number;
4168
+ ret: boolean;
4169
+ };
4170
+ abstract writeDouble(name: string, val: number): void;
4171
+ abstract readDouble(name: string): {
4172
+ val: number;
4173
+ ret: boolean;
4174
+ };
4175
+ abstract writeString(name: string, val: string): void;
4176
+ abstract readString(name: string): {
4177
+ val: string;
4123
4178
  ret: boolean;
4124
4179
  };
4125
4180
  }
@@ -4137,14 +4192,20 @@ export declare abstract class McDbCustomEntity extends McDbEntity {
4137
4192
  * @param imp 内部实现对象。
4138
4193
  */
4139
4194
  constructor(imp?: any);
4195
+ /**
4196
+ * 自定义实体注册
4197
+ */
4140
4198
  rxInit(): void;
4199
+ /**
4200
+ * 复制实体
4201
+ */
4141
4202
  clone(): McDbObject | null;
4142
4203
  syncData(toCpp?: boolean): boolean;
4204
+ tempRelationObject(): number;
4205
+ freeTempRelationObject(): void;
4143
4206
  protected assertWrite(autoUndo?: boolean): void;
4144
4207
  moveGripPointsAt(_iIndex: number, _dXOffset: number, _dYOffset: number, _dZOffset: number): void;
4145
4208
  getGripPoints(): McGePoint3dArray;
4146
- tempRelationObject(): number;
4147
- freeTempRelationObject(): void;
4148
4209
  abstract create(imp?: any): McDbCustomEntity;
4149
4210
  abstract getTypeName(): string;
4150
4211
  abstract dwgInFields(filter: IMcDbDwgFiler): boolean;
@@ -4677,7 +4738,7 @@ export interface MxDraw3d extends WasmConfig {
4677
4738
  /** 表示几何曲面句柄 */
4678
4739
  MdGeHGeomSurface: typeof MdGeHGeomSurface;
4679
4740
  /** 所有类的父类,除MdGeTopo,MdGeBRep */
4680
- MdGeObject: typeof MdGeObject;
4741
+ Mx3dBaseObject: typeof Mx3dBaseObject;
4681
4742
  /** 表示颜色 */
4682
4743
  MdGeColor: typeof MdGeColor;
4683
4744
  /** 表示材质 */
@@ -4738,23 +4799,45 @@ export interface MxDraw3d extends WasmConfig {
4738
4799
  MdGeAisTexturedShape: typeof MdGeAisTexturedShape;
4739
4800
  /** MdGeSpliter */
4740
4801
  MdGeSpliter: typeof MdGeSpliter;
4802
+ Mx3dGeBndBox: typeof Mx3dGeBndBox;
4803
+ Mx3dGeColor: typeof Mx3dGeColor;
4804
+ Mx3dDbDocument: typeof Mx3dDbDocument;
4805
+ Mx3dDbLabel: typeof Mx3dDbLabel;
4806
+ Mx3dLabelSequence: typeof Mx3dLabelSequence;
4807
+ Mx3dLabelSequenceIterator: typeof Mx3dLabelSequenceIterator;
4808
+ Mx3dGeLocation: typeof Mx3dGeLocation;
4809
+ Mx3dGePoint: typeof Mx3dGePoint;
4810
+ Mx3dShapeObject: typeof Mx3dShapeObject;
4811
+ Mx3dGeObject: typeof Mx3dGeObject;
4812
+ Mx3dDbObject: typeof Mx3dDbObject;
4741
4813
  }
4742
4814
  /**
4743
4815
  * 所有类的父类, 除去MdGeTopo以及MdGeBrep
4744
4816
  */
4745
- export declare class MdGeObject {
4817
+ export declare class Mx3dBaseObject {
4746
4818
  protected imp: any;
4747
4819
  constructor(imp?: any);
4748
4820
  getImp(): any;
4749
4821
  protected initTempObject(imp: any): void;
4750
4822
  }
4823
+ export declare class Mx3dShapeObject extends Mx3dBaseObject {
4824
+ constructor(p?: object);
4825
+ getBndBox(): Mx3dGeBndBox;
4826
+ Draw(): void;
4827
+ }
4828
+ export declare class Mx3dGeObject extends Mx3dBaseObject {
4829
+ constructor(p?: object);
4830
+ }
4831
+ export declare class Mx3dDbObject extends Mx3dBaseObject {
4832
+ constructor(p?: object);
4833
+ }
4751
4834
  /**
4752
4835
  * 表示一个形状。
4753
4836
  */
4754
4837
  /**
4755
4838
  * 表示一个形状
4756
4839
  */
4757
- export declare class MdGeShape extends MdGeObject {
4840
+ export declare class MdGeShape extends Mx3dBaseObject {
4758
4841
  constructor(p?: object);
4759
4842
  Fuse(other: MdGeShape): MdGeShape;
4760
4843
  Cut(remove: MdGeShape): MdGeShape;
@@ -4858,7 +4941,7 @@ export declare class MdGeCompound extends MdGeShape {
4858
4941
  /**
4859
4942
  * 表示一个矩阵
4860
4943
  */
4861
- export declare class MdGeMat extends MdGeObject {
4944
+ export declare class MdGeMat extends Mx3dBaseObject {
4862
4945
  constructor(p1?: MdGeXYZ | number | object, p2?: MdGeXYZ | number, p3?: MdGeXYZ | number, p4?: number, p5?: number, p6?: number, p7?: number, p8?: number, p9?: number);
4863
4946
  SetCol(col: number, value: MdGeXYZ): void;
4864
4947
  SetCols(col1: MdGeXYZ, col2: MdGeXYZ, col3: MdGeXYZ): void;
@@ -4902,7 +4985,7 @@ export declare class MdGeMat extends MdGeObject {
4902
4985
  /**
4903
4986
  * 表示一个坐标
4904
4987
  */
4905
- export declare class MdGeXYZ extends MdGeObject {
4988
+ export declare class MdGeXYZ extends Mx3dBaseObject {
4906
4989
  constructor(p1?: number | object, p2?: number, p3?: number);
4907
4990
  SetCoord(x: number, y: number, z?: number): void;
4908
4991
  SetX(x: number): void;
@@ -4947,7 +5030,7 @@ export declare class MdGeXYZ extends MdGeObject {
4947
5030
  /**
4948
5031
  * 表示一个变换
4949
5032
  */
4950
- export declare class MdGeTrsf extends MdGeObject {
5033
+ export declare class MdGeTrsf extends Mx3dBaseObject {
4951
5034
  constructor(p?: object);
4952
5035
  SetMirrorByPoint(point: MdGePoint): void;
4953
5036
  SetMirrorByAxis(axis: MdGeAxis): void;
@@ -4977,7 +5060,7 @@ export declare class MdGeTrsf extends MdGeObject {
4977
5060
  /**
4978
5061
  * 表示一个方向
4979
5062
  */
4980
- export declare class MdGeDir extends MdGeObject {
5063
+ export declare class MdGeDir extends Mx3dBaseObject {
4981
5064
  constructor(p1?: MdGeVec | number | object, p2?: number, p3?: number);
4982
5065
  SetCoord(p1: number, p2: number, p3?: number): void;
4983
5066
  SetX(theXv: number): void;
@@ -5020,7 +5103,7 @@ export declare class MdGeDir extends MdGeObject {
5020
5103
  /**
5021
5104
  * 表示一个轴
5022
5105
  */
5023
- export declare class MdGeAxis extends MdGeObject {
5106
+ export declare class MdGeAxis extends Mx3dBaseObject {
5024
5107
  constructor(p1?: MdGePoint | object, p2?: MdGeDir);
5025
5108
  Direction(): MdGeDir;
5026
5109
  Location(): MdGePoint;
@@ -5033,7 +5116,7 @@ export declare class MdGeAxis extends MdGeObject {
5033
5116
  /**
5034
5117
  * 表示右手坐标系。
5035
5118
  */
5036
- export declare class MdGeCSYSR extends MdGeObject {
5119
+ export declare class MdGeCSYSR extends Mx3dBaseObject {
5037
5120
  constructor(p1?: MdGePoint | object, p2?: MdGeDir, p3?: MdGeDir);
5038
5121
  Origin(): MdGePoint;
5039
5122
  XDirection(): MdGeDir;
@@ -5070,7 +5153,7 @@ export declare class MdGeCSYSR extends MdGeObject {
5070
5153
  /**
5071
5154
  * 表示一个点。
5072
5155
  */
5073
- export declare class MdGePoint extends MdGeObject {
5156
+ export declare class MdGePoint extends Mx3dBaseObject {
5074
5157
  constructor(p1?: number | object, p2?: number, p3?: number);
5075
5158
  X(): number;
5076
5159
  Y(): number;
@@ -5108,7 +5191,7 @@ export declare class MdGePoint extends MdGeObject {
5108
5191
  /**
5109
5192
  * 表示一个向量。
5110
5193
  */
5111
- export declare class MdGeVec extends MdGeObject {
5194
+ export declare class MdGeVec extends Mx3dBaseObject {
5112
5195
  constructor(p1?: MdGePoint | number | object, p2?: MdGePoint | number, p3?: number);
5113
5196
  SetCoord(p1: number, p2: number, p3?: number): void;
5114
5197
  X(): number;
@@ -5191,7 +5274,7 @@ export declare class MdGeVec extends MdGeObject {
5191
5274
  /**
5192
5275
  * 表示角度标注
5193
5276
  */
5194
- export declare class MdGeAngleDim extends MdGeObject {
5277
+ export declare class MdGeAngleDim extends Mx3dBaseObject {
5195
5278
  constructor(p1?: MdGeEdge | MdGePoint | object, p2?: MdGeEdge | MdGePoint, p3?: MdGePoint);
5196
5279
  FirstPoint(): MdGePoint;
5197
5280
  SecondPoint(): MdGePoint;
@@ -5236,7 +5319,7 @@ export declare class MdGeAngleDim extends MdGeObject {
5236
5319
  /**
5237
5320
  * 表示一维整数数组。
5238
5321
  */
5239
- export declare class MdGeArray1OfInteger extends MdGeObject {
5322
+ export declare class MdGeArray1OfInteger extends Mx3dBaseObject {
5240
5323
  constructor(p1?: number | object, p2?: number);
5241
5324
  Init(theInteger: number): void;
5242
5325
  Size(): number;
@@ -5258,7 +5341,7 @@ export declare class MdGeArray1OfInteger extends MdGeObject {
5258
5341
  /**
5259
5342
  * 表示一维点数组。
5260
5343
  */
5261
- export declare class MdGeArray1OfPnt extends MdGeObject {
5344
+ export declare class MdGeArray1OfPnt extends Mx3dBaseObject {
5262
5345
  constructor(p1?: number | object, p2?: number);
5263
5346
  Init(thePnt: MdGePoint): void;
5264
5347
  Size(): number;
@@ -5280,7 +5363,7 @@ export declare class MdGeArray1OfPnt extends MdGeObject {
5280
5363
  /**
5281
5364
  * 表示一维实数数组。
5282
5365
  */
5283
- export declare class MdGeArray1OfReal extends MdGeObject {
5366
+ export declare class MdGeArray1OfReal extends Mx3dBaseObject {
5284
5367
  constructor(p1?: number | object, p2?: number);
5285
5368
  Init(theReal: number): void;
5286
5369
  Size(): number;
@@ -5302,7 +5385,7 @@ export declare class MdGeArray1OfReal extends MdGeObject {
5302
5385
  /**
5303
5386
  * 表示二维点数组。
5304
5387
  */
5305
- export declare class MdGeArray2OfPnt extends MdGeObject {
5388
+ export declare class MdGeArray2OfPnt extends Mx3dBaseObject {
5306
5389
  constructor(p1?: number | MdGePoint | object, p2?: number, p3?: number, p4?: number, p5?: number);
5307
5390
  Init(thePoint: MdGePoint): void;
5308
5391
  Size(): number;
@@ -5326,7 +5409,7 @@ export declare class MdGeArray2OfPnt extends MdGeObject {
5326
5409
  /**
5327
5410
  * 表示二维实数数组。
5328
5411
  */
5329
- export declare class MdGeArray2OfReal extends MdGeObject {
5412
+ export declare class MdGeArray2OfReal extends Mx3dBaseObject {
5330
5413
  constructor(p1?: number | object, p2?: number, p3?: number, p4?: number, p5?: number);
5331
5414
  Init(theReal: number): void;
5332
5415
  Size(): number;
@@ -5350,7 +5433,7 @@ export declare class MdGeArray2OfReal extends MdGeObject {
5350
5433
  /**
5351
5434
  * 表示贝塞尔曲线
5352
5435
  */
5353
- export declare class MdGeBezierCurve extends MdGeObject {
5436
+ export declare class MdGeBezierCurve extends Mx3dBaseObject {
5354
5437
  constructor(p1?: MdGeArray1OfPnt | object, p2?: MdGeArray1OfReal);
5355
5438
  Increase(Degree: number): void;
5356
5439
  InsertPoleAfter(p1: number, p2: MdGePoint, p3?: number): void;
@@ -5389,7 +5472,7 @@ export declare class MdGeBezierCurve extends MdGeObject {
5389
5472
  /**
5390
5473
  * 表示贝塞尔曲面
5391
5474
  */
5392
- export declare class MdGeBezierSurface extends MdGeObject {
5475
+ export declare class MdGeBezierSurface extends Mx3dBaseObject {
5393
5476
  constructor(p1?: MdGeArray2OfPnt | object, p2?: MdGeArray2OfReal);
5394
5477
  ExchangeUV(): void;
5395
5478
  Increase(UDeg: number, VDeg: number): void;
@@ -5439,7 +5522,7 @@ export declare class MdGeBezierSurface extends MdGeObject {
5439
5522
  /**
5440
5523
  * 表示倒斜角
5441
5524
  */
5442
- export declare class MdGeChamfer extends MdGeObject {
5525
+ export declare class MdGeChamfer extends Mx3dBaseObject {
5443
5526
  constructor(p?: MdGeShape | object);
5444
5527
  Add(p1: MdGeEdge | number, p2?: MdGeEdge | number, p3?: MdGeEdge, p4?: MdGeFace): void;
5445
5528
  SetDist(Dis: number, IC: number, F: MdGeFace): void;
@@ -5477,7 +5560,7 @@ export declare class MdGeChamfer extends MdGeObject {
5477
5560
  /**
5478
5561
  * 表示一个圆。
5479
5562
  */
5480
- export declare class MdGeCircle extends MdGeObject {
5563
+ export declare class MdGeCircle extends Mx3dBaseObject {
5481
5564
  constructor(p1?: MdGeCSYSR | object, p2?: number);
5482
5565
  SetAxis(theA1: MdGeAxis): void;
5483
5566
  SetLocation(theP: MdGePoint): void;
@@ -5520,7 +5603,7 @@ export declare class MdGeCircle extends MdGeObject {
5520
5603
  /**
5521
5604
  * 表示一个坐标系(左手或右手)
5522
5605
  */
5523
- export declare class MdGeCSYS extends MdGeObject {
5606
+ export declare class MdGeCSYS extends Mx3dBaseObject {
5524
5607
  constructor(p1?: MdGePoint | object, p2?: MdGeDir, p3?: MdGeDir);
5525
5608
  XReverse(): void;
5526
5609
  YReverse(): void;
@@ -5563,7 +5646,7 @@ export declare class MdGeCSYS extends MdGeObject {
5563
5646
  /**
5564
5647
  * 表示一个圆锥
5565
5648
  */
5566
- export declare class MdGeCone extends MdGeObject {
5649
+ export declare class MdGeCone extends Mx3dBaseObject {
5567
5650
  constructor(p1?: MdGeCSYS | object, p2?: number, p3?: number);
5568
5651
  SetAxis(theA1: MdGeAxis): void;
5569
5652
  SetLocation(theLoc: MdGePoint): void;
@@ -5606,7 +5689,7 @@ export declare class MdGeCone extends MdGeObject {
5606
5689
  /**
5607
5690
  * 表示一个圆柱。
5608
5691
  */
5609
- export declare class MdGeCylinder extends MdGeObject {
5692
+ export declare class MdGeCylinder extends Mx3dBaseObject {
5610
5693
  constructor(p1?: MdGeCSYS | object, p2?: number);
5611
5694
  SetAxis(theA1: MdGeAxis): void;
5612
5695
  SetLocation(theLoc: MdGePoint): void;
@@ -5639,6 +5722,7 @@ export declare class MdGeCylinder extends MdGeObject {
5639
5722
  TranslatedBy2Points(theP1: MdGePoint, theP2: MdGePoint): MdGeCylinder;
5640
5723
  Shape(H: number, Angle?: number): MdGeShape;
5641
5724
  Face(p1?: MdGeWire | number, p2?: boolean | number, p3?: number, p4?: number): MdGeFace;
5725
+ Shape3d(H: number, Angle?: number): Mx3dShapeObject;
5642
5726
  }
5643
5727
  /**
5644
5728
  * 表示一个平面
@@ -5646,7 +5730,7 @@ export declare class MdGeCylinder extends MdGeObject {
5646
5730
  /**
5647
5731
  * 表示一个平面
5648
5732
  */
5649
- export declare class MdGePlane extends MdGeObject {
5733
+ export declare class MdGePlane extends Mx3dBaseObject {
5650
5734
  constructor(p1?: MdGeCSYS | MdGePoint | number | object, p2?: MdGeDir | number, p3?: number, p4?: number);
5651
5735
  SetAxis(theA1: MdGeAxis): void;
5652
5736
  SetLocation(theLoc: MdGePoint): void;
@@ -5688,7 +5772,7 @@ export declare class MdGePlane extends MdGeObject {
5688
5772
  /**
5689
5773
  * 表示直径标注
5690
5774
  */
5691
- export declare class MdGeDiameterDim extends MdGeObject {
5775
+ export declare class MdGeDiameterDim extends Mx3dBaseObject {
5692
5776
  constructor(p1?: MdGeCircle | object, p2?: MdGePlane);
5693
5777
  Circle(): MdGeCircle;
5694
5778
  AnchorPoint(): MdGePoint;
@@ -5724,7 +5808,7 @@ export declare class MdGeDiameterDim extends MdGeObject {
5724
5808
  /**
5725
5809
  * 表示一个椭圆
5726
5810
  */
5727
- export declare class MdGeEllipse extends MdGeObject {
5811
+ export declare class MdGeEllipse extends Mx3dBaseObject {
5728
5812
  constructor(p1?: MdGeCSYSR | object, p2?: number, p3?: number);
5729
5813
  SetAxis(theA1: MdGeAxis): void;
5730
5814
  SetLocation(theP: MdGePoint): void;
@@ -6566,6 +6650,48 @@ export declare namespace MdGe {
6566
6650
  DisplayMode_ShadedWithFaceBoundary = 3,
6567
6651
  DisplayMode_Transparency = 4
6568
6652
  }
6653
+ enum MxGradientFillMethod {
6654
+ GradientFillMethod_None = 0,
6655
+ GradientFillMethod_Horizontal = 1,
6656
+ GradientFillMethod_Vertical = 2,
6657
+ GradientFillMethod_Diagonal1 = 3,
6658
+ GradientFillMethod_Diagonal2 = 4,
6659
+ GradientFillMethod_Corner1 = 5,
6660
+ GradientFillMethod_Corner2 = 6,
6661
+ GradientFillMethod_Corner3 = 7,
6662
+ GradientFillMethod_Corner4 = 8,
6663
+ GradientFillMethod_Elliptical = 9,
6664
+ GFM_NONE = 0,
6665
+ GFM_HOR = 1,
6666
+ GFM_VER = 2,
6667
+ GFM_DIAG1 = 3,
6668
+ GFM_DIAG2 = 4,
6669
+ GFM_CORNER1 = 5,
6670
+ GFM_CORNER2 = 6,
6671
+ GFM_CORNER3 = 7,
6672
+ GFM_CORNER4 = 8
6673
+ }
6674
+ enum MxFormat {
6675
+ Format_Unknown = 0,
6676
+ Format_Image = 1,
6677
+ Format_3DS = 2,
6678
+ Format_3MF = 3,
6679
+ Format_AMF = 4,
6680
+ Format_COLLADA = 5,
6681
+ Format_DXF = 6,
6682
+ Format_FBX = 7,
6683
+ Format_GLTF = 8,
6684
+ Format_IGES = 9,
6685
+ Format_OBJ = 10,
6686
+ Format_OCCBREP = 11,
6687
+ Format_OFF = 12,
6688
+ Format_PLY = 13,
6689
+ Format_STEP = 14,
6690
+ Format_STL = 15,
6691
+ Format_VRML = 16,
6692
+ Format_X3D = 17,
6693
+ Format_Blender = 18
6694
+ }
6569
6695
  }
6570
6696
  /**
6571
6697
  * 表示拓扑元素遍历
@@ -6573,7 +6699,7 @@ export declare namespace MdGe {
6573
6699
  /**
6574
6700
  * 表示拓扑元素遍历
6575
6701
  */
6576
- export declare class MdGeExplorer extends MdGeObject {
6702
+ export declare class MdGeExplorer extends Mx3dBaseObject {
6577
6703
  constructor(p1?: MdGeShape | object, p2?: MdGe.MxShapeEnum, p3?: MdGe.MxShapeEnum);
6578
6704
  Init(S: MdGeShape, ToFind: MdGe.MxShapeEnum, ToAvoid?: MdGe.MxShapeEnum): void;
6579
6705
  More(): boolean;
@@ -6591,7 +6717,7 @@ export declare class MdGeExplorer extends MdGeObject {
6591
6717
  /**
6592
6718
  * 表示倒圆角
6593
6719
  */
6594
- export declare class MdGeFillet extends MdGeObject {
6720
+ export declare class MdGeFillet extends Mx3dBaseObject {
6595
6721
  constructor(p1?: MdGeShape | object, p2?: MdGe.MxCF3dFilletShapeEnum);
6596
6722
  SetParams(Tang: number, Tesp: number, T2d: number, TApp3d: number, TolApp2d: number, Fleche: number): void;
6597
6723
  Add(p1: MdGeEdge | number, p2?: MdGeEdge | number, p3?: MdGeEdge): void;
@@ -6634,7 +6760,7 @@ export declare class MdGeFillet extends MdGeObject {
6634
6760
  /**
6635
6761
  * 表示双曲线。
6636
6762
  */
6637
- export declare class MdGeHypr extends MdGeObject {
6763
+ export declare class MdGeHypr extends Mx3dBaseObject {
6638
6764
  constructor(p1?: MdGeCSYSR | object, p2?: number, p3?: number);
6639
6765
  SetAxis(theA1: MdGeAxis): void;
6640
6766
  SetLocation(theP: MdGePoint): void;
@@ -6686,7 +6812,7 @@ export declare class MdGeHypr extends MdGeObject {
6686
6812
  /**
6687
6813
  * 表示一个Box
6688
6814
  */
6689
- export declare class MdGeBox extends MdGeObject {
6815
+ export declare class MdGeBox extends Mx3dBaseObject {
6690
6816
  constructor(p1?: MdGePoint | number | MdGeCSYSR | object, p2?: MdGePoint | number, p3?: number, p4?: number);
6691
6817
  Init(p1: MdGePoint | number | MdGeCSYSR, p2: MdGePoint | number, p3?: number, p4?: number): void;
6692
6818
  Shape(): MdGeShape;
@@ -6705,7 +6831,7 @@ export declare class MdGeBox extends MdGeObject {
6705
6831
  /**
6706
6832
  * 表示B样条曲线
6707
6833
  */
6708
- export declare class MdGeBSplineCurve extends MdGeObject {
6834
+ export declare class MdGeBSplineCurve extends Mx3dBaseObject {
6709
6835
  constructor(p1?: MdGeArray1OfPnt | object, p2?: MdGeArray1OfReal, p3?: MdGeArray1OfInteger, p4?: number, p5?: boolean);
6710
6836
  IncreaseDegree(Degree: number): void;
6711
6837
  IncreaseMultiplicity(p1: number, p2: number, p3?: number): void;
@@ -6760,7 +6886,7 @@ export declare class MdGeBSplineCurve extends MdGeObject {
6760
6886
  /**
6761
6887
  * 表示B样条曲面
6762
6888
  */
6763
- export declare class MdGeBSplineSurface extends MdGeObject {
6889
+ export declare class MdGeBSplineSurface extends Mx3dBaseObject {
6764
6890
  constructor(p1?: MdGeArray2OfPnt | object, p2?: MdGeArray1OfReal, p3?: MdGeArray1OfReal, p4?: MdGeArray1OfInteger, p5?: MdGeArray1OfInteger, p6?: number, p7?: number, p8?: boolean, p9?: boolean);
6765
6891
  ExchangeUV(): void;
6766
6892
  SetUPeriodic(): void;
@@ -6840,7 +6966,7 @@ export declare class MdGeBSplineSurface extends MdGeObject {
6840
6966
  /**
6841
6967
  * 表示插值B样条曲线
6842
6968
  */
6843
- export declare class MdGeInterpolateBSpl extends MdGeObject {
6969
+ export declare class MdGeInterpolateBSpl extends Mx3dBaseObject {
6844
6970
  constructor(p1?: MdGeArray1OfPnt | object, p2?: boolean | MdGeArray1OfReal, p3?: number | boolean, p4?: number);
6845
6971
  Load(InitialTangent: MdGeVec, FinalTangent: MdGeVec, Scale?: boolean): void;
6846
6972
  Perform(): void;
@@ -6853,7 +6979,7 @@ export declare class MdGeInterpolateBSpl extends MdGeObject {
6853
6979
  /**
6854
6980
  * 表示长度标注
6855
6981
  */
6856
- export declare class MdGeLengthDim extends MdGeObject {
6982
+ export declare class MdGeLengthDim extends Mx3dBaseObject {
6857
6983
  constructor(p1?: MdGeEdge | MdGePoint | object, p2?: MdGePlane | MdGePoint, p3?: MdGePlane);
6858
6984
  FirstPoint(): MdGePoint;
6859
6985
  SecondPoint(): MdGePoint;
@@ -6890,7 +7016,7 @@ export declare class MdGeLengthDim extends MdGeObject {
6890
7016
  /**
6891
7017
  * 表示一条直线
6892
7018
  */
6893
- export declare class MdGeLine extends MdGeObject {
7019
+ export declare class MdGeLine extends Mx3dBaseObject {
6894
7020
  constructor(p1?: MdGePoint | object, p2?: MdGeDir);
6895
7021
  Reverse(): void;
6896
7022
  Reversed(): MdGeLine;
@@ -6933,7 +7059,7 @@ export declare class MdGeLine extends MdGeObject {
6933
7059
  /**
6934
7060
  * 表示形状链表迭代器
6935
7061
  */
6936
- export declare class MdGeListIteratorOfListOfShape extends MdGeObject {
7062
+ export declare class MdGeListIteratorOfListOfShape extends Mx3dBaseObject {
6937
7063
  constructor(p?: object);
6938
7064
  More(): boolean;
6939
7065
  Next(): void;
@@ -6946,7 +7072,7 @@ export declare class MdGeListIteratorOfListOfShape extends MdGeObject {
6946
7072
  /**
6947
7073
  * 表示形状链表
6948
7074
  */
6949
- export declare class MdGeListOfShape extends MdGeObject {
7075
+ export declare class MdGeListOfShape extends Mx3dBaseObject {
6950
7076
  constructor(p?: object);
6951
7077
  begin(): MdGeListIteratorOfListOfShape;
6952
7078
  end(): MdGeListIteratorOfListOfShape;
@@ -6970,7 +7096,7 @@ export declare class MdGeListOfShape extends MdGeObject {
6970
7096
  /**
6971
7097
  * 表示放样
6972
7098
  */
6973
- export declare class MdGeLoft extends MdGeObject {
7099
+ export declare class MdGeLoft extends Mx3dBaseObject {
6974
7100
  constructor(p1?: boolean | object, p2?: boolean, p3?: number);
6975
7101
  Init(isSolid?: boolean, ruled?: boolean, pres3d?: number): void;
6976
7102
  AddWire(wire: MdGeWire): void;
@@ -6995,7 +7121,7 @@ export declare class MdGeLoft extends MdGeObject {
6995
7121
  /**
6996
7122
  * 表示薄实体
6997
7123
  */
6998
- export declare class MdGeMakeThickSolid extends MdGeObject {
7124
+ export declare class MdGeMakeThickSolid extends Mx3dBaseObject {
6999
7125
  constructor(p?: object);
7000
7126
  MakeThickSolidBySimple(theS: MdGeShape, theOffsetValue: number): void;
7001
7127
  MakeThickSolidByJoin(S: MdGeShape, ClosingFaces: MdGeListOfShape, Offset: number, Tol: number, Mode?: MdGe.MxOffsetModeEnum, Intersection?: boolean, SelfInter?: boolean, Join?: MdGe.MxGAJoinTypeEnum, RemoveIntEdges?: boolean): void;
@@ -7007,7 +7133,7 @@ export declare class MdGeMakeThickSolid extends MdGeObject {
7007
7133
  /**
7008
7134
  * 表示抛物线
7009
7135
  */
7010
- export declare class MdGeParab extends MdGeObject {
7136
+ export declare class MdGeParab extends Mx3dBaseObject {
7011
7137
  constructor(p1?: MdGeCSYSR | object, p2?: number);
7012
7138
  SetAxis(theA1: MdGeAxis): void;
7013
7139
  SetFocal(theFocal: number): void;
@@ -7048,7 +7174,7 @@ export declare class MdGeParab extends MdGeObject {
7048
7174
  /**
7049
7175
  * 表示管道
7050
7176
  */
7051
- export declare class MdGePipe extends MdGeObject {
7177
+ export declare class MdGePipe extends Mx3dBaseObject {
7052
7178
  constructor(p1?: MdGeWire | object, p2?: MdGeShape, p3?: MdGe.MxGFTrihedron, p4?: boolean);
7053
7179
  FirstShape(): MdGeShape;
7054
7180
  LastShape(): MdGeShape;
@@ -7062,7 +7188,7 @@ export declare class MdGePipe extends MdGeObject {
7062
7188
  /**
7063
7189
  * 表示拟合B样条曲线
7064
7190
  */
7065
- export declare class MdGePointsToBSpl extends MdGeObject {
7191
+ export declare class MdGePointsToBSpl extends Mx3dBaseObject {
7066
7192
  constructor(p1?: MdGeArray1OfPnt | object, p2?: number, p3?: number, p4?: MdGe.MxGAShapeEnum, p5?: number);
7067
7193
  Init(Points: MdGeArray1OfPnt, Parameters: MdGeArray1OfReal, DegMin?: number, DegMax?: number, Continuity?: MdGe.MxGAShapeEnum, Tol3D?: number): void;
7068
7194
  Curve(): MdGeBSplineCurve;
@@ -7074,7 +7200,7 @@ export declare class MdGePointsToBSpl extends MdGeObject {
7074
7200
  /**
7075
7201
  * 表示拟合B样条曲面
7076
7202
  */
7077
- export declare class MdGePointsToBSplSurface extends MdGeObject {
7203
+ export declare class MdGePointsToBSplSurface extends Mx3dBaseObject {
7078
7204
  constructor(p1?: MdGeArray2OfPnt, p2?: number, p3?: number, p4?: MdGe.MxGAShapeEnum, p5?: number);
7079
7205
  Init(Points: MdGeArray2OfPnt, DegMin?: number, DegMax?: number, Continuity?: MdGe.MxGAShapeEnum, Tol3D?: number): void;
7080
7206
  Interpolate(p1: MdGeArray2OfPnt | MdGeArray2OfReal, p2?: boolean | number, p3?: number, p4?: number, p5?: number): void;
@@ -7087,7 +7213,7 @@ export declare class MdGePointsToBSplSurface extends MdGeObject {
7087
7213
  /**
7088
7214
  * 表示拉伸体
7089
7215
  */
7090
- export declare class MdGePrism extends MdGeObject {
7216
+ export declare class MdGePrism extends Mx3dBaseObject {
7091
7217
  constructor(p1?: MdGeShape | object, p2?: MdGeVec, p3?: boolean, p4?: boolean);
7092
7218
  FirstShape(theShape?: MdGeShape): MdGeShape;
7093
7219
  LastShape(theShape?: MdGeShape): MdGeShape;
@@ -7100,7 +7226,7 @@ export declare class MdGePrism extends MdGeObject {
7100
7226
  /**
7101
7227
  * 表示半径标注
7102
7228
  */
7103
- export declare class MdGeRadiusDim extends MdGeObject {
7229
+ export declare class MdGeRadiusDim extends Mx3dBaseObject {
7104
7230
  constructor(p1?: MdGeCircle | object, p2?: MdGePoint);
7105
7231
  Circle(): MdGeCircle;
7106
7232
  AnchorPoint(): MdGePoint;
@@ -7134,7 +7260,7 @@ export declare class MdGeRadiusDim extends MdGeObject {
7134
7260
  /**
7135
7261
  * 表示一个矩形
7136
7262
  */
7137
- export declare class MdGeRect extends MdGeObject {
7263
+ export declare class MdGeRect extends Mx3dBaseObject {
7138
7264
  constructor(p1?: MdGeCSYSR | object, p2?: number, p3?: number);
7139
7265
  Position(): MdGeCSYSR;
7140
7266
  SetPosition(thePosition: MdGeCSYSR): void;
@@ -7157,7 +7283,7 @@ export declare class MdGeRect extends MdGeObject {
7157
7283
  /**
7158
7284
  * 表示旋转体
7159
7285
  */
7160
- export declare class MdGeRevol extends MdGeObject {
7286
+ export declare class MdGeRevol extends Mx3dBaseObject {
7161
7287
  constructor(p1?: MdGeShape | object, p2?: MdGeAxis, p3?: number, p4?: boolean);
7162
7288
  FirstShape(theShape?: MdGeShape): MdGeShape;
7163
7289
  LastShape(theShape?: MdGeShape): MdGeShape;
@@ -7171,7 +7297,7 @@ export declare class MdGeRevol extends MdGeObject {
7171
7297
  /**
7172
7298
  * 表示一个球体
7173
7299
  */
7174
- export declare class MdGeSphere extends MdGeObject {
7300
+ export declare class MdGeSphere extends Mx3dBaseObject {
7175
7301
  constructor(p1?: MdGeCSYS | number | object, p2?: number, p3?: number, p4?: number);
7176
7302
  SetLocation(theLoc: MdGePoint): void;
7177
7303
  SetPosition(theA3: MdGeCSYS): void;
@@ -7211,7 +7337,7 @@ export declare class MdGeSphere extends MdGeObject {
7211
7337
  /**
7212
7338
  * 表示文字
7213
7339
  */
7214
- export declare class MdGeText extends MdGeObject {
7340
+ export declare class MdGeText extends Mx3dBaseObject {
7215
7341
  constructor(p1?: string | object, p2?: number, p3?: MdGeCSYSR);
7216
7342
  SetText(theText: string): void;
7217
7343
  Position(): MdGePoint;
@@ -7236,7 +7362,7 @@ export declare class MdGeText extends MdGeObject {
7236
7362
  /**
7237
7363
  * 表示文字标签
7238
7364
  */
7239
- export declare class MdGeTextLabel extends MdGeObject {
7365
+ export declare class MdGeTextLabel extends Mx3dBaseObject {
7240
7366
  constructor(p1?: string | object, p2?: number, p3?: MdGePoint);
7241
7367
  SetColor(theColor: MdGeColor): void;
7242
7368
  SetColor(theR: number, theG: number, theB: number): void;
@@ -7289,7 +7415,7 @@ export declare class MdGeTopo {
7289
7415
  /**
7290
7416
  * 表示圆环
7291
7417
  */
7292
- export declare class MdGeTorus extends MdGeObject {
7418
+ export declare class MdGeTorus extends Mx3dBaseObject {
7293
7419
  constructor(p1?: MdGeCSYS | object, p2?: number, p3?: number);
7294
7420
  SetAxis(theA1: MdGeAxis): void;
7295
7421
  SetLocation(theLoc: MdGePoint): void;
@@ -7333,7 +7459,7 @@ export declare class MdGeTorus extends MdGeObject {
7333
7459
  /**
7334
7460
  * 形状变换类
7335
7461
  */
7336
- export declare class MdGeTransform extends MdGeObject {
7462
+ export declare class MdGeTransform extends Mx3dBaseObject {
7337
7463
  constructor(p1?: MdGeTrsf | MdGeShape | object, p2?: MdGeTrsf, p3?: boolean, p4?: boolean);
7338
7464
  Perform(theShape: MdGeShape, theCopyGeom?: boolean, theCopyMesh?: boolean): void;
7339
7465
  ModifiedShape(S: MdGeShape): MdGeShape;
@@ -7345,7 +7471,7 @@ export declare class MdGeTransform extends MdGeObject {
7345
7471
  /**
7346
7472
  * 表示一个楔形
7347
7473
  */
7348
- export declare class MdGeWedge extends MdGeObject {
7474
+ export declare class MdGeWedge extends Mx3dBaseObject {
7349
7475
  constructor(p1?: number | MdGeCSYSR | object, p2?: number, p3?: number, p4?: number, p5?: number, p6?: number, p7?: number, p8?: number);
7350
7476
  Shell(): MdGeShell;
7351
7477
  Solid(): MdGeSolid;
@@ -7357,7 +7483,7 @@ export declare class MdGeWedge extends MdGeObject {
7357
7483
  /**
7358
7484
  * 表示几何曲面句柄
7359
7485
  */
7360
- export declare class MdGeHGeomSurface extends MdGeObject {
7486
+ export declare class MdGeHGeomSurface extends Mx3dBaseObject {
7361
7487
  constructor(p?: object);
7362
7488
  DynamicType(): string;
7363
7489
  }
@@ -7367,7 +7493,7 @@ export declare class MdGeHGeomSurface extends MdGeObject {
7367
7493
  /**
7368
7494
  * 表示几何平面句柄
7369
7495
  */
7370
- export declare class MdGeHGeomPlane extends MdGeObject {
7496
+ export declare class MdGeHGeomPlane extends Mx3dBaseObject {
7371
7497
  constructor(p?: object);
7372
7498
  DownCast(hGeomSurface: MdGeHGeomSurface): MdGeHGeomPlane;
7373
7499
  Axis(): MdGeAxis;
@@ -7412,7 +7538,7 @@ export declare class MdGeBRep {
7412
7538
  openVrmlFromUrlByOCAF(theModelPath: string): string;
7413
7539
  getLabelAttributes(theEntry: string): string;
7414
7540
  refreshDocTree(): string;
7415
- saveStepFile(fileName: string): void;
7541
+ saveStepFile(fileName: string, theDoc: Mx3dDbDocument): void;
7416
7542
  ptCanvasToView(x: number, y: number): MdGePoint;
7417
7543
  RemoveAllLights(): void;
7418
7544
  AddLight(theLight: MdGeLight): void;
@@ -7440,6 +7566,7 @@ export declare class MdGeBRep {
7440
7566
  moveObjectByTrsf(theEntry: string, theTrsf: MdGeTrsf): void;
7441
7567
  printSelObjInfo(): void;
7442
7568
  drawAisObjChildren(): void;
7569
+ setGradientBgColor(theColor1: MdGeColor, theColor2: MdGeColor, theMethod: MdGe.MxGradientFillMethod): void;
7443
7570
  getVertexPosition(theVertex: MdGeVertex): MdGePoint;
7444
7571
  getCircleCenter(theEdge: MdGeEdge): MdGePoint;
7445
7572
  getCircleDiameter(theEdge: MdGeEdge): number;
@@ -7460,7 +7587,7 @@ export declare class MdGeBRep {
7460
7587
  /**
7461
7588
  * 表示颜色
7462
7589
  */
7463
- export declare class MdGeColor extends MdGeObject {
7590
+ export declare class MdGeColor extends Mx3dBaseObject {
7464
7591
  constructor(p1?: MdGe.MxNameOfColor | number | object, p2?: number, p3?: number, p4?: MdGe.MxTypeOfColor);
7465
7592
  Name(): MdGe.MxNameOfColor;
7466
7593
  SetValues(p1: MdGe.MxNameOfColor | number, p2?: number, p3?: number, p4?: MdGe.MxTypeOfColor): void;
@@ -7485,7 +7612,7 @@ export declare class MdGeColor extends MdGeObject {
7485
7612
  /**
7486
7613
  * 表示材质
7487
7614
  */
7488
- export declare class MdGeMaterialAspect extends MdGeObject {
7615
+ export declare class MdGeMaterialAspect extends Mx3dBaseObject {
7489
7616
  constructor(p?: MdGe.MxNameOfMaterial | object);
7490
7617
  NumberOfMaterials(): number;
7491
7618
  MaterialFromName(theName: string): MdGe.MxNameOfMaterial;
@@ -7522,7 +7649,7 @@ export declare class MdGeMaterialAspect extends MdGeObject {
7522
7649
  /**
7523
7650
  * 表示形状序列集合
7524
7651
  */
7525
- export declare class MdGeSequenceOfShape extends MdGeObject {
7652
+ export declare class MdGeSequenceOfShape extends Mx3dBaseObject {
7526
7653
  constructor(p?: object);
7527
7654
  begin(): MdGeSequenceIteratorOfSequenceOfShape;
7528
7655
  end(): MdGeSequenceIteratorOfSequenceOfShape;
@@ -7546,7 +7673,7 @@ export declare class MdGeSequenceOfShape extends MdGeObject {
7546
7673
  /**
7547
7674
  * 表示形状序列迭代器
7548
7675
  */
7549
- export declare class MdGeSequenceIteratorOfSequenceOfShape extends MdGeObject {
7676
+ export declare class MdGeSequenceIteratorOfSequenceOfShape extends Mx3dBaseObject {
7550
7677
  constructor(p?: object);
7551
7678
  More(): boolean;
7552
7679
  Next(): void;
@@ -7556,7 +7683,7 @@ export declare class MdGeSequenceIteratorOfSequenceOfShape extends MdGeObject {
7556
7683
  /**
7557
7684
  * 表示由Edges链接形成Wires
7558
7685
  */
7559
- export declare class MdGeMakeWires extends MdGeObject {
7686
+ export declare class MdGeMakeWires extends Mx3dBaseObject {
7560
7687
  constructor(p?: object);
7561
7688
  ConnectEdgesToWires(edges: MdGeSequenceOfShape, toler: number, shared: boolean): MdGeSequenceOfShape;
7562
7689
  ConnectWiresToWires(iwires: MdGeSequenceOfShape, toler: number, shared: boolean): MdGeSequenceOfShape;
@@ -7564,7 +7691,7 @@ export declare class MdGeMakeWires extends MdGeObject {
7564
7691
  /**
7565
7692
  * 表示Wire生成Face
7566
7693
  */
7567
- export declare class MdGeMakeFace extends MdGeObject {
7694
+ export declare class MdGeMakeFace extends Mx3dBaseObject {
7568
7695
  constructor(p?: MdGeWire | object);
7569
7696
  Add(wire: MdGeWire): void;
7570
7697
  Face(): MdGeFace;
@@ -7572,14 +7699,14 @@ export declare class MdGeMakeFace extends MdGeObject {
7572
7699
  /**
7573
7700
  * 三点圆弧
7574
7701
  */
7575
- export declare class MdGeMakeArcOfCircle extends MdGeObject {
7702
+ export declare class MdGeMakeArcOfCircle extends Mx3dBaseObject {
7576
7703
  constructor(p1: MdGePoint | object, p2?: MdGePoint, p3?: MdGePoint);
7577
7704
  Edge(): MdGeEdge;
7578
7705
  }
7579
7706
  /**
7580
7707
  * 光照
7581
7708
  */
7582
- export declare class MdGeLight extends MdGeObject {
7709
+ export declare class MdGeLight extends Mx3dBaseObject {
7583
7710
  constructor(p: MdGe.MxTypeOfLightSource | object);
7584
7711
  CopyFrom(theLight: MdGeLight): void;
7585
7712
  Type(): MdGe.MxTypeOfLightSource;
@@ -7616,7 +7743,7 @@ export declare class MdGeLight extends MdGeObject {
7616
7743
  Range(): number;
7617
7744
  SetRange(theValue: number): void;
7618
7745
  }
7619
- export declare class MdGeArrowAspect extends MdGeObject {
7746
+ export declare class MdGeArrowAspect extends Mx3dBaseObject {
7620
7747
  constructor(p1?: number | object, p2?: number);
7621
7748
  SetAngle(anAngle: number): void;
7622
7749
  Angle(): number;
@@ -7626,7 +7753,7 @@ export declare class MdGeArrowAspect extends MdGeObject {
7626
7753
  IsZoomable(): boolean;
7627
7754
  SetColor(theColor: MdGeColor): void;
7628
7755
  }
7629
- export declare class MdGeDimAspect extends MdGeObject {
7756
+ export declare class MdGeDimAspect extends Mx3dBaseObject {
7630
7757
  constructor(p?: object);
7631
7758
  LineAspect(): MdGeLineAspect;
7632
7759
  SetLineAspect(theAspect: MdGeLineAspect): void;
@@ -7656,13 +7783,13 @@ export declare class MdGeDimAspect extends MdGeObject {
7656
7783
  SetValueStringFormat(theFormat: string): void;
7657
7784
  ValueStringFormat(): string;
7658
7785
  }
7659
- export declare class MdGeLineAspect extends MdGeObject {
7786
+ export declare class MdGeLineAspect extends Mx3dBaseObject {
7660
7787
  constructor(p1: MdGeColor | object, p2?: MdGe.MxTypeOfLine, p3?: number);
7661
7788
  SetColor(theColor: MdGeColor): void;
7662
7789
  SetTypeOfLine(theType: MdGe.MxTypeOfLine): void;
7663
7790
  SetWidth(theWidth: number): void;
7664
7791
  }
7665
- export declare class MdGeTextAspect extends MdGeObject {
7792
+ export declare class MdGeTextAspect extends Mx3dBaseObject {
7666
7793
  constructor(p?: object);
7667
7794
  SetColor(theColor: MdGeColor): void;
7668
7795
  SetFont(theFont: string): void;
@@ -7677,7 +7804,7 @@ export declare class MdGeTextAspect extends MdGeObject {
7677
7804
  VerticalJustification(): MdGe.MxVerticalTextAlignment;
7678
7805
  MxTextPath(): MdGe.MxTextPath;
7679
7806
  }
7680
- export declare class MdGeApplication extends MdGeObject {
7807
+ export declare class MdGeApplication extends Mx3dBaseObject {
7681
7808
  constructor(p?: object);
7682
7809
  NbDocuments(): number;
7683
7810
  GetDocument(index: number): MdGeDocument;
@@ -7685,7 +7812,7 @@ export declare class MdGeApplication extends MdGeObject {
7685
7812
  InitDocument(aDoc: MdGeDocument): void;
7686
7813
  Close(aDoc: MdGeDocument): void;
7687
7814
  }
7688
- export declare class MdGeDocument extends MdGeObject {
7815
+ export declare class MdGeDocument extends Mx3dBaseObject {
7689
7816
  constructor(p: object);
7690
7817
  IsSaved(): boolean;
7691
7818
  IsChanged(): boolean;
@@ -7727,7 +7854,7 @@ export declare class MdGeDocument extends MdGeObject {
7727
7854
  ModificationMode(): boolean;
7728
7855
  BeforeClose(): void;
7729
7856
  }
7730
- export declare class MdGeDocShapeTool extends MdGeObject {
7857
+ export declare class MdGeDocShapeTool extends Mx3dBaseObject {
7731
7858
  constructor(p: MdGeLabel | object);
7732
7859
  IsTopLevel(L: MdGeLabel): boolean;
7733
7860
  IsFree(L: MdGeLabel): boolean;
@@ -7769,7 +7896,7 @@ export declare class MdGeDocShapeTool extends MdGeObject {
7769
7896
  SetLocation(theShapeLabel: MdGeLabel, theLoc: MdGeLocation): MdGeLabel;
7770
7897
  Expand(Shape: MdGeLabel): boolean;
7771
7898
  }
7772
- export declare class MdGeDocColorTool extends MdGeObject {
7899
+ export declare class MdGeDocColorTool extends Mx3dBaseObject {
7773
7900
  constructor(p: MdGeLabel | object);
7774
7901
  AutoNaming(): boolean;
7775
7902
  SetAutoNaming(theIsAutoNaming: boolean): void;
@@ -7790,7 +7917,7 @@ export declare class MdGeDocColorTool extends MdGeObject {
7790
7917
  SetColorByLayer(shapeLabel: MdGeLabel, isColorByLayer: boolean): void;
7791
7918
  ReverseChainsOfTreeNodes(): boolean;
7792
7919
  }
7793
- export declare class MdGeLabel extends MdGeObject {
7920
+ export declare class MdGeLabel extends Mx3dBaseObject {
7794
7921
  constructor(p?: object);
7795
7922
  Nullify(): void;
7796
7923
  Tag(): number;
@@ -7816,7 +7943,7 @@ export declare class MdGeLabel extends MdGeObject {
7816
7943
  HasLowerNode(otherLabel: MdGeLabel): boolean;
7817
7944
  HasGreaterNode(otherLabel: MdGeLabel): boolean;
7818
7945
  }
7819
- export declare class MdGeLabelSequence extends MdGeObject {
7946
+ export declare class MdGeLabelSequence extends Mx3dBaseObject {
7820
7947
  constructor(p?: object);
7821
7948
  Size(): number;
7822
7949
  Length(): number;
@@ -7835,7 +7962,7 @@ export declare class MdGeLabelSequence extends MdGeObject {
7835
7962
  Value(theIndex: number): MdGeLabel;
7836
7963
  SetValue(theIndex: number, theItem: MdGeLabel): void;
7837
7964
  }
7838
- export declare class MdGeLocation extends MdGeObject {
7965
+ export declare class MdGeLocation extends Mx3dBaseObject {
7839
7966
  constructor(p?: MdGeTrsf | object);
7840
7967
  IsIdentity(): boolean;
7841
7968
  Identity(): void;
@@ -7852,7 +7979,7 @@ export declare class MdGeLocation extends MdGeObject {
7852
7979
  Clear(): void;
7853
7980
  ScalePrec(): number;
7854
7981
  }
7855
- export declare class MdGeLabelTree extends MdGeObject {
7982
+ export declare class MdGeLabelTree extends Mx3dBaseObject {
7856
7983
  constructor(p?: object);
7857
7984
  nodeSiblingPrevious(id: number): number;
7858
7985
  nodeSiblingNext(id: number): number;
@@ -7867,16 +7994,16 @@ export declare class MdGeLabelTree extends MdGeObject {
7867
7994
  clear(): void;
7868
7995
  appendChild(parentId: number, data: MdGeLabel): number;
7869
7996
  }
7870
- export declare class MdGeDocReader extends MdGeObject {
7997
+ export declare class MdGeDocReader extends Mx3dBaseObject {
7871
7998
  constructor(p: string | object);
7872
7999
  ReadFile(filename: string): boolean;
7873
8000
  ReadFile2(filename: string): boolean;
7874
8001
  }
7875
- export declare class MdGeDocWriter extends MdGeObject {
8002
+ export declare class MdGeDocWriter extends Mx3dBaseObject {
7876
8003
  constructor(p: string | object);
7877
8004
  WriteFile(theDoc: MdGeDocument, fileName: string): boolean;
7878
8005
  }
7879
- export declare class MdGeAisContext extends MdGeObject {
8006
+ export declare class MdGeAisContext extends Mx3dBaseObject {
7880
8007
  constructor(p?: object);
7881
8008
  DisplayStatus(anIobj: MdGeAisObject): MdGe.MxDisplayStatus;
7882
8009
  IsDisplayed(aniobj: MdGeAisObject, aMode?: number): boolean;
@@ -7899,7 +8026,7 @@ export declare class MdGeAisContext extends MdGeObject {
7899
8026
  RecomputeSelectionOnly(anIObj: MdGeAisObject): void;
7900
8027
  Update(theIObj: MdGeAisObject, theUpdateViewer: boolean): void;
7901
8028
  }
7902
- export declare class MdGeAisObject extends MdGeObject {
8029
+ export declare class MdGeAisObject extends Mx3dBaseObject {
7903
8030
  constructor(p?: object);
7904
8031
  }
7905
8032
  export declare class MdGeAisShape extends MdGeAisObject {
@@ -7923,7 +8050,7 @@ export declare class MdGeAisShape extends MdGeAisObject {
7923
8050
  Material(): MdGe.MxNameOfMaterial;
7924
8051
  Transparency(): number;
7925
8052
  }
7926
- export declare class MdGeBndBox extends MdGeObject {
8053
+ export declare class MdGeBndBox extends Mx3dBaseObject {
7927
8054
  constructor(theMin?: MdGePoint | object, theMax?: MdGePoint);
7928
8055
  SetWhole(): void;
7929
8056
  SetVoid(): void;
@@ -7999,7 +8126,7 @@ export declare class MdGeAisTexturedShape extends MdGeAisObject {
7999
8126
  SetShowTriangles(theToShowTriangles: boolean): void;
8000
8127
  TextureModulate(): boolean;
8001
8128
  }
8002
- export declare class MdGeSpliter extends MdGeObject {
8129
+ export declare class MdGeSpliter extends Mx3dBaseObject {
8003
8130
  constructor(p?: object);
8004
8131
  SetTools(theLS: MdGeShape[]): void;
8005
8132
  SetArguments(theLS: MdGeShape[]): void;
@@ -8008,6 +8135,72 @@ export declare class MdGeSpliter extends MdGeObject {
8008
8135
  HasWarnings(): boolean;
8009
8136
  Shapes(): MdGeShape[];
8010
8137
  }
8138
+ export declare class Mx3dGeBndBox extends Mx3dGeObject {
8139
+ constructor(p1?: Mx3dGePoint | object, p2?: Mx3dGePoint);
8140
+ }
8141
+ export declare class Mx3dGeColor extends Mx3dBaseObject {
8142
+ constructor(p1?: MdGe.MxNameOfColor | number | object, p2?: number, p3?: number);
8143
+ }
8144
+ export declare class Mx3dDbDocument extends Mx3dDbObject {
8145
+ constructor(p?: object);
8146
+ read(theFilePath: string, theFormat: MdGe.MxFormat): boolean;
8147
+ getAccessLabel(): Mx3dDbLabel;
8148
+ getShapesLabel(): Mx3dDbLabel;
8149
+ getColorsLabel(): Mx3dDbLabel;
8150
+ getLayersLabel(): Mx3dDbLabel;
8151
+ getDocName(): string;
8152
+ }
8153
+ export declare class Mx3dDbLabel extends Mx3dDbObject {
8154
+ constructor(p?: object);
8155
+ setShape(theShape: Mx3dShapeObject): boolean;
8156
+ getShape(): Mx3dShapeObject;
8157
+ hasChildLabel(): boolean;
8158
+ getChildLabels(): Mx3dLabelSequence;
8159
+ hasParentLabel(): boolean;
8160
+ getParentLabel(): Mx3dDbLabel;
8161
+ addChildLabel(): Mx3dDbLabel;
8162
+ addChildShape(theShape: Mx3dShapeObject): Mx3dDbLabel;
8163
+ isReference(): boolean;
8164
+ isAssembly(): boolean;
8165
+ isSimpleShape(): boolean;
8166
+ isTopLevel(): boolean;
8167
+ isFree(): boolean;
8168
+ isShape(): boolean;
8169
+ isComponent(): boolean;
8170
+ isCompound(): boolean;
8171
+ isSubShape(): boolean;
8172
+ getReferredLabel(): Mx3dDbLabel;
8173
+ addAssemblyLabel(theShape: Mx3dShapeObject): Mx3dDbLabel;
8174
+ getLocation(): Mx3dGeLocation;
8175
+ isSetColor(): boolean;
8176
+ setColor(theColor: Mx3dGeColor): void;
8177
+ getColor(): Mx3dGeColor;
8178
+ getName(): string;
8179
+ getEntry(): string;
8180
+ getAttributeStr(): string;
8181
+ }
8182
+ export declare class Mx3dLabelSequence extends Mx3dBaseObject {
8183
+ constructor(p?: object);
8184
+ }
8185
+ export declare class Mx3dLabelSequenceIterator extends Mx3dBaseObject {
8186
+ constructor(theLabelSequence: Mx3dLabelSequence | object);
8187
+ More(): boolean;
8188
+ Next(): void;
8189
+ Value(): Mx3dDbLabel;
8190
+ }
8191
+ export declare class Mx3dGeLocation extends Mx3dGeObject {
8192
+ constructor(p?: object);
8193
+ Multiplied(theLocation: Mx3dGeLocation): Mx3dGeLocation;
8194
+ }
8195
+ export declare class Mx3dGePoint extends Mx3dGeObject {
8196
+ constructor(p1?: number | object, p2?: number, p3?: number);
8197
+ X(): number;
8198
+ Y(): number;
8199
+ Z(): number;
8200
+ setX(theX: number): void;
8201
+ setY(theY: number): void;
8202
+ setZ(theZ: number): void;
8203
+ }
8011
8204
  export declare function loadMxCADassembly3d(config: MxDraw3dConfig, call?: (mxDraw3d: MxDraw3d) => void): Promise<MxDraw3d>;
8012
8205
  export type Map = any;
8013
8206
  export declare class MxMap {