mxcad 1.0.86 → 1.0.87

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/mxcad.d.ts CHANGED
@@ -2394,6 +2394,19 @@ export declare class McObject {
2394
2394
  */
2395
2395
  GetSysVarDouble(varName: string): number;
2396
2396
  /**
2397
+ * 获取系统变量的点数值
2398
+ * @param varName 变量名称
2399
+ * @returns 变量的点数值
2400
+ */
2401
+ GetSysVarPoint(varName: string): McGePoint3d;
2402
+ /**
2403
+ * 设置系统变量的点数值
2404
+ * @param varName 变量名称
2405
+ * @param val 变量的点数值
2406
+ * @returns 是否成功设置变量值
2407
+ */
2408
+ SetSysVarPoint(varName: string, pt: McGePoint3d): boolean;
2409
+ /**
2397
2410
  * 设置系统变量的浮点数值
2398
2411
  * @param varName 变量名称
2399
2412
  * @param val 变量的浮点数值