mxdraw 0.1.170 → 0.1.171
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 +8 -0
- package/dist/mxdraw.esm.js +1 -1
- package/dist/mxdraw.umd.js +1 -1
- package/package.json +4 -1
package/dist/mxdraw.d.ts
CHANGED
|
@@ -2109,6 +2109,14 @@ declare class MxDrawObject extends Node<MxDrawEvents, Node<any, any>> {
|
|
|
2109
2109
|
* ```
|
|
2110
2110
|
*/
|
|
2111
2111
|
setIniset(options: iniConfig): void;
|
|
2112
|
+
/**
|
|
2113
|
+
* 返回当前视区的显示范围
|
|
2114
|
+
* @returns {minPt:THREE.Vector3,maxPt:THREE.Vector3}
|
|
2115
|
+
*/
|
|
2116
|
+
getGetViewDocCoord(): {
|
|
2117
|
+
minPt: THREE.Vector3;
|
|
2118
|
+
maxPt: THREE.Vector3;
|
|
2119
|
+
};
|
|
2112
2120
|
/**
|
|
2113
2121
|
* 屏幕坐标到ThreeJS坐标
|
|
2114
2122
|
* @returns THREE.Vector3
|