Skip to content

Commit 7194c44

Browse files
committed
myThree\build
MyThree.release = 'v1.3'
1 parent eaaad02 commit 7194c44

9 files changed

Lines changed: 1525 additions & 897 deletions

File tree

HuperSphere/Examples/huperSphere.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
//import * as THREE from 'https://threejs.org/build/three.module.js';
3232
//import * as THREE from 'https://raw.githack.com/anhr/three.js/dev/build/three.module.js';
3333

34-
import MyThree from '../../myThree/myThree.js';
35-
//import MyThree from '../../myThree/build/myThree.module.js';
34+
//import MyThree from '../../myThree/myThree.js';
35+
import MyThree from '../../myThree/build/myThree.module.js';
3636
//import MyThree from '../../myThree/build/myThree.module.min.js';
3737
//import MyThree from 'https://raw.githack.com/anhr/commonNodeJS/master/myThree/myThree.js';
3838
//import MyThree from 'https://raw.githack.com/anhr/commonNodeJS/master/myThree/build/myThree.module.js';
@@ -41,7 +41,6 @@
4141

4242
import HuperSphere3D from '../huperSphere3D.js';
4343

44-
4544
new MyThree( (scene, options) => {
4645

4746
/*

myThree/build/getShaderMaterialPoints/vertex.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
attribute float size;
2-
attribute vec4 ca;
2+
//attribute vec4 ca;
3+
attribute vec4 color;
34
varying vec4 vColor;
45
//uniform vec3 pointsPosition;
56
uniform float pointSize;
@@ -10,7 +11,8 @@ void main() {
1011
//vec4 cloudPoint = texture2D( cloudPoints, vec2( 1, 0 ) );
1112
//vec4 cloudPoint = texture2D( pointTexture, pointCoord );
1213

13-
vColor = ca;
14+
// vColor = ca;
15+
vColor = color;
1416
//vColor = vec4( 1.0, 0.0, 1.0, 1.0 );
1517
//printf("GL Vendor : %s\n", "vendor");
1618

myThree/build/myThree.js

Lines changed: 736 additions & 431 deletions
Large diffs are not rendered by default.

myThree/build/myThree.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

myThree/build/myThree.min.js

Lines changed: 42 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

myThree/build/myThree.module.js

Lines changed: 736 additions & 431 deletions
Large diffs are not rendered by default.

myThree/build/myThree.module.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

myThree/build/myThree.module.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

myThree/myThree.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1039,6 +1039,8 @@ class MyThree {
10391039

10401040
}
10411041

1042+
MyThree.release = 'v1.3';
1043+
10421044
//Localization
10431045

10441046
const lang = {

0 commit comments

Comments
 (0)