vislite 0.3.0-alpha.1 → 0.3.1

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 (129) hide show
  1. package/AUTHORS.txt +6 -6
  2. package/CHANGELOG +13 -2
  3. package/LICENSE +20 -20
  4. package/README.md +53 -53
  5. package/lib/Buffer/index.umd.js +55 -0
  6. package/lib/Buffer/index.umd.min.js +11 -0
  7. package/lib/Canvas/index.umd.js +11 -6
  8. package/lib/Canvas/index.umd.min.js +3 -3
  9. package/lib/Cardinal/index.umd.js +2 -2
  10. package/lib/Cardinal/index.umd.min.js +2 -2
  11. package/lib/Eoap/index.umd.js +2 -2
  12. package/lib/Eoap/index.umd.min.js +2 -2
  13. package/lib/Hermite/index.umd.js +2 -2
  14. package/lib/Hermite/index.umd.min.js +2 -2
  15. package/lib/Matrix4/index.umd.js +2 -2
  16. package/lib/Matrix4/index.umd.min.js +2 -2
  17. package/lib/Mercator/index.umd.js +2 -2
  18. package/lib/Mercator/index.umd.min.js +2 -2
  19. package/lib/OralCanvas/index.es.js +11 -6
  20. package/lib/OralCanvas/index.es.min.js +3 -3
  21. package/lib/OralWebGL/index.es.js +11 -6
  22. package/lib/OralWebGL/index.es.min.js +3 -3
  23. package/lib/SVG/index.umd.js +9 -4
  24. package/lib/SVG/index.umd.min.js +3 -3
  25. package/lib/Shader/index.umd.js +55 -0
  26. package/lib/Shader/index.umd.min.js +11 -0
  27. package/lib/Texture/index.umd.js +74 -0
  28. package/lib/Texture/index.umd.min.js +11 -0
  29. package/lib/WebGL/index.umd.js +11 -6
  30. package/lib/WebGL/index.umd.min.js +3 -3
  31. package/lib/animation/index.umd.js +2 -2
  32. package/lib/animation/index.umd.min.js +2 -2
  33. package/lib/getLoopColors/index.umd.js +2 -2
  34. package/lib/getLoopColors/index.umd.min.js +2 -2
  35. package/lib/getWebGLContext/index.umd.js +65 -0
  36. package/lib/getWebGLContext/index.umd.min.js +11 -0
  37. package/lib/index.umd.js +43 -10
  38. package/lib/index.umd.min.js +3 -3
  39. package/lib/rotate/index.umd.js +2 -2
  40. package/lib/rotate/index.umd.min.js +2 -2
  41. package/lib/ruler/index.umd.js +2 -2
  42. package/lib/ruler/index.umd.min.js +2 -2
  43. package/lib/viewHandler/index.umd.js +2 -2
  44. package/lib/viewHandler/index.umd.min.js +2 -2
  45. package/miniprogram/ui-canvas/index.js +99 -99
  46. package/miniprogram/ui-canvas/index.json +4 -4
  47. package/miniprogram/ui-canvas/index.wxml +4 -4
  48. package/miniprogram/ui-canvas/index.wxss +5 -5
  49. package/package/Buffer/index.ts +2 -0
  50. package/package/Canvas/index.ts +1 -1
  51. package/package/Cardinal/index.ts +2 -2
  52. package/package/Eoap/index.ts +2 -2
  53. package/package/Hermite/index.ts +2 -2
  54. package/package/Matrix4/index.ts +2 -2
  55. package/package/Mercator/index.ts +2 -2
  56. package/package/OralCanvas/index.ts +1 -1
  57. package/package/OralWebGL/index.ts +1 -1
  58. package/package/SVG/index.ts +2 -2
  59. package/package/Shader/index.ts +2 -0
  60. package/package/Texture/index.ts +2 -0
  61. package/package/WebGL/index.ts +1 -1
  62. package/package/animation/index.ts +2 -2
  63. package/package/getLoopColors/index.ts +2 -2
  64. package/package/getWebGLContext/index.ts +40 -0
  65. package/package/index.ts +56 -45
  66. package/package/rotate/index.ts +2 -2
  67. package/package/ruler/index.ts +2 -2
  68. package/package/viewHandler/index.ts +2 -2
  69. package/package.json +2 -2
  70. package/src/Canvas.ts +56 -56
  71. package/src/Eoap.ts +66 -66
  72. package/src/Matrix4/index.ts +76 -76
  73. package/src/Matrix4/move.ts +12 -12
  74. package/src/Matrix4/rotate.ts +15 -15
  75. package/src/Matrix4/scale.ts +11 -11
  76. package/src/Matrix4/transform.ts +64 -64
  77. package/src/Mercator.ts +26 -26
  78. package/src/SVG.ts +23 -23
  79. package/src/WebGL.ts +52 -52
  80. package/src/animation.ts +99 -99
  81. package/src/common/assemble.ts +1 -1
  82. package/src/common/canvas/arc.ts +50 -50
  83. package/src/common/canvas/config.ts +157 -157
  84. package/src/common/canvas/gradient.ts +29 -29
  85. package/src/common/canvas/index.ts +10 -7
  86. package/src/common/canvas/painter.ts +355 -355
  87. package/src/common/canvas/texts.ts +18 -18
  88. package/src/common/setStyle.ts +5 -5
  89. package/src/common/svg/config.ts +173 -173
  90. package/src/common/svg/index.ts +334 -334
  91. package/src/common/svg/tool.ts +43 -43
  92. package/src/common/webgl/buffer.ts +79 -79
  93. package/src/common/webgl/doDraw.ts +106 -106
  94. package/src/common/webgl/getColorFactory.ts +26 -26
  95. package/src/common/webgl/getShader.ts +75 -75
  96. package/src/common/webgl/getTexture.ts +11 -11
  97. package/src/common/webgl/getWebGLContext.ts +27 -27
  98. package/src/common/webgl/index.ts +216 -216
  99. package/src/common/webgl/shader.ts +75 -75
  100. package/src/common/webgl/texture.ts +99 -99
  101. package/src/getLoopColors.ts +42 -42
  102. package/src/interpolation/Cardinal.ts +109 -109
  103. package/src/interpolation/Hermite.ts +65 -65
  104. package/src/rotate.ts +7 -7
  105. package/src/ruler.ts +99 -99
  106. package/src/viewHandler.ts +139 -139
  107. package/types/Buffer.d.ts +24 -0
  108. package/types/Canvas.d.ts +282 -282
  109. package/types/CanvasConfig.d.ts +80 -80
  110. package/types/Cardinal.d.ts +13 -13
  111. package/types/Gradient.d.ts +14 -14
  112. package/types/Hermite.d.ts +18 -18
  113. package/types/Map.d.ts +9 -9
  114. package/types/Matrix4.d.ts +42 -42
  115. package/types/Object3D.d.ts +113 -113
  116. package/types/SVG.d.ts +210 -210
  117. package/types/SVGConfig.d.ts +58 -58
  118. package/types/Scene3D.d.ts +6 -6
  119. package/types/Shader.d.ts +16 -0
  120. package/types/Texture.d.ts +17 -0
  121. package/types/WebGL.d.ts +38 -38
  122. package/types/animation.d.ts +6 -6
  123. package/types/getLoopColors.d.ts +2 -2
  124. package/types/getWebGLContext.d.ts +3 -0
  125. package/types/index.d.ts +129 -101
  126. package/types/rotate.d.ts +2 -2
  127. package/types/ruler.d.ts +2 -2
  128. package/types/viewHandler.d.ts +12 -12
  129. package/uni-app/ui-canvas.vue +212 -212
