diff options
Diffstat (limited to 'o3d/samples')
-rw-r--r-- | o3d/samples/manipulators/manipsample.js | 2 | ||||
-rw-r--r-- | o3d/samples/primitives.html | 2 | ||||
-rw-r--r-- | o3d/samples/vertex-shader.html | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/o3d/samples/manipulators/manipsample.js b/o3d/samples/manipulators/manipsample.js index c788006..a63cf8c 100644 --- a/o3d/samples/manipulators/manipsample.js +++ b/o3d/samples/manipulators/manipsample.js @@ -86,7 +86,7 @@ function main(clientElements) { // Init global variables. initGlobals(clientElements); - // Add the shapes to the transform heirarchy. + // Add the shapes to the transform hierarchy. createShapes(); // Add the manipulators to the transform hierarchy. diff --git a/o3d/samples/primitives.html b/o3d/samples/primitives.html index 27763d1..6c2021e 100644 --- a/o3d/samples/primitives.html +++ b/o3d/samples/primitives.html @@ -84,7 +84,7 @@ function main(clientElements) { // Set up the view and projection transformations. initContext(); - // Add the shapes to the transform heirarchy. + // Add the shapes to the transform hierarchy. createShapes(); window.g_finished = true; // for selenium testing. diff --git a/o3d/samples/vertex-shader.html b/o3d/samples/vertex-shader.html index 8443374..f3f4602 100644 --- a/o3d/samples/vertex-shader.html +++ b/o3d/samples/vertex-shader.html @@ -91,7 +91,7 @@ function initStep2(clientElements) { // Set up the view and projection transformations. initContext(); - // Add the shapes to the transform heirarchy. + // Add the shapes to the transform hierarchy. createPlane(); // Setup render callback. @@ -192,7 +192,7 @@ function createPlane() { var plane = o3djs.primitives.createPlane( g_pack, createMaterial(), 4, 4, 300, 300); - // Add the shape to the transform heirarchy. + // Add the shape to the transform hierarchy. g_client.root.addShape(plane); } |