vislite 1.2.0-beta.0 → 1.2.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.
- package/AUTHORS.txt +6 -6
- package/CHANGELOG +1 -1
- package/LICENSE +20 -20
- package/lib/Buffer/index.es.js +1 -1
- package/lib/Buffer/index.es.min.js +1 -1
- package/lib/Canvas/index.es.js +1 -1
- package/lib/Canvas/index.es.min.js +1 -1
- package/lib/Cardinal/index.es.js +1 -1
- package/lib/Cardinal/index.es.min.js +1 -1
- package/lib/Eoap/index.es.js +1 -1
- package/lib/Eoap/index.es.min.js +1 -1
- package/lib/Hermite/index.es.js +1 -1
- package/lib/Hermite/index.es.min.js +1 -1
- package/lib/Matrix4/index.es.js +1 -1
- package/lib/Matrix4/index.es.min.js +1 -1
- package/lib/Mercator/index.es.js +1 -1
- package/lib/Mercator/index.es.min.js +1 -1
- package/lib/RawCanvas/index.es.js +1 -1
- package/lib/RawCanvas/index.es.min.js +1 -1
- package/lib/SVG/index.es.js +1 -1
- package/lib/SVG/index.es.min.js +1 -1
- package/lib/Shader/index.es.js +1 -1
- package/lib/Shader/index.es.min.js +1 -1
- package/lib/Texture/index.es.js +1 -1
- package/lib/Texture/index.es.min.js +1 -1
- package/lib/TreeLayout/index.es.js +1 -1
- package/lib/TreeLayout/index.es.min.js +1 -1
- package/lib/animation/index.es.js +1 -1
- package/lib/animation/index.es.min.js +1 -1
- package/lib/assemble/index.es.js +1 -1
- package/lib/assemble/index.es.min.js +1 -1
- package/lib/getLoopColors/index.es.js +1 -1
- package/lib/getLoopColors/index.es.min.js +1 -1
- package/lib/getWebGLContext/index.es.js +1 -1
- package/lib/getWebGLContext/index.es.min.js +1 -1
- package/lib/index.umd.js +1 -1
- package/lib/index.umd.min.js +1 -1
- package/lib/initOption/index.es.js +1 -1
- package/lib/initOption/index.es.min.js +1 -1
- package/lib/mergeOption/index.es.js +1 -1
- package/lib/mergeOption/index.es.min.js +1 -1
- package/lib/move/index.es.js +1 -1
- package/lib/move/index.es.min.js +1 -1
- package/lib/rotate/index.es.js +1 -1
- package/lib/rotate/index.es.min.js +1 -1
- package/lib/ruler/index.es.js +1 -1
- package/lib/ruler/index.es.min.js +1 -1
- package/lib/scale/index.es.js +1 -1
- package/lib/scale/index.es.min.js +1 -1
- package/lib/throttle/index.es.js +1 -1
- package/lib/throttle/index.es.min.js +1 -1
- package/miniprogram/ui-canvas/drawImage.js +35 -35
- 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/Hermite/index.ts +2 -2
- package/package/Matrix4/index.ts +2 -2
- package/package/Mercator/index.ts +2 -2
- package/package/RawCanvas/index.ts +2 -2
- package/package/SVG/index.ts +2 -2
- package/package/Shader/index.ts +2 -2
- package/package/Texture/index.ts +2 -2
- package/package/TreeLayout/index.ts +2 -2
- package/package/animation/index.ts +2 -2
- package/package/assemble/index.ts +2 -2
- package/package/getLoopColors/index.ts +2 -2
- package/package/getWebGLContext/index.ts +40 -40
- package/package/index.ts +75 -75
- package/package/initOption/index.ts +2 -2
- package/package/mergeOption/index.ts +2 -2
- package/package/move/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.json +78 -78
- package/src/Eoap.ts +66 -66
- package/src/Matrix4/index.ts +84 -84
- 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/common/assemble.ts +22 -22
- package/src/common/canvas/arc.ts +51 -51
- package/src/common/canvas/config.ts +158 -158
- package/src/common/canvas/texts.ts +18 -18
- package/src/common/option.ts +29 -29
- package/src/common/setStyle.ts +5 -5
- package/src/common/svg/gradient.ts +53 -53
- package/src/common/tree/index.ts +25 -25
- package/src/common/tree/toInnerTree.ts +59 -59
- package/src/common/tree/toPlainTree.ts +132 -132
- package/src/common/webgl/buffer.ts +79 -79
- package/src/common/webgl/getWebGLContext.ts +45 -45
- package/src/common/webgl/shader.ts +75 -75
- package/src/common/webgl/texture.ts +97 -97
- package/src/interpolation/Cardinal.ts +110 -110
- package/src/interpolation/Hermite.ts +65 -65
- package/src/layout/TreeLayout.ts +188 -188
- package/src/move.ts +7 -7
- package/src/rotate.ts +7 -7
- package/src/ruler.ts +209 -209
- package/src/scale.ts +6 -6
- package/types/Buffer.d.ts +23 -23
- package/types/CanvasOption.d.ts +8 -8
- package/types/CanvasOpts.d.ts +9 -9
- package/types/Cardinal.d.ts +13 -13
- 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 +47 -47
- package/types/SVG.d.ts +243 -243
- package/types/Shader.d.ts +16 -16
- package/types/Texture.d.ts +16 -16
- package/types/Tree.d.ts +69 -69
- package/types/TreeConfig.d.ts +36 -36
- package/types/TreeLayout.d.ts +54 -54
- package/types/TreeOption.d.ts +48 -48
- package/types/animation.d.ts +5 -5
- package/types/getWebGLContext.d.ts +7 -7
- package/types/move.d.ts +5 -5
- package/types/rotate.d.ts +5 -5
- package/types/ruler.d.ts +10 -10
- package/types/scale.d.ts +5 -5
- package/types/throttle.d.ts +5 -5
- package/types/ui-canvas.d.ts +4 -4
- package/uni-app/drawImage.js +19 -19
- package/uni-app/ui-canvas.vue +284 -284
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* mergeOption of VISLite JavaScript Library v1.2.0
|
|
2
|
+
* mergeOption of VISLite JavaScript Library v1.2.0
|
|
3
3
|
* git+https://github.com/oi-contrib/VISLite.git
|
|
4
4
|
*/
|
|
5
5
|
var t=Object.prototype.toString;function e(e){if(null===e||"object"!=typeof e||"[object Object]"!=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":t.call(e)}(e))return!1;if(null===Object.getPrototypeOf(e))return!0;for(var o=e;null!==Object.getPrototypeOf(o);)o=Object.getPrototypeOf(o);return Object.getPrototypeOf(e)===o}function o(t,o){!function t(o,r){for(var n in r){var c=r[n];e(c)?(o[n]||(o[n]={}),t(o[n],r[n])):o[n]=c}}(t,o)}export{o as default};
|
package/lib/move/index.es.js
CHANGED
package/lib/move/index.es.min.js
CHANGED
package/lib/rotate/index.es.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* rotate of VISLite JavaScript Library v1.2.0
|
|
2
|
+
* rotate of VISLite JavaScript Library v1.2.0
|
|
3
3
|
* git+https://github.com/oi-contrib/VISLite.git
|
|
4
4
|
*/
|
|
5
5
|
function t(t,a,n,r,e){var o=Math.cos(n),s=Math.sin(n);return[(r-t)*o-(e-a)*s+t,(r-t)*s+(e-a)*o+a]}export{t as default};
|
package/lib/ruler/index.es.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* ruler of VISLite JavaScript Library v1.2.0
|
|
2
|
+
* ruler of VISLite JavaScript Library v1.2.0
|
|
3
3
|
* git+https://github.com/oi-contrib/VISLite.git
|
|
4
4
|
*/
|
|
5
5
|
function n(n,r,t,e){if(n<r){var i=r;r=n,n=i}else if(n==r)return[n];var a=function(n){for(var r=n<100&&n>-100?10:.1,t=-1,e=n;10==r?e>=-100&&e<=100:e<=-100||e>=100;)t+=1,e*=r;if(10==r)return Math.pow(10,t);for(var i="0.",a=1;a<t;a++)i+="0";return+(i+"1")}(n-r),u=Math.ceil((n-r)*a/t),f=function(t){var e=({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}[u+t]||u+t)/a,i=Math.floor(r/e)*e,f=[];f.push(i);for(var l=1;f[f.length-1]<n;l++)f.push(i+e*l);return f},l=f(0),o=function(){for(var n=[],t=l[l.length-1]-(null==e?void 0:e.max),i=0;i<l.length;i++)i+1<l.length&&l[i+1]-t<r||n.push(l[i]-t);return n},h=function(){for(var r=[],t=l[0]-(null==e?void 0:e.min),i=0;i<l.length&&(r[i]=l[i]-t,!(n<=r[i]));i++);return r};if(e){if("max"in e&&"min"in e&&e.max>=n&&e.min<=r){var m=function(){if(l[0]>=e.min&&l[l.length-1]<=e.max)return!0;var n=o();if(n[0]>=e.min&&n[n.length-1]<=e.max)return l=n,!0;var r=h();return r[0]>=e.min&&r[n.length-1]<=e.max?(l=r,!0):void 0};if(m())return l;for(var v=1;v<100;v++){if(l=f(v),m())return l;if(l=f(-v),m())return l}}"max"in e&&e.max>=n?e.max<l[l.length-1]&&(l=o()):"min"in e&&e.min<=r&&e.min>l[0]&&(l=h())}for(var g=0;g<l.length;g++){var s=l[g]+"";/\./.test(s)&&(/9{7,}$/.test(s)?(s=s.replace(/9{7,}$/,""),l[g]=+(s.substring(0,s.length-1)+(+s[s.length-1]+1))):/0{7,}\d$/.test(s)&&(l[g]=+s.replace(/0{7,}\d$/,"")))}return l}export{n as default};
|
package/lib/scale/index.es.js
CHANGED
package/lib/throttle/index.es.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* throttle of VISLite JavaScript Library v1.2.0
|
|
2
|
+
* throttle of VISLite JavaScript Library v1.2.0
|
|
3
3
|
* git+https://github.com/oi-contrib/VISLite.git
|
|
4
4
|
*/
|
|
5
5
|
function t(t,e){var n={time:200,keep:!1,opportunity:"end"};if(e)for(var p in e)n[p]=e[p];var r,i=!1,o=!1,a=!1;return function(){const e=this;if(r=arguments,i)o=!0,a=!0;else{"end"!=n.opportunity&&t.apply(e,r),i=!0;var p=setInterval((()=>{o?n.keep||t.apply(e,r):("begin"!=n.opportunity&&(a||"end"==n.opportunity)&&t.apply(e,r),i=!1,a=!1,clearInterval(p)),o=!1}),n.time)}}}export{t as default};
|
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
export default function (_this, drawImage, canvas) {
|
|
2
|
-
return function (imgUrl, x, y, w, h) {
|
|
3
|
-
return new Promise((resolve) => {
|
|
4
|
-
|
|
5
|
-
let doit = (imgsrc) => {
|
|
6
|
-
if (canvas.createImage) {
|
|
7
|
-
let img = canvas.createImage();
|
|
8
|
-
img.onload = function () {
|
|
9
|
-
drawImage.call(_this, img, x, y, w, h, true).then(() => {
|
|
10
|
-
resolve({});
|
|
11
|
-
});
|
|
12
|
-
};
|
|
13
|
-
img.src = imgsrc;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
// 低版本兼容
|
|
17
|
-
else {
|
|
18
|
-
drawImage.call(_this, imgsrc, x, y, w, h, true).then(() => {
|
|
19
|
-
resolve({});
|
|
20
|
-
});
|
|
21
|
-
}
|
|
22
|
-
};
|
|
23
|
-
|
|
24
|
-
if (/^http/.test(imgUrl)) {
|
|
25
|
-
wx.downloadFile({
|
|
26
|
-
url: imgUrl,
|
|
27
|
-
success: function (res) {
|
|
28
|
-
doit(res.tempFilePath);
|
|
29
|
-
},
|
|
30
|
-
})
|
|
31
|
-
} else {
|
|
32
|
-
doit(imgUrl);
|
|
33
|
-
}
|
|
34
|
-
});
|
|
35
|
-
};
|
|
1
|
+
export default function (_this, drawImage, canvas) {
|
|
2
|
+
return function (imgUrl, x, y, w, h) {
|
|
3
|
+
return new Promise((resolve) => {
|
|
4
|
+
|
|
5
|
+
let doit = (imgsrc) => {
|
|
6
|
+
if (canvas.createImage) {
|
|
7
|
+
let img = canvas.createImage();
|
|
8
|
+
img.onload = function () {
|
|
9
|
+
drawImage.call(_this, img, x, y, w, h, true).then(() => {
|
|
10
|
+
resolve({});
|
|
11
|
+
});
|
|
12
|
+
};
|
|
13
|
+
img.src = imgsrc;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
// 低版本兼容
|
|
17
|
+
else {
|
|
18
|
+
drawImage.call(_this, imgsrc, x, y, w, h, true).then(() => {
|
|
19
|
+
resolve({});
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
if (/^http/.test(imgUrl)) {
|
|
25
|
+
wx.downloadFile({
|
|
26
|
+
url: imgUrl,
|
|
27
|
+
success: function (res) {
|
|
28
|
+
doit(res.tempFilePath);
|
|
29
|
+
},
|
|
30
|
+
})
|
|
31
|
+
} else {
|
|
32
|
+
doit(imgUrl);
|
|
33
|
+
}
|
|
34
|
+
});
|
|
35
|
+
};
|
|
36
36
|
};
|
|
@@ -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 wx:if="{{region}}" 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 wx:if="{{region}}" 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
|
+
}
|
package/package/Buffer/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import Buffer from '../../src/common/webgl/buffer'
|
|
2
|
-
|
|
1
|
+
import Buffer from '../../src/common/webgl/buffer'
|
|
2
|
+
|
|
3
3
|
export default Buffer
|
package/package/Canvas/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import Canvas from "../../src/Canvas"
|
|
2
|
-
|
|
1
|
+
import Canvas from "../../src/Canvas"
|
|
2
|
+
|
|
3
3
|
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
|
package/package/Eoap/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import Eoap from "../../src/Eoap"
|
|
2
|
-
|
|
1
|
+
import Eoap from "../../src/Eoap"
|
|
2
|
+
|
|
3
3
|
export default Eoap
|
package/package/Hermite/index.ts
CHANGED
|
@@ -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
|
package/package/Matrix4/index.ts
CHANGED
|
@@ -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,3 +1,3 @@
|
|
|
1
|
-
import RawCanvas from "../../src/common/canvas/index"
|
|
2
|
-
|
|
1
|
+
import RawCanvas from "../../src/common/canvas/index"
|
|
2
|
+
|
|
3
3
|
export default RawCanvas
|
package/package/SVG/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import SVG from "../../src/SVG"
|
|
2
|
-
|
|
1
|
+
import SVG from "../../src/SVG"
|
|
2
|
+
|
|
3
3
|
export default SVG
|
package/package/Shader/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import Shader from '../../src/common/webgl/shader'
|
|
2
|
-
|
|
1
|
+
import Shader from '../../src/common/webgl/shader'
|
|
2
|
+
|
|
3
3
|
export default Shader
|
package/package/Texture/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import Texture from '../../src/common/webgl/texture'
|
|
2
|
-
|
|
1
|
+
import Texture from '../../src/common/webgl/texture'
|
|
2
|
+
|
|
3
3
|
export default Texture
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import TreeLayout from "../../src/layout/TreeLayout"
|
|
2
|
-
|
|
1
|
+
import TreeLayout from "../../src/layout/TreeLayout"
|
|
2
|
+
|
|
3
3
|
export default TreeLayout
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { animation } from "@oipage/core.js/src/animation/index"
|
|
2
|
-
|
|
1
|
+
import { animation } from "@oipage/core.js/src/animation/index"
|
|
2
|
+
|
|
3
3
|
export default animation
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import assemble from "../../src/common/assemble"
|
|
2
|
-
|
|
1
|
+
import assemble from "../../src/common/assemble"
|
|
2
|
+
|
|
3
3
|
export default assemble
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import getLoopColors from "../../src/getLoopColors"
|
|
2
|
-
|
|
1
|
+
import getLoopColors from "../../src/getLoopColors"
|
|
2
|
+
|
|
3
3
|
export default getLoopColors
|
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
import getWebGLContext from "../../src/common/webgl/getWebGLContext"
|
|
2
|
-
import type { WebGLmodeType } from "../../types/getWebGLContext"
|
|
3
|
-
|
|
4
|
-
export default (el: HTMLElement | null, scale: number = 1, mode?: WebGLmodeType) => {
|
|
5
|
-
if (!el) {
|
|
6
|
-
throw new Error("VISLite getWebGLContext:The mount point requires an HTMLElement type but encountered null.")
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
let width = el.clientWidth, height = el.clientHeight
|
|
10
|
-
|
|
11
|
-
let ViewCanvas: HTMLCanvasElement
|
|
12
|
-
|
|
13
|
-
let _el = el as any
|
|
14
|
-
|
|
15
|
-
// 如果已经初始化过了
|
|
16
|
-
if (_el._vislite_canvas_) {
|
|
17
|
-
ViewCanvas = _el._vislite_canvas_
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
// 否则就初始化
|
|
21
|
-
else {
|
|
22
|
-
|
|
23
|
-
ViewCanvas = document.createElement('canvas')
|
|
24
|
-
el.appendChild(ViewCanvas)
|
|
25
|
-
|
|
26
|
-
_el._vislite_canvas_ = ViewCanvas
|
|
27
|
-
|
|
28
|
-
el.setAttribute('vislite', 'WebGL')
|
|
29
|
-
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
// 设置画布大小
|
|
33
|
-
|
|
34
|
-
ViewCanvas.style.width = width + "px"
|
|
35
|
-
ViewCanvas.setAttribute('width', width + "")
|
|
36
|
-
|
|
37
|
-
ViewCanvas.style.height = height + "px"
|
|
38
|
-
ViewCanvas.setAttribute('height', height + "")
|
|
39
|
-
|
|
40
|
-
return getWebGLContext(ViewCanvas, scale, {}, mode)
|
|
1
|
+
import getWebGLContext from "../../src/common/webgl/getWebGLContext"
|
|
2
|
+
import type { WebGLmodeType } from "../../types/getWebGLContext"
|
|
3
|
+
|
|
4
|
+
export default (el: HTMLElement | null, scale: number = 1, mode?: WebGLmodeType) => {
|
|
5
|
+
if (!el) {
|
|
6
|
+
throw new Error("VISLite getWebGLContext:The mount point requires an HTMLElement type but encountered null.")
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
let width = el.clientWidth, height = el.clientHeight
|
|
10
|
+
|
|
11
|
+
let ViewCanvas: HTMLCanvasElement
|
|
12
|
+
|
|
13
|
+
let _el = el as any
|
|
14
|
+
|
|
15
|
+
// 如果已经初始化过了
|
|
16
|
+
if (_el._vislite_canvas_) {
|
|
17
|
+
ViewCanvas = _el._vislite_canvas_
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
// 否则就初始化
|
|
21
|
+
else {
|
|
22
|
+
|
|
23
|
+
ViewCanvas = document.createElement('canvas')
|
|
24
|
+
el.appendChild(ViewCanvas)
|
|
25
|
+
|
|
26
|
+
_el._vislite_canvas_ = ViewCanvas
|
|
27
|
+
|
|
28
|
+
el.setAttribute('vislite', 'WebGL')
|
|
29
|
+
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
// 设置画布大小
|
|
33
|
+
|
|
34
|
+
ViewCanvas.style.width = width + "px"
|
|
35
|
+
ViewCanvas.setAttribute('width', width + "")
|
|
36
|
+
|
|
37
|
+
ViewCanvas.style.height = height + "px"
|
|
38
|
+
ViewCanvas.setAttribute('height', height + "")
|
|
39
|
+
|
|
40
|
+
return getWebGLContext(ViewCanvas, scale, {}, mode)
|
|
41
41
|
}
|
package/package/index.ts
CHANGED
|
@@ -1,76 +1,76 @@
|
|
|
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
|
-
import move from "./move/index"
|
|
7
|
-
import scale from "./scale/index"
|
|
8
|
-
|
|
9
|
-
import getLoopColors from "./getLoopColors/index"
|
|
10
|
-
import animation from "./animation/index"
|
|
11
|
-
import ruler from "./ruler/index"
|
|
12
|
-
|
|
13
|
-
import SVG from "./SVG/index"
|
|
14
|
-
import Canvas from "./Canvas/index"
|
|
15
|
-
import RawCanvas from "../src/common/canvas/index"
|
|
16
|
-
|
|
17
|
-
import getWebGLContext from "./getWebGLContext/index"
|
|
18
|
-
import Shader from "./Shader/index"
|
|
19
|
-
import Texture from "./Texture/index"
|
|
20
|
-
import Buffer from "./Buffer/index"
|
|
21
|
-
|
|
22
|
-
import Eoap from "./Eoap/index"
|
|
23
|
-
import Mercator from "./Mercator/index"
|
|
24
|
-
|
|
25
|
-
import throttle from "./throttle/index"
|
|
26
|
-
|
|
27
|
-
import TreeLayout from "./TreeLayout/index"
|
|
28
|
-
|
|
29
|
-
import initOption from "./initOption/index"
|
|
30
|
-
import mergeOption from "./mergeOption/index"
|
|
31
|
-
|
|
32
|
-
import assemble from "./assemble/index"
|
|
33
|
-
|
|
34
|
-
export default {
|
|
35
|
-
|
|
36
|
-
// 插值
|
|
37
|
-
Cardinal,
|
|
38
|
-
Hermite,
|
|
39
|
-
|
|
40
|
-
// 变换
|
|
41
|
-
Matrix4,
|
|
42
|
-
rotate,
|
|
43
|
-
move,
|
|
44
|
-
scale,
|
|
45
|
-
|
|
46
|
-
// 工具
|
|
47
|
-
getLoopColors,
|
|
48
|
-
animation,
|
|
49
|
-
ruler,
|
|
50
|
-
|
|
51
|
-
// 画笔
|
|
52
|
-
SVG,
|
|
53
|
-
Canvas,
|
|
54
|
-
RawCanvas,
|
|
55
|
-
|
|
56
|
-
// WebGL
|
|
57
|
-
getWebGLContext,
|
|
58
|
-
Shader,
|
|
59
|
-
Texture,
|
|
60
|
-
Buffer,
|
|
61
|
-
|
|
62
|
-
// 投影
|
|
63
|
-
Eoap,
|
|
64
|
-
Mercator,
|
|
65
|
-
|
|
66
|
-
// 辅助
|
|
67
|
-
throttle,
|
|
68
|
-
assemble,
|
|
69
|
-
|
|
70
|
-
// 布局
|
|
71
|
-
TreeLayout,
|
|
72
|
-
|
|
73
|
-
// 配置项
|
|
74
|
-
initOption,
|
|
75
|
-
mergeOption
|
|
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
|
+
import move from "./move/index"
|
|
7
|
+
import scale from "./scale/index"
|
|
8
|
+
|
|
9
|
+
import getLoopColors from "./getLoopColors/index"
|
|
10
|
+
import animation from "./animation/index"
|
|
11
|
+
import ruler from "./ruler/index"
|
|
12
|
+
|
|
13
|
+
import SVG from "./SVG/index"
|
|
14
|
+
import Canvas from "./Canvas/index"
|
|
15
|
+
import RawCanvas from "../src/common/canvas/index"
|
|
16
|
+
|
|
17
|
+
import getWebGLContext from "./getWebGLContext/index"
|
|
18
|
+
import Shader from "./Shader/index"
|
|
19
|
+
import Texture from "./Texture/index"
|
|
20
|
+
import Buffer from "./Buffer/index"
|
|
21
|
+
|
|
22
|
+
import Eoap from "./Eoap/index"
|
|
23
|
+
import Mercator from "./Mercator/index"
|
|
24
|
+
|
|
25
|
+
import throttle from "./throttle/index"
|
|
26
|
+
|
|
27
|
+
import TreeLayout from "./TreeLayout/index"
|
|
28
|
+
|
|
29
|
+
import initOption from "./initOption/index"
|
|
30
|
+
import mergeOption from "./mergeOption/index"
|
|
31
|
+
|
|
32
|
+
import assemble from "./assemble/index"
|
|
33
|
+
|
|
34
|
+
export default {
|
|
35
|
+
|
|
36
|
+
// 插值
|
|
37
|
+
Cardinal,
|
|
38
|
+
Hermite,
|
|
39
|
+
|
|
40
|
+
// 变换
|
|
41
|
+
Matrix4,
|
|
42
|
+
rotate,
|
|
43
|
+
move,
|
|
44
|
+
scale,
|
|
45
|
+
|
|
46
|
+
// 工具
|
|
47
|
+
getLoopColors,
|
|
48
|
+
animation,
|
|
49
|
+
ruler,
|
|
50
|
+
|
|
51
|
+
// 画笔
|
|
52
|
+
SVG,
|
|
53
|
+
Canvas,
|
|
54
|
+
RawCanvas,
|
|
55
|
+
|
|
56
|
+
// WebGL
|
|
57
|
+
getWebGLContext,
|
|
58
|
+
Shader,
|
|
59
|
+
Texture,
|
|
60
|
+
Buffer,
|
|
61
|
+
|
|
62
|
+
// 投影
|
|
63
|
+
Eoap,
|
|
64
|
+
Mercator,
|
|
65
|
+
|
|
66
|
+
// 辅助
|
|
67
|
+
throttle,
|
|
68
|
+
assemble,
|
|
69
|
+
|
|
70
|
+
// 布局
|
|
71
|
+
TreeLayout,
|
|
72
|
+
|
|
73
|
+
// 配置项
|
|
74
|
+
initOption,
|
|
75
|
+
mergeOption
|
|
76
76
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { initOption } from "../../src/common/option"
|
|
2
|
-
|
|
1
|
+
import { initOption } from "../../src/common/option"
|
|
2
|
+
|
|
3
3
|
export default initOption
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { mergeOption } from "../../src/common/option"
|
|
2
|
-
|
|
1
|
+
import { mergeOption } from "../../src/common/option"
|
|
2
|
+
|
|
3
3
|
export default mergeOption
|
package/package/move/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import move from "../../src/move"
|
|
2
|
-
|
|
1
|
+
import move from "../../src/move"
|
|
2
|
+
|
|
3
3
|
export default move
|
package/package/rotate/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import rotate from "../../src/rotate"
|
|
2
|
-
|
|
1
|
+
import rotate from "../../src/rotate"
|
|
2
|
+
|
|
3
3
|
export default rotate
|
package/package/ruler/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import ruler from "../../src/ruler"
|
|
2
|
-
|
|
1
|
+
import ruler from "../../src/ruler"
|
|
2
|
+
|
|
3
3
|
export default ruler
|
package/package/scale/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import scale from "../../src/scale"
|
|
2
|
-
|
|
1
|
+
import scale from "../../src/scale"
|
|
2
|
+
|
|
3
3
|
export default scale
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { throttle } from "@oipage/core.js/src/throttle/index"
|
|
2
|
-
|
|
1
|
+
import { throttle } from "@oipage/core.js/src/throttle/index"
|
|
2
|
+
|
|
3
3
|
export default throttle
|