@@ -1,11 +1,11 @@
1
1
  /*!
2
- * VISLite JavaScript Library v0.3.0-alpha.1
2
+ * VISLite JavaScript Library v0.3.1
3
3
  * git+https://github.com/oi-contrib/VISLite.git
4
4
  *
5
5
  * Copyright zxl20070701
6
6
  * Released under the MIT license
7
7
  * https://zxl20070701.github.io/notebook/home.html
8
8
  *
9
- * Publish Date: Wed Jun 28 2023 22:51:53 GMT+0800 (中国标准时间)
9
+ * Publish Date: Fri Jul 07 2023 23:12:38 GMT+0800 (中国标准时间)
10
10
  */
11
11
  var e,r;e=this,r=function(){"use strict";return function(e,r,t){if(e<r){var f=r;r=e,e=f}else if(e==r)return[e];var n=function(e){for(var r=e<100&&e>-100?10:.1,t=-1,f=e;10==r?f>=-100&&f<=100:f<=-100||f>=100;)t+=1,f*=r;if(10==r)return Math.pow(10,t);for(var n="0.",o=1;o<t;o++)n+="0";return+(n+"1")}(e-r),o=Math.ceil((e-r)*n/t),i=(o={3:2,4:5,6:5,7:5,8:10,9:10,11:10,12:10,13:15,14:15,16:15,17:15,18:20,19:20,21:20,22:20,23:25,24:25,26:25,27:25}[o]||o)/n,u=Math.floor(r/i)*i,a=[];a.push(u);for(var l=1;a[a.length-1]<e;l++)a.push(u+i*l);return a}},"object"==typeof exports&&"undefined"!=typeof module?module.exports=r():"function"==typeof define&&define.amd?define(r):(e="undefined"!=typeof globalThis?globalThis:e||self).VISLite_ruler=r();
