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.
Files changed (194) hide show
  1. package/.editorconfig +18 -18
  2. package/.eslintrc.js +24 -0
  3. package/AUTHORS.txt +6 -6
  4. package/CHANGELOG +15 -1
  5. package/LICENSE +20 -20
  6. package/README.md +41 -2
  7. package/lib/Buffer/index.umd.js +2 -2
  8. package/lib/Buffer/index.umd.min.js +2 -2
  9. package/lib/Canvas/index.umd.js +19 -8
  10. package/lib/Canvas/index.umd.min.js +3 -3
  11. package/lib/Cardinal/index.umd.js +2 -2
  12. package/lib/Cardinal/index.umd.min.js +2 -2
  13. package/lib/Eoap/index.umd.js +2 -2
  14. package/lib/Eoap/index.umd.min.js +2 -2
  15. package/lib/Geometry/index.umd.js +7 -4
  16. package/lib/Geometry/index.umd.min.js +2 -2
  17. package/lib/Hermite/index.umd.js +2 -2
  18. package/lib/Hermite/index.umd.min.js +2 -2
  19. package/lib/Matrix4/index.umd.js +14 -8
  20. package/lib/Matrix4/index.umd.min.js +3 -3
  21. package/lib/Mercator/index.umd.js +2 -2
  22. package/lib/Mercator/index.umd.min.js +2 -2
  23. package/lib/OralCanvas/index.es.js +14 -6
  24. package/lib/OralCanvas/index.es.min.js +3 -3
  25. package/lib/OralWebGL/index.es.js +27 -19
  26. package/lib/OralWebGL/index.es.min.js +3 -3
  27. package/lib/SVG/index.umd.js +6 -4
  28. package/lib/SVG/index.umd.min.js +2 -2
  29. package/lib/Shader/index.umd.js +10 -10
  30. package/lib/Shader/index.umd.min.js +3 -3
  31. package/lib/Texture/index.umd.js +4 -3
  32. package/lib/Texture/index.umd.min.js +2 -2
  33. package/lib/TreeLayout/index.umd.js +8 -5
  34. package/lib/TreeLayout/index.umd.min.js +2 -2
  35. package/lib/WebGL/index.umd.js +27 -19
  36. package/lib/WebGL/index.umd.min.js +3 -3
  37. package/lib/animation/index.umd.js +4 -3
  38. package/lib/animation/index.umd.min.js +2 -2
  39. package/lib/formatColor/index.umd.js +2 -2
  40. package/lib/formatColor/index.umd.min.js +2 -2
  41. package/lib/getLoopColors/index.umd.js +2 -2
  42. package/lib/getLoopColors/index.umd.min.js +2 -2
  43. package/lib/getWebGLContext/index.umd.js +4 -3
  44. package/lib/getWebGLContext/index.umd.min.js +2 -2
  45. package/lib/index.umd.js +73 -34
  46. package/lib/index.umd.min.js +3 -3
  47. package/lib/move/index.umd.js +2 -2
  48. package/lib/move/index.umd.min.js +2 -2
  49. package/lib/resizeObserver/index.umd.js +4 -3
  50. package/lib/resizeObserver/index.umd.min.js +2 -2
  51. package/lib/rotate/index.umd.js +2 -2
  52. package/lib/rotate/index.umd.min.js +2 -2
  53. package/lib/ruler/index.umd.js +14 -2
  54. package/lib/ruler/index.umd.min.js +3 -3
  55. package/lib/scale/index.umd.js +2 -2
  56. package/lib/scale/index.umd.min.js +2 -2
  57. package/lib/throttle/index.umd.js +2 -2
  58. package/lib/throttle/index.umd.min.js +2 -2
  59. package/lib/viewHandler/index.umd.js +4 -4
  60. package/lib/viewHandler/index.umd.min.js +3 -3
  61. package/miniprogram/ui-canvas/index.js +107 -107
  62. package/miniprogram/ui-canvas/index.json +4 -4
  63. package/miniprogram/ui-canvas/index.wxml +4 -4
  64. package/miniprogram/ui-canvas/index.wxss +5 -5
  65. package/package/Buffer/index.ts +2 -2
  66. package/package/Canvas/index.ts +2 -2
  67. package/package/Cardinal/index.ts +2 -2
  68. package/package/Eoap/index.ts +2 -2
  69. package/package/Geometry/index.ts +2 -2
  70. package/package/Hermite/index.ts +2 -2
  71. package/package/Matrix4/index.ts +2 -2
  72. package/package/Mercator/index.ts +2 -2
  73. package/package/OralCanvas/index.ts +2 -2
  74. package/package/OralWebGL/index.ts +2 -2
  75. package/package/SVG/index.ts +2 -2
  76. package/package/Shader/index.ts +39 -39
  77. package/package/Texture/index.ts +2 -2
  78. package/package/TreeLayout/index.ts +1 -1
  79. package/package/WebGL/index.ts +2 -2
  80. package/package/animation/index.ts +2 -2
  81. package/package/formatColor/index.ts +2 -2
  82. package/package/getLoopColors/index.ts +2 -2
  83. package/package/getWebGLContext/index.ts +39 -39
  84. package/package/index.ts +76 -76
  85. package/package/move/index.ts +2 -2
  86. package/package/resizeObserver/index.ts +2 -2
  87. package/package/rotate/index.ts +2 -2
  88. package/package/ruler/index.ts +2 -2
  89. package/package/scale/index.ts +2 -2
  90. package/package/throttle/index.ts +2 -2
  91. package/package/viewHandler/index.ts +2 -2
  92. package/package.json +6 -2
  93. package/src/Canvas.ts +70 -67
  94. package/src/Eoap.ts +66 -66
  95. package/src/Geometry.ts +82 -82
  96. package/src/Matrix4/index.ts +17 -9
  97. package/src/Matrix4/move.ts +12 -12
  98. package/src/Matrix4/rotate.ts +15 -15
  99. package/src/Matrix4/scale.ts +11 -11
  100. package/src/Matrix4/transform.ts +64 -64
  101. package/src/Mercator.ts +27 -27
  102. package/src/SVG.ts +24 -24
  103. package/src/WebGL.ts +66 -66
  104. package/src/animation.ts +98 -98
  105. package/src/common/assemble.ts +22 -22
  106. package/src/common/canvas/arc.ts +51 -50
  107. package/src/common/canvas/config.ts +158 -158
  108. package/src/common/canvas/gradient.ts +29 -29
  109. package/src/common/canvas/index.ts +149 -140
  110. package/src/common/canvas/painter.ts +417 -426
  111. package/src/common/canvas/texts.ts +18 -18
  112. package/src/common/geometry/prism-horizontal.ts +35 -33
  113. package/src/common/geometry/prism-vertical.ts +40 -40
  114. package/src/common/geometry/sphere-fragment.ts +40 -39
  115. package/src/common/geometry/tool/circle.ts +11 -11
  116. package/src/common/mergeOption.ts +6 -6
  117. package/src/common/setStyle.ts +5 -5
  118. package/src/common/svg/config.ts +186 -186
  119. package/src/common/svg/dictionary.ts +1 -1
  120. package/src/common/svg/gradient.ts +63 -63
  121. package/src/common/svg/index.ts +356 -356
  122. package/src/common/svg/tool.ts +44 -44
  123. package/src/common/tree/index.ts +25 -25
  124. package/src/common/tree/toInnerTree.ts +57 -56
  125. package/src/common/tree/toPlainTree.ts +132 -131
  126. package/src/common/webgl/buffer.ts +79 -79
  127. package/src/common/webgl/doDraw.ts +108 -108
  128. package/src/common/webgl/getColorFactory.ts +26 -26
  129. package/src/common/webgl/getShader.ts +48 -48
  130. package/src/common/webgl/getTexture.ts +11 -11
  131. package/src/common/webgl/getWebGLContext.ts +28 -27
  132. package/src/common/webgl/index.ts +224 -223
  133. package/src/common/webgl/shader.ts +75 -75
  134. package/src/common/webgl/texture.ts +97 -96
  135. package/src/formatColor.ts +44 -44
  136. package/src/getLoopColors.ts +42 -42
  137. package/src/interpolation/Cardinal.ts +110 -110
  138. package/src/interpolation/Hermite.ts +65 -65
  139. package/src/{TreeLayout/index.ts → layout/TreeLayout.ts} +21 -21
  140. package/src/move.ts +7 -7
  141. package/src/resizeObserver.ts +37 -36
  142. package/src/rotate.ts +7 -7
  143. package/src/ruler.ts +41 -19
  144. package/src/scale.ts +6 -6
  145. package/src/shader/fsColor.c +7 -7
  146. package/src/shader/fsColors.c +7 -7
  147. package/src/shader/fsCube.c +8 -8
  148. package/src/shader/fsImage.c +8 -8
  149. package/src/shader/vsColor.c +17 -17
  150. package/src/shader/vsColors.c +13 -13
  151. package/src/shader/vsCube.c +13 -13
  152. package/src/shader/vsImage.c +13 -13
  153. package/src/throttle.ts +52 -51
  154. package/src/viewHandler.ts +158 -158
  155. package/types/Buffer.d.ts +23 -23
  156. package/types/Canvas.d.ts +8 -0
  157. package/types/CanvasConfig.d.ts +106 -106
  158. package/types/CanvasOption.d.ts +8 -7
  159. package/types/CanvasOpts.d.ts +10 -0
  160. package/types/Cardinal.d.ts +13 -13
  161. package/types/Geometry.d.ts +40 -40
  162. package/types/GeometryOption.d.ts +11 -11
  163. package/types/GeometryResult.d.ts +18 -18
  164. package/types/Gradient.d.ts +14 -14
  165. package/types/Hermite.d.ts +18 -18
  166. package/types/Map.d.ts +9 -9
  167. package/types/Matrix4.d.ts +5 -0
  168. package/types/Object3D.d.ts +114 -114
  169. package/types/SVG.d.ts +238 -238
  170. package/types/SVGConfig.d.ts +76 -76
  171. package/types/Scene3D.d.ts +6 -6
  172. package/types/Shader.d.ts +21 -21
  173. package/types/Texture.d.ts +16 -16
  174. package/types/Tree.d.ts +69 -69
  175. package/types/TreeConfig.d.ts +24 -24
  176. package/types/TreeLayout.d.ts +54 -54
  177. package/types/TreeOption.d.ts +48 -48
  178. package/types/WebGL.d.ts +38 -38
  179. package/types/WebGLOption.d.ts +7 -7
  180. package/types/animation.d.ts +6 -6
  181. package/types/formatColor.d.ts +2 -2
  182. package/types/getLoopColors.d.ts +2 -2
  183. package/types/getWebGLContext.d.ts +2 -2
  184. package/types/index.d.ts +175 -175
  185. package/types/move.d.ts +2 -2
  186. package/types/painterConfig.d.ts +2 -2
  187. package/types/resizeObserver.d.ts +2 -2
  188. package/types/rotate.d.ts +2 -2
  189. package/types/ruler.d.ts +7 -7
  190. package/types/scale.d.ts +2 -2
  191. package/types/throttle.d.ts +4 -4
  192. package/types/throttleOption.d.ts +21 -21
  193. package/types/viewHandler.d.ts +13 -13
  194. package/uni-app/ui-canvas.vue +239 -206
