ice-render 0.0.20 → 0.0.23
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/index.cjs.js +1 -1
- package/dist/index.js +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/types/control-panel/ICEControlPanel.d.ts +1 -0
- package/dist/types/geometry/GeoUtil.d.ts +12 -0
- package/dist/types/graphic/ICEComponent.d.ts +1 -0
- package/dist/types/graphic/container/ICEGroup.d.ts +9 -2
- package/dist/types/graphic/line/ICEPolyLine.d.ts +1 -0
- package/dist/types/graphic/text/ICEText.d.ts +1 -1
- package/dist/types/index.d.ts +0 -1
- package/package.json +1 -1
- package/dist/types/geometry/ICEMatrix.d.ts +0 -22
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) 2022 大漠穷秋.
|
|
3
|
-
*
|
|
4
|
-
* This source code is licensed under the MIT license found in the
|
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
|
6
|
-
*
|
|
7
|
-
*/
|
|
8
|
-
export default class ICEMatrix {
|
|
9
|
-
constructor();
|
|
10
|
-
/**
|
|
11
|
-
* 从变换矩阵计算旋转角度。
|
|
12
|
-
* @param matrix
|
|
13
|
-
* @returns 角度
|
|
14
|
-
*/
|
|
15
|
-
static calcRotateAngleFromMatrix(matrix: any): number;
|
|
16
|
-
/**
|
|
17
|
-
* 从变换矩阵计算缩放参数。
|
|
18
|
-
* @param matrix
|
|
19
|
-
* @returns 缩放数组
|
|
20
|
-
*/
|
|
21
|
-
static calcScaleFromMatrix(matrix: any): Array<number>;
|
|
22
|
-
}
|