@@ -1,12 +1,12 @@
1
1
  /*!
2
- * VISLite JavaScript Library v0.3.0-alpha.1
2
+ * VISLite JavaScript Library v0.3.1
3
3
  * git+https://github.com/oi-contrib/VISLite.git
4
4
  *
5
5
  * Copyright zxl20070701
6
6
  * Released under the MIT license
7
7
  * https://zxl20070701.github.io/notebook/home.html
8
8
  *
9
- * Publish Date: Wed Jun 28 2023 22:51:53 GMT+0800 (中国标准时间)
9
+ * Publish Date: Fri Jul 07 2023 23:12:38 GMT+0800 (中国标准时间)
10
10
  */
11
11
  (function (global, factory) {
12
12
  typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
@@ -1,11 +1,11 @@
1
1
  /*!
2
- * VISLite JavaScript Library v0.3.0-alpha.1
2
+ * VISLite JavaScript Library v0.3.1
3
3
  * git+https://github.com/oi-contrib/VISLite.git
4
4
  *
5
5
  * Copyright zxl20070701
6
6
  * Released under the MIT license
7
7
  * https://zxl20070701.github.io/notebook/home.html
8
8
  *
9
- * Publish Date: Wed Jun 28 2023 22:51:53 GMT+0800 (中国标准时间)
9
+ * Publish Date: Fri Jul 07 2023 23:12:38 GMT+0800 (中国标准时间)
10
10
  */
11
11
  var e,n;e=this,n=function(){"use strict";var e=function(e,n){var t=e.getBoundingClientRect();return{x:n.clientX-t.left,y:n.clientY-t.top}};return function(n){var t=document.getElementsByTagName("body")[0];t.addEventListener("keydown",(function(e){var t=function(e){return{37:"left",38:"up",39:"right",40:"down"}[e.keyCode||e.which]}(e);"up"==t?n({type:"lookUp",normal:[],value:.1}):"down"==t?n({type:"lookDown",normal:[],value:.1}):"left"==t?n({type:"lookLeft",normal:[],value:.1}):"right"==t&&n({type:"lookRight",normal:[],value:.1})}));var o=null,i=function(i){if(null!=o){var u=e(t,i),l=[u.x-o.x,u.y-o.y],a=[l[1],l[0],0];0==a[0]&&0==a[1]||(n({type:"rotate",normal:a,value:.01*(Math.abs(u.x-o.x)+Math.abs(u.y-o.y))}),o=u)}};t.addEventListener("mousedown",(function(n){o=e(t,n)})),t.addEventListener("mouseup",(function(e){o=null})),t.addEventListener("mousemove",(function(e){i(e)})),t.addEventListener("touchend",(function(e){o=null})),t.addEventListener("touchstart",(function(n){o=e(t,n)})),t.addEventListener("touchmove",(function(e){i(e.touches[0])}));var u=function(e){0!=e&&n({type:"scale",value:e<0?.899:1.101,normal:[]})};t.addEventListener("mousewheel",(function(e){u(e.wheelDelta)})),window.addEventListener&&window.addEventListener("DOMMouseScroll",(function(e){u(-1*e.detail)}),!1)}},"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define(n):(e="undefined"!=typeof globalThis?globalThis:e||self).VISLite_viewHandler=n();
@@ -1,99 +1,99 @@
1
- import OralCanvas from "../../lib/OralCanvas/index.es.js";
2
-
3
- let dpr = wx.getSystemInfoSync().pixelRatio;
4
-
5
- Component({
6
- properties: {
7
- width: {
8
- type: Number,
9
- default: 300
10
- },
11
- height: {
12
- type: Number,
13
- default: 150
14
- },
15
- touchstart: {
16
- type: Function,
17
- default: () => { }
18
- }
19
- },
20
- data: {
21
- help: {}
22
- },
23
- lifetimes: {
24
- ready() {
25
-
26
- }
27
- },
28
- methods: {
29
- fetch() {
30
- return new Promise((resolve, reject) => {
31
-
32
- let getCanvasContext = (idName, doback) => {
33
- const query = wx.createSelectorQuery().in(this);
34
- query.select('#' + idName)
35
- .fields({ node: true, size: true })
36
- .exec((res) => {
37
- const canvas = res[0].node;
38
- const ctx = canvas.getContext('2d');
39
-
40
- canvas.width = res[0].width * (idName == "region" ? 1 : dpr);
41
- canvas.height = res[0].height * (idName == "region" ? 1 : dpr);
42
-
43
- if (idName != "region") {
44
- ctx.scale(dpr, dpr);
45
- }
46
-
47
- doback(ctx);
48
- });
49
- };
50
-
51
- getCanvasContext("painter", painter => {
52
- getCanvasContext("region", region => {
53
- this.data.help.instance = new OralCanvas({
54
- getContext() {
55
- return painter;
56
- }
57
- }, {
58
- getContext() {
59
- return region;
60
- }
61
- });
62
-
63
- this.data.help.instance.toDataURL = () => {
64
- return new Promise((resolveUrl) => {
65
- wx.canvasToTempFilePath({
66
- canvasId: "painter",
67
- success: function (e) {
68
- resolveUrl(e.tempFilePath);
69
- },
70
- }, this);
71
- })
72
- };
73
- resolve(this.data.help.instance);
74
- });
75
- });
76
-
77
- });
78
- },
79
- doit(event, doback) {
80
- let x = event.touches[0].x;
81
- let y = event.touches[0].y;
82
-
83
- this.data.help.instance.getRegion(x, y).then((regionName) => {
84
- // 兼容旧语法
85
- if (doback) doback(regionName);
86
-
87
- this.triggerEvent('dotouchstart', {
88
- name: regionName,
89
- x: x,
90
- y: y
91
- })
92
- });
93
- },
94
- doitstart(event) {
95
- this.doit(event, this.data.touchstart);
96
- }
97
- }
98
-
99
- });
1
+ import OralCanvas from "../../lib/OralCanvas/index.es.js";
2
+
3
+ let dpr = wx.getSystemInfoSync().pixelRatio;
4
+
5
+ Component({
6
+ properties: {
7
+ width: {
8
+ type: Number,
9
+ default: 300
10
+ },
11
+ height: {
12
+ type: Number,
13
+ default: 150
14
+ },
15
+ touchstart: {
16
+ type: Function,
17
+ default: () => { }
18
+ }
19
+ },
20
+ data: {
21
+ help: {}
22
+ },
23
+ lifetimes: {
24
+ ready() {
25
+
26
+ }
27
+ },
28
+ methods: {
29
+ fetch() {
30
+ return new Promise((resolve, reject) => {
31
+
32
+ let getCanvasContext = (idName, doback) => {
33
+ const query = wx.createSelectorQuery().in(this);
34
+ query.select('#' + idName)
35
+ .fields({ node: true, size: true })
36
+ .exec((res) => {
37
+ const canvas = res[0].node;
38
+ const ctx = canvas.getContext('2d');
39
+
40
+ canvas.width = res[0].width * (idName == "region" ? 1 : dpr);
41
+ canvas.height = res[0].height * (idName == "region" ? 1 : dpr);
42
+
43
+ if (idName != "region") {
44
+ ctx.scale(dpr, dpr);
45
+ }
46
+
47
+ doback(ctx);
48
+ });
49
+ };
50
+
51
+ getCanvasContext("painter", painter => {
52
+ getCanvasContext("region", region => {
53
+ this.data.help.instance = new OralCanvas({
54
+ getContext() {
55
+ return painter;
56
+ }
57
+ }, {
58
+ getContext() {
59
+ return region;
60
+ }
61
+ });
62
+
63
+ this.data.help.instance.toDataURL = () => {
64
+ return new Promise((resolveUrl) => {
65
+ wx.canvasToTempFilePath({
66
+ canvasId: "painter",
67
+ success: function (e) {
68
+ resolveUrl(e.tempFilePath);
69
+ },
70
+ }, this);
71
+ })
72
+ };
73
+ resolve(this.data.help.instance);
74
+ });
75
+ });
76
+
77
+ });
78
+ },
79
+ doit(event, doback) {
80
+ let x = event.touches[0].x;
81
+ let y = event.touches[0].y;
82
+
83
+ this.data.help.instance.getRegion(x, y).then((regionName) => {
84
+ // 兼容旧语法
85
+ if (doback) doback(regionName);
86
+
87
+ this.triggerEvent('dotouchstart', {
88
+ name: regionName,
89
+ x: x,
90
+ y: y
91
+ })
92
+ });
93
+ },
94
+ doitstart(event) {
95
+ this.doit(event, this.data.touchstart);
96
+ }
97
+ }
98
+
99
+ });
@@ -1,4 +1,4 @@
1
- {
2
- "usingComponents": {},
3
- "component": true
4
- }
1
+ {
2
+ "usingComponents": {},
3
+ "component": true
4
+ }
@@ -1,4 +1,4 @@
1
- <view>
2
- <canvas type="2d" id="painter" style='width:{{width}}px;height:{{height}}px;' bindtouchstart="doitstart"></canvas>
3
- <canvas type="2d" id="region" style='width:{{width}}px;height:{{height}}px;' class="region"></canvas>
4
- </view>
1
+ <view>
2
+ <canvas type="2d" id="painter" style='width:{{width}}px;height:{{height}}px;' bindtouchstart="doitstart"></canvas>
3
+ <canvas type="2d" id="region" style='width:{{width}}px;height:{{height}}px;' class="region"></canvas>
4
+ </view>
@@ -1,5 +1,5 @@
1
- /* 辅助的区域不应该可以看见 */
2
- .region {
3
- position: fixed;
4
- left: 50000px;
5
- }
1
+ /* 辅助的区域不应该可以看见 */
2
+ .region {
3
+ position: fixed;
4
+ left: 50000px;
5
+ }
@@ -0,0 +1,2 @@
1
+ import Buffer from '../../src/common/webgl/buffer'
2
+ export default Buffer
@@ -1,2 +1,2 @@
1
- import Canvas from "../../src/Canvas"
1
+ import Canvas from "../../src/Canvas"
2
2
  export default Canvas
@@ -1,3 +1,3 @@
1
- import Cardinal from "../../src/interpolation/Cardinal"
2
-
1
+ import Cardinal from "../../src/interpolation/Cardinal"
2
+
3
3
  export default Cardinal
@@ -1,3 +1,3 @@
1
- import Eoap from "../../src/Eoap"
2
-
1
+ import Eoap from "../../src/Eoap"
2
+
3
3
  export default Eoap
@@ -1,3 +1,3 @@
1
- import Hermite from "../../src/interpolation/Hermite"
2
-
1
+ import Hermite from "../../src/interpolation/Hermite"
2
+
3
3
  export default Hermite
@@ -1,3 +1,3 @@
1
- import Matrix4 from "../../src/Matrix4/index"
2
-
1
+ import Matrix4 from "../../src/Matrix4/index"
2
+
3
3
  export default Matrix4
@@ -1,3 +1,3 @@
1
- import Mercator from "../../src/Mercator"
2
-
1
+ import Mercator from "../../src/Mercator"
2
+
3
3
  export default Mercator
@@ -1,2 +1,2 @@
1
- import _Canvas from "../../src/common/canvas/index"
1
+ import _Canvas from "../../src/common/canvas/index"
2
2
  export default _Canvas
@@ -1,2 +1,2 @@
1
- import _WebGL from "../../src/common/webgl/index"
1
+ import _WebGL from "../../src/common/webgl/index"
2
2
  export default _WebGL
@@ -1,3 +1,3 @@
1
- import SVG from "../../src/SVG"
2
-
1
+ import SVG from "../../src/SVG"
2
+
3
3
  export default SVG
@@ -0,0 +1,2 @@
1
+ import Shader from '../../src/common/webgl/shader'
2
+ export default Shader
@@ -0,0 +1,2 @@
1
+ import Texture from '../../src/common/webgl/texture'
2
+ export default Texture
@@ -1,2 +1,2 @@
1
- import WebGL from "../../src/WebGL"
1
+ import WebGL from "../../src/WebGL"
2
2
  export default WebGL
@@ -1,3 +1,3 @@
1
- import animation from "../../src/animation"
2
-
1
+ import animation from "../../src/animation"
2
+
3
3
  export default animation
@@ -1,3 +1,3 @@
1
- import getLoopColors from "../../src/getLoopColors"
2
-
1
+ import getLoopColors from "../../src/getLoopColors"
2
+
3
3
  export default getLoopColors
@@ -0,0 +1,40 @@
1
+ import getWebGLContext from "../../src/common/webgl/getWebGLContext"
2
+
3
+ export default (el: HTMLElement | null, scale: number = 1) => {
4
+ if (!el) {
5
+ throw new Error("VISLite getWebGLContext:The mount point requires an HTMLElement type but encountered null.")
6
+ }
7
+
8
+ let width = el.clientWidth, height = el.clientHeight
9
+
10
+ let ViewCanvas: HTMLCanvasElement
11
+
12
+ let _el = el as any
13
+
14
+ // 如果已经初始化过了
15
+ if (_el._vislite_canvas_) {
16
+ ViewCanvas = _el._vislite_canvas_
17
+ }
18
+
19
+ // 否则就初始化
20
+ else {
21
+
22
+ ViewCanvas = document.createElement('canvas')
23
+ el.appendChild(ViewCanvas)
24
+
25
+ _el._vislite_canvas_ = ViewCanvas
26
+
27
+ el.setAttribute('vislite', 'WebGL')
28
+
29
+ }
30
+
31
+ // 设置画布大小
32
+
33
+ ViewCanvas.style.width = width + "px"
34
+ ViewCanvas.setAttribute('width', width + "")
35
+
36
+ ViewCanvas.style.height = height + "px"
37
+ ViewCanvas.setAttribute('height', height + "")
38
+
39
+ return getWebGLContext(ViewCanvas, scale)
40
+ }
package/package/index.ts CHANGED
@@ -1,46 +1,57 @@
1
- import Cardinal from "./Cardinal/index"
2
- import Hermite from "./Hermite/index"
3
-
4
- import Matrix4 from "./Matrix4/index"
5
- import rotate from "./rotate/index"
6
-
7
- import getLoopColors from "./getLoopColors/index"
8
- import animation from "./animation/index"
9
- import ruler from "./ruler/index"
10
-
11
- import SVG from "./SVG/index"
12
- import Canvas from "./Canvas/index"
13
- import WebGL from "./WebGL/index"
14
-
15
- import Eoap from "./Eoap/index"
16
- import Mercator from "./Mercator/index"
17
-
18
- import viewHandler from "./viewHandler/index"
19
-
20
- export default {
21
-
22
- // 插值
23
- Cardinal,
24
- Hermite,
25
-
26
- // 变换
27
- Matrix4,
28
- rotate,
29
-
30
- // 工具
31
- getLoopColors,
32
- animation,
33
- ruler,
34
-
35
- // 画笔
36
- SVG,
37
- Canvas,
38
- WebGL,
39
-
40
- // 投影
41
- Eoap,
42
- Mercator,
43
-
44
- // 辅助
45
- viewHandler
1
+ import Cardinal from "./Cardinal/index"
2
+ import Hermite from "./Hermite/index"
3
+
4
+ import Matrix4 from "./Matrix4/index"
5
+ import rotate from "./rotate/index"
6
+
7
+ import getLoopColors from "./getLoopColors/index"
8
+ import animation from "./animation/index"
9
+ import ruler from "./ruler/index"
10
+
11
+ import SVG from "./SVG/index"
12
+ import Canvas from "./Canvas/index"
13
+ import WebGL from "./WebGL/index"
14
+
15
+ import getWebGLContext from "./getWebGLContext/index"
16
+ import Shader from "./Shader/index"
17
+ import Texture from "./Texture/index"
18
+ import Buffer from "./Buffer/index"
19
+
20
+ import Eoap from "./Eoap/index"
21
+ import Mercator from "./Mercator/index"
22
+
23
+ import viewHandler from "./viewHandler/index"
24
+
25
+ export default {
26
+
27
+ // 插值
28
+ Cardinal,
29
+ Hermite,
30
+
31
+ // 变换
32
+ Matrix4,
33
+ rotate,
34
+
35
+ // 工具
36
+ getLoopColors,
37
+ animation,
38
+ ruler,
39
+
40
+ // 画笔
41
+ SVG,
42
+ Canvas,
43
+ WebGL,
44
+
45
+ // WebGL
46
+ getWebGLContext,
47
+ Shader,
48
+ Texture,
49
+ Buffer,
50
+
51
+ // 投影
52
+ Eoap,
53
+ Mercator,
54
+
55
+ // 辅助
56
+ viewHandler
46
57
  }
@@ -1,3 +1,3 @@
1
- import rotate from "../../src/rotate"
2
-
1
+ import rotate from "../../src/rotate"
2
+
3
3
  export default rotate
@@ -1,3 +1,3 @@
1
- import ruler from "../../src/ruler"
2
-
1
+ import ruler from "../../src/ruler"
2
+
3
3
  export default ruler
@@ -1,3 +1,3 @@
1
- import viewHandler from "../../src/viewHandler"
2
-
1
+ import viewHandler from "../../src/viewHandler"
2
+
3
3
  export default viewHandler
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vislite",
3
- "version": "0.3.0-alpha.1",
3
+ "version": "0.3.1",
4
4
  "description": "灵活、快速、简单的数据可视化交互式跨端前端库",
5
5
  "main": "./lib/index.umd.min.js",
6
6
  "typings": "./types/index.d.ts",
@@ -41,7 +41,7 @@
41
41
  "devDependencies": {
42
42
  "@rollup/plugin-typescript": "^11.1.0",
43
43
  "@types/jasmine": "^4.3.1",
44
- "devby": "^0.3.1",
44
+ "devby": "^0.4.0",
45
45
  "karma": "^6.3.10",
46
46
  "karma-chrome-launcher": "^3.1.0",
47
47
  "karma-jasmine": "^4.0.1",