Skip to content

Commit

Permalink
Using SphereBufferGeometry in some examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoob committed Aug 26, 2015
1 parent 402f7b1 commit d3a4e69
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/webgl_effects_anaglyph.html
Expand Up @@ -75,7 +75,7 @@

scene = new THREE.Scene();

var geometry = new THREE.SphereGeometry( 100, 32, 16 );
var geometry = new THREE.SphereBufferGeometry( 100, 32, 16 );

var path = "textures/cube/pisa/";
var format = '.png';
Expand Down
2 changes: 1 addition & 1 deletion examples/webgl_effects_stereo.html
Expand Up @@ -76,7 +76,7 @@

scene = new THREE.Scene();

var geometry = new THREE.SphereGeometry( 100, 32, 16 );
var geometry = new THREE.SphereBufferGeometry( 100, 32, 16 );

var path = "textures/cube/skybox/";
var format = '.jpg';
Expand Down
2 changes: 1 addition & 1 deletion examples/webgl_materials_cubemap_balls_reflection.html
Expand Up @@ -77,7 +77,7 @@
scene = new THREE.Scene();
sceneCube = new THREE.Scene();

var geometry = new THREE.SphereGeometry( 100, 32, 16 );
var geometry = new THREE.SphereBufferGeometry( 100, 32, 16 );

var path = "textures/cube/pisa/";
var format = '.png';
Expand Down
2 changes: 1 addition & 1 deletion examples/webgl_materials_cubemap_balls_refraction.html
Expand Up @@ -76,7 +76,7 @@
scene = new THREE.Scene();
sceneCube = new THREE.Scene();

var geometry = new THREE.SphereGeometry( 100, 32, 16 );
var geometry = new THREE.SphereBufferGeometry( 100, 32, 16 );

var path = "textures/cube/skybox/";
var format = '.jpg';
Expand Down

0 comments on commit d3a4e69

Please sign in to comment.