vislite 0.5.0 → 0.5.2-alpha.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 (157) hide show
  1. package/.editorconfig +18 -18
  2. package/AUTHORS.txt +6 -6
  3. package/CHANGELOG +5 -0
  4. package/LICENSE +20 -20
  5. package/README.md +69 -69
  6. package/miniprogram/ui-canvas/index.js +107 -107
  7. package/miniprogram/ui-canvas/index.json +4 -4
  8. package/miniprogram/ui-canvas/index.wxml +4 -4
  9. package/miniprogram/ui-canvas/index.wxss +5 -5
  10. package/package/Buffer/index.ts +2 -2
  11. package/package/Canvas/index.ts +2 -2
  12. package/package/Cardinal/index.ts +2 -2
  13. package/package/Eoap/index.ts +2 -2
  14. package/package/Hermite/index.ts +2 -2
  15. package/package/Matrix4/index.ts +2 -2
  16. package/package/Mercator/index.ts +2 -2
  17. package/package/OralCanvas/index.ts +2 -2
  18. package/package/OralWebGL/index.ts +2 -2
  19. package/package/SVG/index.ts +2 -2
  20. package/package/Shader/index.ts +39 -39
  21. package/package/Texture/index.ts +2 -2
  22. package/package/TreeLayout/index.ts +2 -2
  23. package/package/WebGL/index.ts +2 -2
  24. package/package/animation/index.ts +2 -2
  25. package/package/formatColor/index.ts +2 -2
  26. package/package/getLoopColors/index.ts +2 -2
  27. package/package/getWebGLContext/index.ts +39 -39
  28. package/package/resizeObserver/index.ts +2 -2
  29. package/package/rotate/index.ts +2 -2
  30. package/package/ruler/index.ts +2 -2
  31. package/package/throttle/index.ts +2 -2
  32. package/package/viewHandler/index.ts +2 -2
  33. package/package.json +1 -1
  34. package/src/Canvas.ts +67 -67
  35. package/src/Matrix4/move.ts +12 -12
  36. package/src/Matrix4/rotate.ts +15 -15
  37. package/src/Matrix4/scale.ts +11 -11
  38. package/src/Matrix4/transform.ts +64 -64
  39. package/src/SVG.ts +24 -24
  40. package/src/WebGL.ts +66 -66
  41. package/src/animation.ts +98 -98
  42. package/src/common/assemble.ts +22 -22
  43. package/src/common/canvas/arc.ts +50 -50
  44. package/src/common/canvas/config.ts +158 -158
  45. package/src/common/canvas/gradient.ts +29 -29
  46. package/src/common/canvas/index.ts +168 -168
  47. package/src/common/canvas/painter.ts +426 -426
  48. package/src/common/canvas/texts.ts +18 -18
  49. package/src/common/mergeOption.ts +6 -6
  50. package/src/common/setStyle.ts +5 -5
  51. package/src/common/svg/config.ts +174 -174
  52. package/src/common/svg/tool.ts +44 -44
  53. package/src/common/tree/index.ts +25 -25
  54. package/src/common/tree/toInnerTree.ts +56 -56
  55. package/src/common/tree/toPlainTree.ts +131 -131
  56. package/src/common/webgl/buffer.ts +79 -79
  57. package/src/common/webgl/doDraw.ts +108 -108
  58. package/src/common/webgl/getColorFactory.ts +26 -26
  59. package/src/common/webgl/getShader.ts +48 -48
  60. package/src/common/webgl/getTexture.ts +11 -11
  61. package/src/common/webgl/getWebGLContext.ts +27 -27
  62. package/src/common/webgl/index.ts +223 -223
  63. package/src/common/webgl/shader.ts +75 -75
  64. package/src/common/webgl/texture.ts +96 -96
  65. package/src/formatColor.ts +44 -44
  66. package/src/getLoopColors.ts +42 -42
  67. package/src/interpolation/Cardinal.ts +110 -110
  68. package/src/interpolation/Hermite.ts +65 -65
  69. package/src/resizeObserver.ts +36 -36
  70. package/src/ruler.ts +188 -188
  71. package/src/shader/fsColor.c +7 -7
  72. package/src/shader/fsColors.c +7 -7
  73. package/src/shader/fsCube.c +8 -8
  74. package/src/shader/fsImage.c +8 -8
  75. package/src/shader/vsColor.c +17 -17
  76. package/src/shader/vsColors.c +13 -13
  77. package/src/shader/vsCube.c +13 -13
  78. package/src/shader/vsImage.c +13 -13
  79. package/src/throttle.ts +51 -51
  80. package/src/viewHandler.ts +158 -158
  81. package/types/Buffer.d.ts +23 -23
  82. package/types/Canvas.d.ts +300 -300
  83. package/types/CanvasOption.d.ts +7 -7
  84. package/types/Cardinal.d.ts +13 -13
  85. package/types/Gradient.d.ts +14 -14
  86. package/types/Hermite.d.ts +18 -18
  87. package/types/Object3D.d.ts +114 -114
  88. package/types/SVGConfig.d.ts +76 -76
  89. package/types/Scene3D.d.ts +6 -6
  90. package/types/Shader.d.ts +21 -21
  91. package/types/Texture.d.ts +16 -16
  92. package/types/Tree.d.ts +69 -69
  93. package/types/TreeConfig.d.ts +24 -24
  94. package/types/TreeOption.d.ts +48 -48
  95. package/types/WebGL.d.ts +38 -38
  96. package/types/WebGLOption.d.ts +7 -7
  97. package/types/animation.d.ts +6 -6
  98. package/types/formatColor.d.ts +2 -2
  99. package/types/getLoopColors.d.ts +2 -2
  100. package/types/getWebGLContext.d.ts +2 -2
  101. package/types/painterConfig.d.ts +2 -2
  102. package/types/resizeObserver.d.ts +2 -2
  103. package/types/ruler.d.ts +7 -7
  104. package/types/throttle.d.ts +4 -4
  105. package/types/throttleOption.d.ts +21 -21
  106. package/types/viewHandler.d.ts +13 -13
  107. package/uni-app/ui-canvas.vue +226 -222
  108. package/lib/Buffer/index.umd.js +0 -55
  109. package/lib/Buffer/index.umd.min.js +0 -11
  110. package/lib/Canvas/index.umd.js +0 -721
  111. package/lib/Canvas/index.umd.min.js +0 -11
  112. package/lib/Cardinal/index.umd.js +0 -112
  113. package/lib/Cardinal/index.umd.min.js +0 -11
  114. package/lib/Eoap/index.umd.js +0 -53
  115. package/lib/Eoap/index.umd.min.js +0 -11
  116. package/lib/Geometry/index.umd.js +0 -205
  117. package/lib/Geometry/index.umd.min.js +0 -11
  118. package/lib/Hermite/index.umd.js +0 -55
  119. package/lib/Hermite/index.umd.min.js +0 -11
  120. package/lib/Matrix4/index.umd.js +0 -146
  121. package/lib/Matrix4/index.umd.min.js +0 -11
  122. package/lib/Mercator/index.umd.js +0 -39
  123. package/lib/Mercator/index.umd.min.js +0 -11
  124. package/lib/OralCanvas/index.es.js +0 -657
  125. package/lib/OralCanvas/index.es.min.js +0 -11
  126. package/lib/OralWebGL/index.es.js +0 -611
  127. package/lib/OralWebGL/index.es.min.js +0 -11
  128. package/lib/SVG/index.umd.js +0 -475
  129. package/lib/SVG/index.umd.min.js +0 -11
  130. package/lib/Shader/index.umd.js +0 -134
  131. package/lib/Shader/index.umd.min.js +0 -11
  132. package/lib/Texture/index.umd.js +0 -72
  133. package/lib/Texture/index.umd.min.js +0 -11
  134. package/lib/TreeLayout/index.umd.js +0 -430
  135. package/lib/TreeLayout/index.umd.min.js +0 -11
  136. package/lib/WebGL/index.umd.js +0 -684
  137. package/lib/WebGL/index.umd.min.js +0 -11
  138. package/lib/animation/index.umd.js +0 -91
  139. package/lib/animation/index.umd.min.js +0 -11
  140. package/lib/formatColor/index.umd.js +0 -59
  141. package/lib/formatColor/index.umd.min.js +0 -11
  142. package/lib/getLoopColors/index.umd.js +0 -55
  143. package/lib/getLoopColors/index.umd.min.js +0 -11
  144. package/lib/getWebGLContext/index.umd.js +0 -65
  145. package/lib/getWebGLContext/index.umd.min.js +0 -11
  146. package/lib/index.umd.js +0 -2834
  147. package/lib/index.umd.min.js +0 -11
  148. package/lib/resizeObserver/index.umd.js +0 -48
  149. package/lib/resizeObserver/index.umd.min.js +0 -11
  150. package/lib/rotate/index.umd.js +0 -27
  151. package/lib/rotate/index.umd.min.js +0 -11
  152. package/lib/ruler/index.umd.js +0 -145
  153. package/lib/ruler/index.umd.min.js +0 -11
  154. package/lib/throttle/index.umd.js +0 -70
  155. package/lib/throttle/index.umd.min.js +0 -11
  156. package/lib/viewHandler/index.umd.js +0 -139
  157. package/lib/viewHandler/index.umd.min.js +0 -11
