mxdraw 0.1.313 → 0.1.315

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/mxdraw.d.ts CHANGED
@@ -692,6 +692,21 @@ declare abstract class MxDbEntity extends RenderOrderNode<EntityEvent, MxDbEntit
692
692
  * @returns void
693
693
  */
694
694
  transformBy(_mat: THREE.Matrix4): void;
695
+ /**
696
+ * 缩放对像
697
+ * @returns void
698
+ */
699
+ transformScale(ptBase: THREE.Vector3, scale: number): void;
700
+ /**
701
+ * 旋转对象
702
+ * @returns void
703
+ */
704
+ transformRotate(ptBase: THREE.Vector3, angle: number): void;
705
+ /**
706
+ * 移动对象
707
+ * @returns void
708
+ */
709
+ transformMove(ptMove: THREE.Vector3): void;
695
710
  /**
696
711
  * 返回对象最小外包.
697
712
  * @param
@@ -1041,6 +1056,8 @@ declare class MxDynamicInput {
1041
1056
  getFocusValue: () => string;
1042
1057
  setLockValues(index: number, value: string): void;
1043
1058
  getLockValues(index: number): string;
1059
+ getLockValuesMap(): Map<number, string>;
1060
+ clearLockValuesMap(): void;
1044
1061
  getFocusIndex: () => number;
1045
1062
  setFocusIndex: (index: number) => void;
1046
1063
  mountKeydownEvent: (fun: ((arg0: any) => number) | undefined) => void;
@@ -1774,6 +1791,8 @@ interface iniConfig {
1774
1791
  ** 0 禁用AD对象夹点编辑
1775
1792
  */
1776
1793
  EnableCADEntityGripEidt?: number;
1794
+ /** 是使用图纸中的视区角度设置,默认为true */
1795
+ EnableDrawingViewAngle?: boolean;
1777
1796
  }
1778
1797
  type MxFunType = MxFunClass;
1779
1798