mxdraw 0.1.198 → 0.1.199
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 +2 -0
- 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
|
@@ -2595,6 +2595,7 @@ declare class MxDrawObject extends Node<MxDrawEvents, Node<any, any>> {
|
|
|
2595
2595
|
* ```
|
|
2596
2596
|
*/
|
|
2597
2597
|
cadCoord2Doc(x: number, y: number, z: number): THREE.Vector3;
|
|
2598
|
+
cadCoord2Doc2(pt: THREE.Vector3): THREE.Vector3;
|
|
2598
2599
|
/**
|
|
2599
2600
|
* 文档坐标坐标到CAD.
|
|
2600
2601
|
* 默认情况下,cad等于doc,当前m_isCorrectLargeCoordinates为true时,doc变成了把cad图纸修改到小范围坐标系下的坐标。
|
|
@@ -2606,6 +2607,7 @@ declare class MxDrawObject extends Node<MxDrawEvents, Node<any, any>> {
|
|
|
2606
2607
|
* ```
|
|
2607
2608
|
*/
|
|
2608
2609
|
docCoord2Cad(x: number, y: number, z: number): THREE.Vector3;
|
|
2610
|
+
docCoord2Cad2(pt: THREE.Vector3): THREE.Vector3;
|
|
2609
2611
|
/**
|
|
2610
2612
|
* 设置视区的旋转角度
|
|
2611
2613
|
* @example
|