@manycore/custom-sdk 1.8.4-rc.0 → 1.9.0-rc.0

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.
Files changed (3) hide show
  1. package/index.d.ts +17 -12
  2. package/index.js +31 -16
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -397,6 +397,7 @@ declare enum ELineType_3 {
397
397
  CIRCLE_ARC = 1,
398
398
  /**
399
399
  * 椭圆
400
+ * 当前代码中,暂不支持
400
401
  */
401
402
  ELLIPSE_ARC = 3
402
403
  }
@@ -575,7 +576,11 @@ declare enum EPointType_2 {
575
576
  /**
576
577
  * 切圆,就是内挖一个倒圆的形状
577
578
  */
578
- CUT_CIRCLE = 3
579
+ CUT_CIRCLE = 3,
580
+ /**
581
+ * 椭圆
582
+ */
583
+ ELLIPSE = 4
579
584
  }
580
585
 
581
586
  /**
@@ -1367,9 +1372,7 @@ export declare class FittingDesignService extends BaseService {
1367
1372
  ellipseCenter?: Number2;
1368
1373
  }
1369
1374
 
1370
- export declare type ILineData = ILineDataBase | ILineDataCircle;
1371
-
1372
- declare interface ILineData_2 {
1375
+ declare interface ILineData$1 {
1373
1376
  /**
1374
1377
  * 线条类型
1375
1378
  */
@@ -1388,6 +1391,8 @@ export declare class FittingDesignService extends BaseService {
1388
1391
  radius?: number;
1389
1392
  }
1390
1393
 
1394
+ export declare type ILineData = ILineDataBase | ILineDataCircle;
1395
+
1391
1396
  /**
1392
1397
  * 直线
1393
1398
  */
@@ -1841,11 +1846,11 @@ export declare class FittingDesignService extends BaseService {
1841
1846
  /**
1842
1847
  * 轮廓上的点
1843
1848
  */
1844
- paramPoints: IPointData_2[];
1849
+ paramPoints: IPointData$1[];
1845
1850
  /**
1846
1851
  * 轮廓上的线
1847
1852
  */
1848
- paramPathLines: ILineData_2[];
1853
+ paramPathLines: ILineData$1[];
1849
1854
  }
1850
1855
 
1851
1856
  /**
@@ -1953,12 +1958,7 @@ export declare class FittingDesignService extends BaseService {
1953
1958
  offset?: Number2;
1954
1959
  }
1955
1960
 
1956
- /**
1957
- * 点的类型参数
1958
- */
1959
- export declare type IPointData = IPointWithNone | IPointWithLine | IPointWithCircle | IPointWithCutCircle;
1960
-
1961
- declare interface IPointData_2 {
1961
+ declare interface IPointData$1 {
1962
1962
  /**
1963
1963
  * 点的位置
1964
1964
  *
@@ -2004,6 +2004,11 @@ export declare class FittingDesignService extends BaseService {
2004
2004
  minorRadius?: string;
2005
2005
  }
2006
2006
 
2007
+ /**
2008
+ * 点的类型参数
2009
+ */
2010
+ export declare type IPointData = IPointWithNone | IPointWithLine | IPointWithCircle | IPointWithCutCircle;
2011
+
2007
2012
  /**
2008
2013
  * 倒圆
2009
2014
  */