mxcad 1.0.229 → 1.0.231

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
@@ -371,17 +371,6 @@ export declare class McObjectId {
371
371
  * ```
372
372
  */
373
373
  getMcDbDimension(): McDbDimension | null;
374
- /**
375
- * 同步自定义实体
376
- * @example
377
- * ```ts
378
- * import { McObjectId } from "mxcad";
379
- *
380
- * let objId = new McObjectId();
381
- * objId.syncMcDbCustomEntity();
382
- * ```
383
- */
384
- syncMcDbCustomEntity(): void;
385
374
  /**
386
375
  * 获取自定义实体
387
376
  * @example
@@ -468,8 +457,6 @@ export declare class McDbObject extends McRxObject {
468
457
  * @example
469
458
  * ```ts
470
459
  * import { McDbObject } from "mxcad";
471
- *
472
- * const obj = new McDbObject();
473
460
  * const id = obj.getObjectID();
474
461
  * ```
475
462
  */
@@ -603,15 +590,14 @@ export declare class McDbObject extends McRxObject {
603
590
  */
604
591
  getGripPoints(): McGePoint3dArray;
605
592
  /**
606
- * 与对象相关的临时关系数
607
- */
593
+ * @internal
594
+ * MxCAD辅助,内部使用
595
+ * ```
596
+ */
608
597
  tempRelationObject(): number;
609
598
  /**
610
- * 释放临时关系对象
611
- * @example
612
- * ```ts
613
- * //假设obj为一个数据库对象
614
- * obj.freeTempRelationObject();
599
+ * @internal
600
+ * MxCAD辅助,内部使用
615
601
  * ```
616
602
  */
617
603
  freeTempRelationObject(): void;
@@ -12901,7 +12887,17 @@ export declare abstract class McDbCustomEntity extends McDbEntity {
12901
12887
  clone(): McDbObject | null;
12902
12888
  /** js 对像的数据与McDbCustomEntity::m_mapData的同步。 */
12903
12889
  syncData(toCpp?: boolean): boolean;
12890
+ /**
12891
+ * @internal
12892
+ * MxCAD辅助,内部使用
12893
+ * ```
12894
+ */
12904
12895
  tempRelationObject(): number;
12896
+ /**
12897
+ * @internal
12898
+ * MxCAD辅助,内部使用
12899
+ * ```
12900
+ */
12905
12901
  freeTempRelationObject(): void;
12906
12902
  protected assertWrite(autoUndo?: boolean): void;
12907
12903
  /**
@@ -13157,6 +13153,8 @@ export interface MxCadConfig {
13157
13153
  enableIntelliSelect?: boolean;
13158
13154
  /**是否启用浏览模式,默认是编辑模式 */
13159
13155
  browse?: boolean;
13156
+ /**是否使用webgl1方式启动 */
13157
+ webgl1?: boolean;
13160
13158
  }
13161
13159
  /** 创建MxCad实例
13162
13160
  * @param config 参数配置