vislite 0.5.2 → 0.6.0-alpha.2
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/.editorconfig +18 -18
- package/.eslintrc.js +24 -0
- package/AUTHORS.txt +6 -6
- package/CHANGELOG +15 -1
- package/LICENSE +20 -20
- package/README.md +41 -2
- package/lib/Buffer/index.umd.js +2 -2
- package/lib/Buffer/index.umd.min.js +2 -2
- package/lib/Canvas/index.umd.js +19 -8
- package/lib/Canvas/index.umd.min.js +3 -3
- package/lib/Cardinal/index.umd.js +2 -2
- package/lib/Cardinal/index.umd.min.js +2 -2
- package/lib/Eoap/index.umd.js +2 -2
- package/lib/Eoap/index.umd.min.js +2 -2
- package/lib/Geometry/index.umd.js +7 -4
- package/lib/Geometry/index.umd.min.js +2 -2
- package/lib/Hermite/index.umd.js +2 -2
- package/lib/Hermite/index.umd.min.js +2 -2
- package/lib/Matrix4/index.umd.js +14 -8
- package/lib/Matrix4/index.umd.min.js +3 -3
- package/lib/Mercator/index.umd.js +2 -2
- package/lib/Mercator/index.umd.min.js +2 -2
- package/lib/OralCanvas/index.es.js +14 -6
- package/lib/OralCanvas/index.es.min.js +3 -3
- package/lib/OralWebGL/index.es.js +27 -19
- package/lib/OralWebGL/index.es.min.js +3 -3
- package/lib/SVG/index.umd.js +6 -4
- package/lib/SVG/index.umd.min.js +2 -2
- package/lib/Shader/index.umd.js +10 -10
- package/lib/Shader/index.umd.min.js +3 -3
- package/lib/Texture/index.umd.js +4 -3
- package/lib/Texture/index.umd.min.js +2 -2
- package/lib/TreeLayout/index.umd.js +8 -5
- package/lib/TreeLayout/index.umd.min.js +2 -2
- package/lib/WebGL/index.umd.js +27 -19
- package/lib/WebGL/index.umd.min.js +3 -3
- package/lib/animation/index.umd.js +4 -3
- package/lib/animation/index.umd.min.js +2 -2
- package/lib/formatColor/index.umd.js +2 -2
- package/lib/formatColor/index.umd.min.js +2 -2
- package/lib/getLoopColors/index.umd.js +2 -2
- package/lib/getLoopColors/index.umd.min.js +2 -2
- package/lib/getWebGLContext/index.umd.js +4 -3
- package/lib/getWebGLContext/index.umd.min.js +2 -2
- package/lib/index.umd.js +73 -34
- package/lib/index.umd.min.js +3 -3
- package/lib/move/index.umd.js +2 -2
- package/lib/move/index.umd.min.js +2 -2
- package/lib/resizeObserver/index.umd.js +4 -3
- package/lib/resizeObserver/index.umd.min.js +2 -2
- package/lib/rotate/index.umd.js +2 -2
- package/lib/rotate/index.umd.min.js +2 -2
- package/lib/ruler/index.umd.js +14 -2
- package/lib/ruler/index.umd.min.js +3 -3
- package/lib/scale/index.umd.js +2 -2
- package/lib/scale/index.umd.min.js +2 -2
- package/lib/throttle/index.umd.js +2 -2
- package/lib/throttle/index.umd.min.js +2 -2
- package/lib/viewHandler/index.umd.js +4 -4
- package/lib/viewHandler/index.umd.min.js +3 -3
- package/miniprogram/ui-canvas/index.js +107 -107
- package/miniprogram/ui-canvas/index.json +4 -4
- package/miniprogram/ui-canvas/index.wxml +4 -4
- package/miniprogram/ui-canvas/index.wxss +5 -5
- package/package/Buffer/index.ts +2 -2
- package/package/Canvas/index.ts +2 -2
- package/package/Cardinal/index.ts +2 -2
- package/package/Eoap/index.ts +2 -2
- package/package/Geometry/index.ts +2 -2
- package/package/Hermite/index.ts +2 -2
- package/package/Matrix4/index.ts +2 -2
- package/package/Mercator/index.ts +2 -2
- package/package/OralCanvas/index.ts +2 -2
- package/package/OralWebGL/index.ts +2 -2
- package/package/SVG/index.ts +2 -2
- package/package/Shader/index.ts +39 -39
- package/package/Texture/index.ts +2 -2
- package/package/TreeLayout/index.ts +1 -1
- package/package/WebGL/index.ts +2 -2
- package/package/animation/index.ts +2 -2
- package/package/formatColor/index.ts +2 -2
- package/package/getLoopColors/index.ts +2 -2
- package/package/getWebGLContext/index.ts +39 -39
- package/package/index.ts +76 -76
- package/package/move/index.ts +2 -2
- package/package/resizeObserver/index.ts +2 -2
- package/package/rotate/index.ts +2 -2
- package/package/ruler/index.ts +2 -2
- package/package/scale/index.ts +2 -2
- package/package/throttle/index.ts +2 -2
- package/package/viewHandler/index.ts +2 -2
- package/package.json +6 -2
- package/src/Canvas.ts +70 -67
- package/src/Eoap.ts +66 -66
- package/src/Geometry.ts +82 -82
- package/src/Matrix4/index.ts +17 -9
- package/src/Matrix4/move.ts +12 -12
- package/src/Matrix4/rotate.ts +15 -15
- package/src/Matrix4/scale.ts +11 -11
- package/src/Matrix4/transform.ts +64 -64
- package/src/Mercator.ts +27 -27
- package/src/SVG.ts +24 -24
- package/src/WebGL.ts +66 -66
- package/src/animation.ts +98 -98
- package/src/common/assemble.ts +22 -22
- package/src/common/canvas/arc.ts +51 -50
- package/src/common/canvas/config.ts +158 -158
- package/src/common/canvas/gradient.ts +29 -29
- package/src/common/canvas/index.ts +149 -140
- package/src/common/canvas/painter.ts +417 -426
- package/src/common/canvas/texts.ts +18 -18
- package/src/common/geometry/prism-horizontal.ts +35 -33
- package/src/common/geometry/prism-vertical.ts +40 -40
- package/src/common/geometry/sphere-fragment.ts +40 -39
- package/src/common/geometry/tool/circle.ts +11 -11
- package/src/common/mergeOption.ts +6 -6
- package/src/common/setStyle.ts +5 -5
- package/src/common/svg/config.ts +186 -186
- package/src/common/svg/dictionary.ts +1 -1
- package/src/common/svg/gradient.ts +63 -63
- package/src/common/svg/index.ts +356 -356
- package/src/common/svg/tool.ts +44 -44
- package/src/common/tree/index.ts +25 -25
- package/src/common/tree/toInnerTree.ts +57 -56
- package/src/common/tree/toPlainTree.ts +132 -131
- package/src/common/webgl/buffer.ts +79 -79
- package/src/common/webgl/doDraw.ts +108 -108
- package/src/common/webgl/getColorFactory.ts +26 -26
- package/src/common/webgl/getShader.ts +48 -48
- package/src/common/webgl/getTexture.ts +11 -11
- package/src/common/webgl/getWebGLContext.ts +28 -27
- package/src/common/webgl/index.ts +224 -223
- package/src/common/webgl/shader.ts +75 -75
- package/src/common/webgl/texture.ts +97 -96
- package/src/formatColor.ts +44 -44
- package/src/getLoopColors.ts +42 -42
- package/src/interpolation/Cardinal.ts +110 -110
- package/src/interpolation/Hermite.ts +65 -65
- package/src/{TreeLayout/index.ts → layout/TreeLayout.ts} +21 -21
- package/src/move.ts +7 -7
- package/src/resizeObserver.ts +37 -36
- package/src/rotate.ts +7 -7
- package/src/ruler.ts +41 -19
- package/src/scale.ts +6 -6
- package/src/shader/fsColor.c +7 -7
- package/src/shader/fsColors.c +7 -7
- package/src/shader/fsCube.c +8 -8
- package/src/shader/fsImage.c +8 -8
- package/src/shader/vsColor.c +17 -17
- package/src/shader/vsColors.c +13 -13
- package/src/shader/vsCube.c +13 -13
- package/src/shader/vsImage.c +13 -13
- package/src/throttle.ts +52 -51
- package/src/viewHandler.ts +158 -158
- package/types/Buffer.d.ts +23 -23
- package/types/Canvas.d.ts +8 -0
- package/types/CanvasConfig.d.ts +106 -106
- package/types/CanvasOption.d.ts +8 -7
- package/types/CanvasOpts.d.ts +10 -0
- package/types/Cardinal.d.ts +13 -13
- package/types/Geometry.d.ts +40 -40
- package/types/GeometryOption.d.ts +11 -11
- package/types/GeometryResult.d.ts +18 -18
- package/types/Gradient.d.ts +14 -14
- package/types/Hermite.d.ts +18 -18
- package/types/Map.d.ts +9 -9
- package/types/Matrix4.d.ts +5 -0
- package/types/Object3D.d.ts +114 -114
- package/types/SVG.d.ts +238 -238
- package/types/SVGConfig.d.ts +76 -76
- package/types/Scene3D.d.ts +6 -6
- package/types/Shader.d.ts +21 -21
- package/types/Texture.d.ts +16 -16
- package/types/Tree.d.ts +69 -69
- package/types/TreeConfig.d.ts +24 -24
- package/types/TreeLayout.d.ts +54 -54
- package/types/TreeOption.d.ts +48 -48
- package/types/WebGL.d.ts +38 -38
- package/types/WebGLOption.d.ts +7 -7
- package/types/animation.d.ts +6 -6
- package/types/formatColor.d.ts +2 -2
- package/types/getLoopColors.d.ts +2 -2
- package/types/getWebGLContext.d.ts +2 -2
- package/types/index.d.ts +175 -175
- package/types/move.d.ts +2 -2
- package/types/painterConfig.d.ts +2 -2
- package/types/resizeObserver.d.ts +2 -2
- package/types/rotate.d.ts +2 -2
- package/types/ruler.d.ts +7 -7
- package/types/scale.d.ts +2 -2
- package/types/throttle.d.ts +4 -4
- package/types/throttleOption.d.ts +21 -21
- package/types/viewHandler.d.ts +13 -13
- package/uni-app/ui-canvas.vue +239 -206
package/types/CanvasConfig.d.ts
CHANGED
|
@@ -1,107 +1,107 @@
|
|
|
1
|
-
import { arcCapType, textAlignType, textBaselineType } from './painterConfig'
|
|
2
|
-
|
|
3
|
-
export default interface CanvasConfigType {
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* 填充色或图案,默认"#000"
|
|
7
|
-
*/
|
|
8
|
-
fillStyle?: string | CanvasGradient
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* 轮廓色或图案,默认"#000"
|
|
12
|
-
*/
|
|
13
|
-
strokeStyle?: string | CanvasGradient
|
|
14
|
-
|
|
15
|
-
/**
|
|
16
|
-
* 线条宽度,默认1(单位px)
|
|
17
|
-
*/
|
|
18
|
-
lineWidth?: number
|
|
19
|
-
|
|
20
|
-
/**
|
|
21
|
-
* 文字水平对齐方式,默认"left"左对齐(还有"center"居中和"right"右对齐)
|
|
22
|
-
*/
|
|
23
|
-
textAlign?: textAlignType
|
|
24
|
-
|
|
25
|
-
/**
|
|
26
|
-
* 文字垂直对齐方式,默认"middle"垂直居中(还有"top"上对齐和"bottom"下对齐)
|
|
27
|
-
*/
|
|
28
|
-
textBaseline?: textBaselineType
|
|
29
|
-
|
|
30
|
-
/**
|
|
31
|
-
* 设置线条虚线,默认为[]表示使用实线绘制
|
|
32
|
-
*
|
|
33
|
-
* 值应该是一个数组,格式:[实线长,虚线长,实线长 ...],数组长度任意,会自动循环
|
|
34
|
-
*/
|
|
35
|
-
lineDash?: Array<number>
|
|
36
|
-
|
|
37
|
-
/**
|
|
38
|
-
* 阴影的模糊系数,默认0,也就是无阴影
|
|
39
|
-
*/
|
|
40
|
-
shadowBlur?: number
|
|
41
|
-
|
|
42
|
-
/**
|
|
43
|
-
* 阴影的颜色
|
|
44
|
-
*/
|
|
45
|
-
shadowColor?: string | CanvasGradient
|
|
46
|
-
|
|
47
|
-
/**
|
|
48
|
-
* 文字大小,默认16
|
|
49
|
-
*/
|
|
50
|
-
"fontSize"?: number
|
|
51
|
-
|
|
52
|
-
/**
|
|
53
|
-
* 已废弃,向下兼容,请用 fontSize 代替
|
|
54
|
-
*/
|
|
55
|
-
"font-size"?: number // 向下兼容
|
|
56
|
-
|
|
57
|
-
/**
|
|
58
|
-
* 字体,默认"sans-serif"
|
|
59
|
-
*/
|
|
60
|
-
"fontFamily"?: string
|
|
61
|
-
|
|
62
|
-
/**
|
|
63
|
-
* 已废弃,向下兼容,请用 fontFamily 代替
|
|
64
|
-
*/
|
|
65
|
-
"font-family"?: string // 向下兼容
|
|
66
|
-
|
|
67
|
-
/**
|
|
68
|
-
* 字重,默认400
|
|
69
|
-
*/
|
|
70
|
-
"fontWeight"?: number
|
|
71
|
-
|
|
72
|
-
/**
|
|
73
|
-
* 已废弃,向下兼容,请用 fontWeight 代替
|
|
74
|
-
*/
|
|
75
|
-
"font-weight"?: number // 向下兼容
|
|
76
|
-
|
|
77
|
-
/**
|
|
78
|
-
* 字类型,默认"normal"
|
|
79
|
-
*/
|
|
80
|
-
"fontStyle"?: string
|
|
81
|
-
|
|
82
|
-
/**
|
|
83
|
-
* 已废弃,向下兼容,请用 fontStyle 代替
|
|
84
|
-
*/
|
|
85
|
-
"font-style"?: string // 向下兼容
|
|
86
|
-
|
|
87
|
-
/**
|
|
88
|
-
* 圆弧开始端闭合方式,默认"butt"直线闭合(还有"round"圆帽闭合,"-round"反圆帽闭合)
|
|
89
|
-
*/
|
|
90
|
-
"arcStartCap"?: arcCapType
|
|
91
|
-
|
|
92
|
-
/**
|
|
93
|
-
* 已废弃,向下兼容,请用 arcStartCap 代替
|
|
94
|
-
*/
|
|
95
|
-
"arc-start-cap"?: string // 向下兼容
|
|
96
|
-
|
|
97
|
-
/**
|
|
98
|
-
* 圆弧结束端闭合方式,默认"butt"直线闭合(还有"round"圆帽闭合,"-round"反圆帽闭合)
|
|
99
|
-
*/
|
|
100
|
-
"arcEndCap"?: arcCapType
|
|
101
|
-
|
|
102
|
-
/**
|
|
103
|
-
* 已废弃,向下兼容,请用 arcEndCap 代替
|
|
104
|
-
*/
|
|
105
|
-
"arc-end-cap"?: string // 向下兼容
|
|
106
|
-
|
|
1
|
+
import { arcCapType, textAlignType, textBaselineType } from './painterConfig'
|
|
2
|
+
|
|
3
|
+
export default interface CanvasConfigType {
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* 填充色或图案,默认"#000"
|
|
7
|
+
*/
|
|
8
|
+
fillStyle?: string | CanvasGradient
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* 轮廓色或图案,默认"#000"
|
|
12
|
+
*/
|
|
13
|
+
strokeStyle?: string | CanvasGradient
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* 线条宽度,默认1(单位px)
|
|
17
|
+
*/
|
|
18
|
+
lineWidth?: number
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* 文字水平对齐方式,默认"left"左对齐(还有"center"居中和"right"右对齐)
|
|
22
|
+
*/
|
|
23
|
+
textAlign?: textAlignType
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* 文字垂直对齐方式,默认"middle"垂直居中(还有"top"上对齐和"bottom"下对齐)
|
|
27
|
+
*/
|
|
28
|
+
textBaseline?: textBaselineType
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* 设置线条虚线,默认为[]表示使用实线绘制
|
|
32
|
+
*
|
|
33
|
+
* 值应该是一个数组,格式:[实线长,虚线长,实线长 ...],数组长度任意,会自动循环
|
|
34
|
+
*/
|
|
35
|
+
lineDash?: Array<number>
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* 阴影的模糊系数,默认0,也就是无阴影
|
|
39
|
+
*/
|
|
40
|
+
shadowBlur?: number
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* 阴影的颜色
|
|
44
|
+
*/
|
|
45
|
+
shadowColor?: string | CanvasGradient
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* 文字大小,默认16
|
|
49
|
+
*/
|
|
50
|
+
"fontSize"?: number
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* 已废弃,向下兼容,请用 fontSize 代替
|
|
54
|
+
*/
|
|
55
|
+
"font-size"?: number // 向下兼容
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* 字体,默认"sans-serif"
|
|
59
|
+
*/
|
|
60
|
+
"fontFamily"?: string
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* 已废弃,向下兼容,请用 fontFamily 代替
|
|
64
|
+
*/
|
|
65
|
+
"font-family"?: string // 向下兼容
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* 字重,默认400
|
|
69
|
+
*/
|
|
70
|
+
"fontWeight"?: number
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* 已废弃,向下兼容,请用 fontWeight 代替
|
|
74
|
+
*/
|
|
75
|
+
"font-weight"?: number // 向下兼容
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* 字类型,默认"normal"
|
|
79
|
+
*/
|
|
80
|
+
"fontStyle"?: string
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* 已废弃,向下兼容,请用 fontStyle 代替
|
|
84
|
+
*/
|
|
85
|
+
"font-style"?: string // 向下兼容
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* 圆弧开始端闭合方式,默认"butt"直线闭合(还有"round"圆帽闭合,"-round"反圆帽闭合)
|
|
89
|
+
*/
|
|
90
|
+
"arcStartCap"?: arcCapType
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* 已废弃,向下兼容,请用 arcStartCap 代替
|
|
94
|
+
*/
|
|
95
|
+
"arc-start-cap"?: string // 向下兼容
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* 圆弧结束端闭合方式,默认"butt"直线闭合(还有"round"圆帽闭合,"-round"反圆帽闭合)
|
|
99
|
+
*/
|
|
100
|
+
"arcEndCap"?: arcCapType
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* 已废弃,向下兼容,请用 arcEndCap 代替
|
|
104
|
+
*/
|
|
105
|
+
"arc-end-cap"?: string // 向下兼容
|
|
106
|
+
|
|
107
107
|
}
|
package/types/CanvasOption.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import CanvasOptsType from "./CanvasOpts"
|
|
2
|
+
|
|
3
|
+
export default interface CanvasOptionType extends CanvasOptsType {
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* 是否支持区域管理,默认true
|
|
7
|
+
*/
|
|
8
|
+
region?: boolean
|
|
8
9
|
}
|
package/types/Cardinal.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
export default interface CardinalType {
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* 设置点的位置:
|
|
5
|
-
* @param points 参数格式:[[x1, y1], [x2, y2], ... ],至少两个点
|
|
6
|
-
*/
|
|
7
|
-
setP(points: number[][]): this
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* 根据x值返回y值:
|
|
11
|
-
*/
|
|
12
|
-
use(x: number): number
|
|
13
|
-
|
|
1
|
+
export default interface CardinalType {
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 设置点的位置:
|
|
5
|
+
* @param points 参数格式:[[x1, y1], [x2, y2], ... ],至少两个点
|
|
6
|
+
*/
|
|
7
|
+
setP(points: number[][]): this
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* 根据x值返回y值:
|
|
11
|
+
*/
|
|
12
|
+
use(x: number): number
|
|
13
|
+
|
|
14
14
|
}
|
package/types/Geometry.d.ts
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
import GeometryResultType from './GeometryResult'
|
|
2
|
-
import GeometryOptionType from './GeometryOption'
|
|
3
|
-
|
|
4
|
-
export default interface GeometryType {
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* 配置对象
|
|
8
|
-
*/
|
|
9
|
-
config(option: GeometryOptionType): this
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* 圆柱体
|
|
13
|
-
* @param x
|
|
14
|
-
* @param y
|
|
15
|
-
* @param z
|
|
16
|
-
* @param radius
|
|
17
|
-
* @param height
|
|
18
|
-
*/
|
|
19
|
-
cylinder(x: number, y: number, z: number, radius: number, height: number): Array<GeometryResultType>
|
|
20
|
-
|
|
21
|
-
/**
|
|
22
|
-
* 棱柱体
|
|
23
|
-
* @param x
|
|
24
|
-
* @param y
|
|
25
|
-
* @param z
|
|
26
|
-
* @param radius
|
|
27
|
-
* @param height
|
|
28
|
-
* @param num
|
|
29
|
-
*/
|
|
30
|
-
prism(x: number, y: number, z: number, radius: number, height: number, num: number): Array<GeometryResultType>
|
|
31
|
-
|
|
32
|
-
/**
|
|
33
|
-
* 球体
|
|
34
|
-
* @param cx
|
|
35
|
-
* @param cy
|
|
36
|
-
* @param cz
|
|
37
|
-
* @param radius
|
|
38
|
-
*/
|
|
39
|
-
sphere(cx: number, cy: number, cz: number, radius: number): Array<GeometryResultType>
|
|
40
|
-
|
|
1
|
+
import GeometryResultType from './GeometryResult'
|
|
2
|
+
import GeometryOptionType from './GeometryOption'
|
|
3
|
+
|
|
4
|
+
export default interface GeometryType {
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* 配置对象
|
|
8
|
+
*/
|
|
9
|
+
config(option: GeometryOptionType): this
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* 圆柱体
|
|
13
|
+
* @param x
|
|
14
|
+
* @param y
|
|
15
|
+
* @param z
|
|
16
|
+
* @param radius
|
|
17
|
+
* @param height
|
|
18
|
+
*/
|
|
19
|
+
cylinder(x: number, y: number, z: number, radius: number, height: number): Array<GeometryResultType>
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* 棱柱体
|
|
23
|
+
* @param x
|
|
24
|
+
* @param y
|
|
25
|
+
* @param z
|
|
26
|
+
* @param radius
|
|
27
|
+
* @param height
|
|
28
|
+
* @param num
|
|
29
|
+
*/
|
|
30
|
+
prism(x: number, y: number, z: number, radius: number, height: number, num: number): Array<GeometryResultType>
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* 球体
|
|
34
|
+
* @param cx
|
|
35
|
+
* @param cy
|
|
36
|
+
* @param cz
|
|
37
|
+
* @param radius
|
|
38
|
+
*/
|
|
39
|
+
sphere(cx: number, cy: number, cz: number, radius: number): Array<GeometryResultType>
|
|
40
|
+
|
|
41
41
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export default interface GeometryOptionType {
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* 精度
|
|
5
|
-
*/
|
|
6
|
-
precision?: number
|
|
7
|
-
|
|
8
|
-
/**
|
|
9
|
-
* 是否需要法向量
|
|
10
|
-
*/
|
|
11
|
-
normal?: boolean
|
|
1
|
+
export default interface GeometryOptionType {
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 精度
|
|
5
|
+
*/
|
|
6
|
+
precision?: number
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* 是否需要法向量
|
|
10
|
+
*/
|
|
11
|
+
normal?: boolean
|
|
12
12
|
}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { geometryType } from './Object3D'
|
|
2
|
-
|
|
3
|
-
export default interface GeometryResultType {
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* 点数据(法向量如果有也包含其中)
|
|
7
|
-
*/
|
|
8
|
-
points: number[]
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* 点个数
|
|
12
|
-
*/
|
|
13
|
-
length: number
|
|
14
|
-
|
|
15
|
-
/**
|
|
16
|
-
* 画笔类型
|
|
17
|
-
*/
|
|
18
|
-
method: geometryType
|
|
1
|
+
import { geometryType } from './Object3D'
|
|
2
|
+
|
|
3
|
+
export default interface GeometryResultType {
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* 点数据(法向量如果有也包含其中)
|
|
7
|
+
*/
|
|
8
|
+
points: number[]
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* 点个数
|
|
12
|
+
*/
|
|
13
|
+
length: number
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* 画笔类型
|
|
17
|
+
*/
|
|
18
|
+
method: geometryType
|
|
19
19
|
}
|
package/types/Gradient.d.ts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
export default interface GradientType<T> {
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* 设置程度颜色
|
|
5
|
-
* @param stop 程度
|
|
6
|
-
* @param color 颜色
|
|
7
|
-
*/
|
|
8
|
-
setColor(stop: number, color: string): this
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* 返回渐变色值
|
|
12
|
-
*/
|
|
13
|
-
value(): T
|
|
14
|
-
|
|
1
|
+
export default interface GradientType<T> {
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 设置程度颜色
|
|
5
|
+
* @param stop 程度
|
|
6
|
+
* @param color 颜色
|
|
7
|
+
*/
|
|
8
|
+
setColor(stop: number, color: string): this
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* 返回渐变色值
|
|
12
|
+
*/
|
|
13
|
+
value(): T
|
|
14
|
+
|
|
15
15
|
}
|
package/types/Hermite.d.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
export default interface HermiteType {
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* 设置点的位置和斜率:
|
|
5
|
-
* @param x1 左边点的位置
|
|
6
|
-
* @param y1
|
|
7
|
-
* @param x2 右边点的位置
|
|
8
|
-
* @param y2
|
|
9
|
-
* @param s1 两个点的斜率
|
|
10
|
-
* @param s2
|
|
11
|
-
*/
|
|
12
|
-
setP(x1: number, y1: number, x2: number, y2: number, s1: number, s2: number): this
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* 根据x值返回y值:
|
|
16
|
-
*/
|
|
17
|
-
use(x: number): number
|
|
18
|
-
|
|
1
|
+
export default interface HermiteType {
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 设置点的位置和斜率:
|
|
5
|
+
* @param x1 左边点的位置
|
|
6
|
+
* @param y1
|
|
7
|
+
* @param x2 右边点的位置
|
|
8
|
+
* @param y2
|
|
9
|
+
* @param s1 两个点的斜率
|
|
10
|
+
* @param s2
|
|
11
|
+
*/
|
|
12
|
+
setP(x1: number, y1: number, x2: number, y2: number, s1: number, s2: number): this
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* 根据x值返回y值:
|
|
16
|
+
*/
|
|
17
|
+
use(x: number): number
|
|
18
|
+
|
|
19
19
|
}
|
package/types/Map.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export default interface MapType {
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* 返回该点的绘图坐标(特别需要注意,计算出来的位置是偏离中心点的距离)
|
|
5
|
-
* @param λ 经纬度
|
|
6
|
-
* @param φ
|
|
7
|
-
*/
|
|
8
|
-
use(λ: number, φ: number): [number, number, number]
|
|
9
|
-
|
|
1
|
+
export default interface MapType {
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 返回该点的绘图坐标(特别需要注意,计算出来的位置是偏离中心点的距离)
|
|
5
|
+
* @param λ 经纬度
|
|
6
|
+
* @param φ
|
|
7
|
+
*/
|
|
8
|
+
use(λ: number, φ: number): [number, number, number]
|
|
9
|
+
|
|
10
10
|
}
|
package/types/Matrix4.d.ts
CHANGED
|
@@ -17,6 +17,11 @@ export default interface Matrix4Type {
|
|
|
17
17
|
*/
|
|
18
18
|
use(x: number, y: number, z?: number, w?: number): [number, number, number, number]
|
|
19
19
|
|
|
20
|
+
/**
|
|
21
|
+
* 设置内置矩阵
|
|
22
|
+
*/
|
|
23
|
+
setValue(initMatrix4?: number[]): this
|
|
24
|
+
|
|
20
25
|
/**
|
|
21
26
|
* 沿着向量(a, b, c)方向移动距离dis
|
|
22
27
|
* (其中c可以不传,默认0)
|