mxdraw 0.1.314 → 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
@@ -1776,6 +1791,8 @@ interface iniConfig {
1776
1791
  ** 0 禁用AD对象夹点编辑
1777
1792
  */
1778
1793
  EnableCADEntityGripEidt?: number;
1794
+ /** 是使用图纸中的视区角度设置,默认为true */
1795
+ EnableDrawingViewAngle?: boolean;
1779
1796
  }
1780
1797
  type MxFunType = MxFunClass;
1781
1798