mxcad 1.0.268 → 1.0.269

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
@@ -8521,7 +8521,7 @@ export declare class McCmColor {
8521
8521
  * const green_color:McCmColor = new McCmColor(colorObj);
8522
8522
  * ```
8523
8523
  */
8524
- constructor(red?: number | object, green?: number, blue?: number);
8524
+ constructor(red?: number | object, green?: number, blue?: number, n?: number);
8525
8525
  /**
8526
8526
  * 获取内部实现对象
8527
8527
  * @return 内部实现对象
@@ -14524,6 +14524,11 @@ export declare namespace MdGe {
14524
14524
  Orientation_INTERNAL = 2,
14525
14525
  Orientation_EXTERNAL = 3
14526
14526
  }
14527
+ enum MxTransitionMode {
14528
+ Mx_Transformed = 0,
14529
+ Mx_RightCorner = 1,
14530
+ Mx_RoundCorner = 2
14531
+ }
14527
14532
  }
14528
14533
  export type EventType = string | symbol;
14529
14534
  export type PubSubEvent = Record<EventType, (...ages: any) => any>;
@@ -19899,6 +19904,18 @@ export declare class Mx3dMkPipe extends Mx3dMkObject {
19899
19904
  */
19900
19905
  IsDone(): boolean;
19901
19906
  }
19907
+ /**
19908
+ *
19909
+ */
19910
+ export declare class Mx3dMkPipeShell extends Mx3dMkObject {
19911
+ constructor(Spine: Mx3dShapeWire);
19912
+ SetTransitionMode(Mode: MdGe.MxTransitionMode): void;
19913
+ Add(Profile: Mx3dShapeObject): void;
19914
+ Build(): void;
19915
+ MakeSolid(): boolean;
19916
+ Shape(): Mx3dShapeObject;
19917
+ IsDone(): boolean;
19918
+ }
19902
19919
  /**
19903
19920
  * 表示建模拉伸扫掠体的类,继承自 Mx3dMkObject。
19904
19921
  */