@@ -1,25 +1,25 @@
1
- export default interface TreeConfigType {
2
-
3
- /**
4
- * 获取根结点的方法
5
- * @param initTree 原始数据
6
- * @returns 返回根结点
7
- */
8
- root?: (initTree: any) => any
9
-
10
- /**
11
- * 获取子结点的方法
12
- * @param parentTree 父结点
13
- * @param initTree 原始数据
14
- * @returns 返回当前父结点的所有子结点数组
15
- */
16
- children?: (parentTree: any, initTree: any) => any[]
17
-
18
- /**
19
- * 获取结点ID方法
20
- * @param treedata 当前结点
21
- * @returns 返回可以唯一标识当前结点的id
22
- */
23
- id?: (treedata: any) => string
24
-
1
+ export default interface TreeConfigType {
2
+
3
+ /**
4
+ * 获取根结点的方法
5
+ * @param initTree 原始数据
6
+ * @returns 返回根结点
7
+ */
8
+ root?: (initTree: any) => any
9
+
10
+ /**
11
+ * 获取子结点的方法
12
+ * @param parentTree 父结点
13
+ * @param initTree 原始数据
14
+ * @returns 返回当前父结点的所有子结点数组
15
+ */
16
+ children?: (parentTree: any, initTree: any) => any[]
17
+
18
+ /**
19
+ * 获取结点ID方法
20
+ * @param treedata 当前结点
21
+ * @returns 返回可以唯一标识当前结点的id
22
+ */
23
+ id?: (treedata: any) => string
24
+
25
25
  }
@@ -1,49 +1,49 @@
1
- export type treeType = "plain" | "rect" | "circle"
2
- export type treeDirectionType = "LR" | "RL" | "TB" | "BT"
3
-
4
- export default interface TreeOptionType {
5
-
6
- offsetX?: number
7
- offsetY?: number
8
-
9
- /**
10
- * 树图类型
11
- */
12
- type?: treeType
13
-
14
- /**
15
- * 设置成矩形树图(rect)时有效,表示树图方向
16
- */
17
- direction?: treeDirectionType
18
-
19
- /**
20
- * 树图x坐标
21
- */
22
- x?: number
23
-
24
- /**
25
- * 树图y坐标
26
- */
27
- y?: number
28
-
29
- /**
30
- * 设置成矩形树图(rect)时有效,表示矩形宽
31
- */
32
- width?: number
33
-
34
- /**
35
- * 设置成矩形树图(rect)时有效,表示矩形高
36
- */
37
- height?: number
38
-
39
- /**
40
- * 设置成圆树图(circle)时有效,表示圆树的半径
41
- */
42
- radius?: number
43
-
44
- /**
45
- * 切换时长
46
- */
47
- duration?: number
48
-
1
+ export type treeType = "plain" | "rect" | "circle"
2
+ export type treeDirectionType = "LR" | "RL" | "TB" | "BT"
3
+
4
+ export default interface TreeOptionType {
5
+
6
+ offsetX?: number
7
+ offsetY?: number
8
+
9
+ /**
10
+ * 树图类型
11
+ */
12
+ type?: treeType
13
+
14
+ /**
15
+ * 设置成矩形树图(rect)时有效,表示树图方向
16
+ */
17
+ direction?: treeDirectionType
18
+
19
+ /**
20
+ * 树图x坐标
21
+ */
22
+ x?: number
23
+
24
+ /**
25
+ * 树图y坐标
26
+ */
27
+ y?: number
28
+
29
+ /**
30
+ * 设置成矩形树图(rect)时有效,表示矩形宽
31
+ */
32
+ width?: number
33
+
34
+ /**
35
+ * 设置成矩形树图(rect)时有效,表示矩形高
36
+ */
37
+ height?: number
38
+
39
+ /**
40
+ * 设置成圆树图(circle)时有效,表示圆树的半径
41
+ */
42
+ radius?: number
43
+
44
+ /**
45
+ * 切换时长
46
+ */
47
+ duration?: number
48
+
49
49
  }
package/types/WebGL.d.ts CHANGED
@@ -1,39 +1,39 @@
1
- import Object3DType from './Object3D'
2
- import Matrix4Type from './Matrix4'
3
-
4
- export default interface WebGLType {
5
-
6
- matrix(initMatrix4?: number[]): Matrix4Type
7
-
8
- /**
9
- * 使用模型数据绘制
10
- * @param object3D 记录着的模型数据
11
- */
12
- render(object3D: Object3DType): void
13
-
14
- /**
15
- * 重新绘制
16
- */
17
- review(): this
18
-
19
- /**
20
- * 返回变换矩阵
21
- */
22
- getMatrix(): Matrix4Type
23
-
24
- /**
25
- * 返回所有的Object3D内容
26
- */
27
- getObject3D(): Object3DType[]
28
-
29
- /**
30
- * 设置区域
31
- */
32
- setRegion(regionName: string | number): this
33
-
34
- /**
35
- * 获取区域
36
- */
37
- getRegion(x: number, y: number): Promise<string>
38
-
1
+ import Object3DType from './Object3D'
2
+ import Matrix4Type from './Matrix4'
3
+
4
+ export default interface WebGLType {
5
+
6
+ matrix(initMatrix4?: number[]): Matrix4Type
7
+
8
+ /**
9
+ * 使用模型数据绘制
10
+ * @param object3D 记录着的模型数据
11
+ */
12
+ render(object3D: Object3DType): void
13
+
14
+ /**
15
+ * 重新绘制
16
+ */
17
+ review(): this
18
+
19
+ /**
20
+ * 返回变换矩阵
21
+ */
22
+ getMatrix(): Matrix4Type
23
+
24
+ /**
25
+ * 返回所有的Object3D内容
26
+ */
27
+ getObject3D(): Object3DType[]
28
+
29
+ /**
30
+ * 设置区域
31
+ */
32
+ setRegion(regionName: string | number): this
33
+
34
+ /**
35
+ * 获取区域
36
+ */
37
+ getRegion(x: number, y: number): Promise<string>
38
+
39
39
  }
@@ -1,8 +1,8 @@
1
- export default interface WebGLOptionType {
2
-
3
- /**
4
- * 是否支持区域管理,默认true
5
- */
6
- region?: boolean
7
-
1
+ export default interface WebGLOptionType {
2
+
3
+ /**
4
+ * 是否支持区域管理,默认true
5
+ */
6
+ region?: boolean
7
+
8
8
  }
@@ -1,7 +1,7 @@
1
- interface animationFun {
2
- (deep: number): void
3
- }
4
-
5
- export default interface animationType {
6
- (doback: animationFun, duration?: number, callback?: animationFun): Function
1
+ interface animationFun {
2
+ (deep: number): void
3
+ }
4
+
5
+ export default interface animationType {
6
+ (doback: animationFun, duration?: number, callback?: animationFun): Function
7
7
  }
@@ -1,3 +1,3 @@
1
- export default interface formatColor {
2
- (color: string, format: string): number[] | string
1
+ export default interface formatColor {
2
+ (color: string, format: string): number[] | string
3
3
  }
@@ -1,3 +1,3 @@
1
- export default interface getLoopColorsType {
2
- (num: number, alpha?: number): string[]
1
+ export default interface getLoopColorsType {
2
+ (num: number, alpha?: number): string[]
3
3
  }
@@ -1,3 +1,3 @@
1
- export default interface getWebGLContextType {
2
- (el: HTMLElement | null, scale?: number): WebGLRenderingContext
1
+ export default interface getWebGLContextType {
2
+ (el: HTMLElement | null, scale?: number): WebGLRenderingContext
3
3
  }
@@ -1,3 +1,3 @@
1
- export type arcCapType = "butt" | "round" | "-round"
2
- export type textAlignType = "left" | "center" | "right"
1
+ export type arcCapType = "butt" | "round" | "-round"
2
+ export type textAlignType = "left" | "center" | "right"
3
3
  export type textBaselineType = "top" | "middle" | "bottom"
@@ -1,3 +1,3 @@
1
- export default interface resizeObserver {
2
- (el: HTMLElement | null, callback: Function): Function
1
+ export default interface resizeObserver {
2
+ (el: HTMLElement | null, callback: Function): Function
3
3
  }
package/types/ruler.d.ts CHANGED
@@ -1,8 +1,8 @@
1
- export interface rulerOptionType {
2
- max?: number
3
- min?: number
4
- }
5
-
6
- export default interface rulerType {
7
- (maxValue: number, minValue: number, num: number, option?: rulerOptionType): number[]
1
+ export interface rulerOptionType {
2
+ max?: number
3
+ min?: number
4
+ }
5
+
6
+ export default interface rulerType {
7
+ (maxValue: number, minValue: number, num: number, option?: rulerOptionType): number[]
8
8
  }
@@ -1,5 +1,5 @@
1
- import throttleOptionType from './throttleOption'
2
-
3
- export default interface throttle {
4
- (callback: Function, option?: throttleOptionType): Function
1
+ import throttleOptionType from './throttleOption'
2
+
3
+ export default interface throttle {
4
+ (callback: Function, option?: throttleOptionType): Function
5
5
  }
@@ -1,22 +1,22 @@
1
- export type throttleOpportunityType = "begin" | "end" | "wide"
2
-
3
- export default interface throttleOptionType {
4
-
5
- /**
6
- * 节流时长
7
- */
8
- time?: number
9
-
10
- /**
11
- * 是否持续节流
12
- */
13
- keep?: boolean
14
-
15
- /**
16
- * 执行时机
17
- *
18
- * begin(开始触发)、end(结束触发)、wide(第一次开始触发,其余结束触发)
19
- */
20
- opportunity?: throttleOpportunityType
21
-
1
+ export type throttleOpportunityType = "begin" | "end" | "wide"
2
+
3
+ export default interface throttleOptionType {
4
+
5
+ /**
6
+ * 节流时长
7
+ */
8
+ time?: number
9
+
10
+ /**
11
+ * 是否持续节流
12
+ */
13
+ keep?: boolean
14
+
15
+ /**
16
+ * 执行时机
17
+ *
18
+ * begin(开始触发)、end(结束触发)、wide(第一次开始触发,其余结束触发)
19
+ */
20
+ opportunity?: throttleOpportunityType
21
+
22
22
  }
@@ -1,14 +1,14 @@
1
- export interface paramsType {
2
- type: string
3
- value: number,
4
- normal: number[],
5
- event: Event
6
- }
7
-
8
- export interface callbackFun {
9
- (params: paramsType): void
10
- }
11
-
12
- export default interface viewHandlerType {
13
- (callback: callbackFun): void
1
+ export interface paramsType {
2
+ type: string
3
+ value: number,
4
+ normal: number[],
5
+ event: Event
6
+ }
7
+
8
+ export interface callbackFun {
9
+ (params: paramsType): void
10
+ }
11
+
12
+ export default interface viewHandlerType {
13
+ (callback: callbackFun): void
14
14
  }