mxdraw 0.1.265 → 0.1.267

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
@@ -2289,6 +2289,19 @@ declare class MxDrawObject extends Node<MxDrawEvents, Node<any, any>> {
2289
2289
  * ```
2290
2290
  */
2291
2291
  getMxCADCurrentSelect(): Array<number>;
2292
+ /**
2293
+ * 得到图上当前选择对象时,选择范围点.
2294
+ * @example
2295
+ * ```typescript
2296
+ *
2297
+ *
2298
+ * ```
2299
+ */
2300
+ getSelectPoints(): {
2301
+ point1: THREE.Vector3;
2302
+ point2: THREE.Vector3;
2303
+ isvalid: boolean;
2304
+ };
2292
2305
  /**
2293
2306
  * 把mxdraw对象添加到当前选择集中
2294
2307
  * @returns void