@@ -1,115 +1,115 @@
1
- import Matrix4Type from './Matrix4'
2
-
3
- export type geometryType = "LINES" | "INE_STRIP" | "LINE_LOOP" | "TRIANGLES" | "TRIANGLE_STRIP" | "TRIANGLE_FAN"
4
-
5
- export interface meshType {
6
-
7
- // 形状
8
- geometry: {
9
- attributes: {
10
-
11
- // 点坐标
12
- position: {
13
- array: number[] | Float32Array
14
- count: number
15
- itemSize: number
16
- }
17
-
18
- // 法向量
19
- normal?: {
20
- array: number[] | Float32Array
21
- count: number
22
- itemSize: number
23
- }
24
-
25
- // 纹理坐标
26
- uv?: {
27
- array: number[] | Float32Array
28
- count: number
29
- itemSize: number
30
- }
31
-
32
- }
33
-
34
- // 索引
35
- index?: {
36
- array: number[] | Uint8Array
37
- count: number
38
- itemSize: number
39
- }
40
-
41
- // 线、还是三角形
42
- type: geometryType
43
- }
44
-
45
- // 材质
46
- material: {
47
-
48
- // 单一的颜色
49
- color?: {
50
- r: number
51
- g: number
52
- b: number
53
- alpha: number
54
- }
55
-
56
- // 多颜色
57
- colors?: {
58
- array: number[] | Float32Array
59
- count: number
60
- itemSize: number
61
- }
62
-
63
- // 立方体纹理
64
- cube?: {
65
- left?: {
66
- image: {
67
- value?: TexImageSource
68
- }
69
- },
70
- right?: {
71
- image: {
72
- value?: TexImageSource
73
- }
74
- }
75
- near?: {
76
- image: {
77
- value?: TexImageSource
78
- }
79
- }
80
- far?: {
81
- image: {
82
- value?: TexImageSource
83
- }
84
- }
85
- top?: {
86
- image: {
87
- value?: TexImageSource
88
- }
89
- }
90
- bottom?: {
91
- image: {
92
- value?: TexImageSource
93
- }
94
- }
95
- }
96
-
97
- // 二维纹理
98
- image?: {
99
- value?: TexImageSource
100
- }
101
-
102
- }
103
- }
104
-
105
- export default interface Object3D {
106
-
107
- // 区域名称,不设置或设置为空字符串,表示此区域无需记录
108
- region?: string
109
-
110
- // 变换矩阵
111
- matrix?: Matrix4Type
112
-
113
- // 图形
114
- mesh: meshType[]
1
+ import Matrix4Type from './Matrix4'
2
+
3
+ export type geometryType = "LINES" | "INE_STRIP" | "LINE_LOOP" | "TRIANGLES" | "TRIANGLE_STRIP" | "TRIANGLE_FAN"
4
+
5
+ export interface meshType {
6
+
7
+ // 形状
8
+ geometry: {
9
+ attributes: {
10
+
11
+ // 点坐标
12
+ position: {
13
+ array: number[] | Float32Array
14
+ count: number
15
+ itemSize: number
16
+ }
17
+
18
+ // 法向量
19
+ normal?: {
20
+ array: number[] | Float32Array
21
+ count: number
22
+ itemSize: number
23
+ }
24
+
25
+ // 纹理坐标
26
+ uv?: {
27
+ array: number[] | Float32Array
28
+ count: number
29
+ itemSize: number
30
+ }
31
+
32
+ }
33
+
34
+ // 索引
35
+ index?: {
36
+ array: number[] | Uint8Array
37
+ count: number
38
+ itemSize: number
39
+ }
40
+
41
+ // 线、还是三角形
42
+ type: geometryType
43
+ }
44
+
45
+ // 材质
46
+ material: {
47
+
48
+ // 单一的颜色
49
+ color?: {
50
+ r: number
51
+ g: number
52
+ b: number
53
+ alpha: number
54
+ }
55
+
56
+ // 多颜色
57
+ colors?: {
58
+ array: number[] | Float32Array
59
+ count: number
60
+ itemSize: number
61
+ }
62
+
63
+ // 立方体纹理
64
+ cube?: {
65
+ left?: {
66
+ image: {
67
+ value?: TexImageSource
68
+ }
69
+ },
70
+ right?: {
71
+ image: {
72
+ value?: TexImageSource
73
+ }
74
+ }
75
+ near?: {
76
+ image: {
77
+ value?: TexImageSource
78
+ }
79
+ }
80
+ far?: {
81
+ image: {
82
+ value?: TexImageSource
83
+ }
84
+ }
85
+ top?: {
86
+ image: {
87
+ value?: TexImageSource
88
+ }
89
+ }
90
+ bottom?: {
91
+ image: {
92
+ value?: TexImageSource
93
+ }
94
+ }
95
+ }
96
+
97
+ // 二维纹理
98
+ image?: {
99
+ value?: TexImageSource
100
+ }
101
+
102
+ }
103
+ }
104
+
105
+ export default interface Object3D {
106
+
107
+ // 区域名称,不设置或设置为空字符串,表示此区域无需记录
108
+ region?: string
109
+
110
+ // 变换矩阵
111
+ matrix?: Matrix4Type
112
+
113
+ // 图形
114
+ mesh: meshType[]
115
115
  }