You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by sh...@apache.org on 2020/11/10 16:54:28 UTC

[incubator-echarts-examples] branch next updated: Update simplex lib

This is an automated email from the ASF dual-hosted git repository.

shenyi pushed a commit to branch next
in repository https://gitbox.apache.org/repos/asf/incubator-echarts-examples.git


The following commit(s) were added to refs/heads/next by this push:
     new de86a93  Update simplex lib
de86a93 is described below

commit de86a93765c51fed295a9f20bd24d16c6fff4afe
Author: pissang <bm...@gmail.com>
AuthorDate: Wed Nov 11 00:46:03 2020 +0800

    Update simplex lib
---
 public/data-gl/bar3d-noise-modified-from-marpi-demo.js | 2 +-
 public/data-gl/bar3d-simplex-noise.js                  | 2 +-
 public/data-gl/flowGL-noise.js                         | 2 +-
 public/data-gl/metal-bar3d.js                          | 2 +-
 public/data-gl/scatter3d-orthographic.js               | 2 +-
 public/data-gl/scatter3d-simplex-noise.js              | 2 +-
 public/data-gl/stacked-bar3d.js                        | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/public/data-gl/bar3d-noise-modified-from-marpi-demo.js b/public/data-gl/bar3d-noise-modified-from-marpi-demo.js
index a9b8dd6..3ba36d7 100644
--- a/public/data-gl/bar3d-noise-modified-from-marpi-demo.js
+++ b/public/data-gl/bar3d-noise-modified-from-marpi-demo.js
@@ -4,7 +4,7 @@ category: bar3D
 titleCN: Noise modified from marpi's demo
 */
 
-$.getScript(ROOT_PATH + '/vendors/simplex.js').done(function () {
+$.getScript('https://cdn.jsdelivr.net/npm/simplex-noise@2.4.0/simplex-noise.js').done(function () {
 
 
 var simplex = new SimplexNoise();
diff --git a/public/data-gl/bar3d-simplex-noise.js b/public/data-gl/bar3d-simplex-noise.js
index ff5b793..2c32c9f 100644
--- a/public/data-gl/bar3d-simplex-noise.js
+++ b/public/data-gl/bar3d-simplex-noise.js
@@ -5,7 +5,7 @@ titleCN: Bar3D - Simplex Noise
 theme: dark
 */
 
-$.getScript(ROOT_PATH + '/vendors/simplex.js').done(function () {
+$.getScript('https://cdn.jsdelivr.net/npm/simplex-noise@2.4.0/simplex-noise.js').done(function () {
 
 
 var noise = new SimplexNoise(Math.random);
diff --git a/public/data-gl/flowGL-noise.js b/public/data-gl/flowGL-noise.js
index e7f2284..5c9cc68 100644
--- a/public/data-gl/flowGL-noise.js
+++ b/public/data-gl/flowGL-noise.js
@@ -5,7 +5,7 @@ titleCN: 直角坐标系上的向量场
 theme: dark
 */
 
-$.getScript(ROOT_PATH + '/vendors/simplex.js').done(function () {
+$.getScript('https://cdn.jsdelivr.net/npm/simplex-noise@2.4.0/simplex-noise.js').done(function () {
 
 var noise = new SimplexNoise(Math.random);
 var noise2 = new SimplexNoise(Math.random);
diff --git a/public/data-gl/metal-bar3d.js b/public/data-gl/metal-bar3d.js
index 7bb86cf..0d2c83e 100644
--- a/public/data-gl/metal-bar3d.js
+++ b/public/data-gl/metal-bar3d.js
@@ -4,7 +4,7 @@ category: bar3D
 titleCN: Metal Bar3D
 */
 
-$.getScript(ROOT_PATH + '/vendors/simplex.js').done(function () {
+$.getScript('https://cdn.jsdelivr.net/npm/simplex-noise@2.4.0/simplex-noise.js').done(function () {
 
 
 var noise = new SimplexNoise(Math.random);
diff --git a/public/data-gl/scatter3d-orthographic.js b/public/data-gl/scatter3d-orthographic.js
index 3065455..d2ab3a8 100644
--- a/public/data-gl/scatter3d-orthographic.js
+++ b/public/data-gl/scatter3d-orthographic.js
@@ -5,7 +5,7 @@ theme: dark
 titleCN: 三维散点图正交投影
 */
 
-$.getScript(ROOT_PATH + '/vendors/simplex.js').done(function () {
+$.getScript('https://cdn.jsdelivr.net/npm/simplex-noise@2.4.0/simplex-noise.js').done(function () {
 
 
 var noise = new SimplexNoise(Math.random);
diff --git a/public/data-gl/scatter3d-simplex-noise.js b/public/data-gl/scatter3d-simplex-noise.js
index 8bbf26b..4421234 100644
--- a/public/data-gl/scatter3d-simplex-noise.js
+++ b/public/data-gl/scatter3d-simplex-noise.js
@@ -5,7 +5,7 @@ theme: dark
 titleCN: Scatter3D - Simplex Noise
 */
 
-$.getScript(ROOT_PATH + '/vendors/simplex.js').done(function () {
+$.getScript('https://cdn.jsdelivr.net/npm/simplex-noise@2.4.0/simplex-noise.js').done(function () {
 
 
 var noise = new SimplexNoise(Math.random);
diff --git a/public/data-gl/stacked-bar3d.js b/public/data-gl/stacked-bar3d.js
index 3e48278..450c47a 100644
--- a/public/data-gl/stacked-bar3d.js
+++ b/public/data-gl/stacked-bar3d.js
@@ -4,7 +4,7 @@ category: bar3D
 titleCN: Stacked Bar3D
 */
 
-$.getScript(ROOT_PATH + '/vendors/simplex.js').done(function () {
+$.getScript('https://cdn.jsdelivr.net/npm/simplex-noise@2.4.0/simplex-noise.js').done(function () {
 
 
 function generateData() {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org