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.
@@ -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
- }