mxdraw 0.1.229 → 0.1.231
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 -6
- package/dist/mxdraw.esm.js +1 -1
- package/dist/mxdraw.umd.js +1 -1
- package/package.json +1 -1
package/dist/mxdraw.d.ts
CHANGED
|
@@ -2081,12 +2081,14 @@ declare class MxDrawObject extends Node<MxDrawEvents, Node<any, any>> {
|
|
|
2081
2081
|
*/
|
|
2082
2082
|
setIniset(options: iniConfig): void;
|
|
2083
2083
|
/**
|
|
2084
|
-
*
|
|
2085
|
-
* @returns {
|
|
2086
|
-
*/
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2084
|
+
* 返回当前视区的显示范围,cad坐标。
|
|
2085
|
+
* @returns {pt1:THREE.Vector3,pt2:THREE.Vector3,pt3:THREE.Vector3,pt4:THREE.Vector3}
|
|
2086
|
+
*/
|
|
2087
|
+
getViewDocCoord(): {
|
|
2088
|
+
pt1: THREE.Vector3;
|
|
2089
|
+
pt2: THREE.Vector3;
|
|
2090
|
+
pt3: THREE.Vector3;
|
|
2091
|
+
pt4: THREE.Vector3;
|
|
2090
2092
|
};
|
|
2091
2093
|
/**
|
|
2092
2094
|
* 屏幕坐标到ThreeJS坐标
|