mxdraw 0.1.284 → 0.1.286

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
@@ -1771,7 +1771,7 @@ interface MxDrawObjectType {
1771
1771
  getViewHeight(): number;
1772
1772
  zoomInitialStates(): void;
1773
1773
  zoomScale(scale: number): void;
1774
- zoomW(minPt: THREE.Vector3, maxPt: THREE.Vector3, isWorld?: boolean): void;
1774
+ zoomW(minPt: THREE.Vector3, maxPt: THREE.Vector3, isWorld?: boolean, animate?: boolean, autoRegen?: boolean): void;
1775
1775
  zoomCenter(dCenX: number, dCenY: number): void;
1776
1776
  initZoomW(pt1Doc: THREE.Vector3, pt2Doc: THREE.Vector3): void;
1777
1777
  addMxEntity(ent: any): number;
@@ -2036,7 +2036,7 @@ declare class MxDrawObject extends Node<MxDrawEvents, Node<any, any>> {
2036
2036
  * Mx.MxFun.getCurrentDraw().zoomW(new THREE.Vector3(0,10,10), new THREE.Vector3(3,8,20), true)
2037
2037
  * ```
2038
2038
  */
2039
- zoomW(minPt: THREE.Vector3, maxPt: THREE.Vector3, isWorld?: boolean): void;
2039
+ zoomW(minPt: THREE.Vector3, maxPt: THREE.Vector3, isWorld?: boolean, animate?: boolean, autoRegen?: boolean): void;
2040
2040
  /**
2041
2041
  * 保存当前显示范围.
2042
2042
  */