Skip to content

Commit

Permalink
corrected remaining transpose typos
Browse files Browse the repository at this point in the history
  • Loading branch information
andyfry01 committed Jul 13, 2016
1 parent c6ff7de commit 6b7579d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Documentation/Contributors/TestingGuide/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@ It is also possible for Karma to run all tests against each browser installed on
`npm run test-webgl`

#### Run Only Non-WebGL Tests with Karma

`npm run test-non-webgl`

#### Run All Tests Against the Minified Release Version of Cesium

`npm run test-release`
Expand Down Expand Up @@ -381,7 +381,7 @@ afterAll(function() {
context.destroyForSpecs();
});

it('has czm_tranpose (2x2)', function() {
it('has czm_transpose (2x2)', function() {
var fs =
'void main() { ' +
' mat2 m = mat2(1.0, 2.0, 3.0, 4.0); ' +
Expand Down
4 changes: 2 additions & 2 deletions Source/Shaders/Builtin/Functions/transpose.glsl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Returns the transpose of the matrix. The input <code>matrix</code> can be
* Returns the transpose of the matrix. The input <code>matrix</code> can be
* a <code>mat2</code>, <code>mat3</code>, or <code>mat4</code>.
*
* @name czm_transpose
Expand All @@ -15,7 +15,7 @@
* mat3 czm_transpose(mat3 matrix);
* mat4 czm_transpose(mat4 matrix);
*
* // Tranpose a 3x3 rotation matrix to find its inverse.
* // Transpose a 3x3 rotation matrix to find its inverse.
* mat3 eastNorthUpToEye = czm_eastNorthUpToEyeCoordinates(
* positionMC, normalEC);
* mat3 eyeToEastNorthUp = czm_transpose(eastNorthUpToEye);
Expand Down
6 changes: 3 additions & 3 deletions Specs/Renderer/BuiltinFunctionsSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ defineSuite([
context.destroyForSpecs();
});

it('has czm_tranpose (2x2)', function() {
it('has czm_transpose (2x2)', function() {
var fs =
'void main() { ' +
' mat2 m = mat2(1.0, 2.0, 3.0, 4.0); ' +
Expand All @@ -36,7 +36,7 @@ defineSuite([
context.verifyDrawForSpecs(fs);
});

it('has czm_tranpose (3x3)', function() {
it('has czm_transpose (3x3)', function() {
var fs =
'void main() { ' +
' mat3 m = mat3(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0); ' +
Expand All @@ -47,7 +47,7 @@ defineSuite([
context.verifyDrawForSpecs(fs);
});

it('has czm_tranpose (4x4)', function() {
it('has czm_transpose (4x4)', function() {
var fs =
'void main() { ' +
' mat4 m = mat4(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0);' +
Expand Down

0 comments on commit 6b7579d

Please sign in to comment.