Skip to content

Commit

Permalink
Adjust grammar.
Browse files Browse the repository at this point in the history
  • Loading branch information
learnopengles committed May 10, 2012
1 parent d369a54 commit 34356c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ class HeightMap {
for (int x = 0; x < xLength; x++) {
final float xRatio = x / (float) (xLength - 1);

// Build our heightmap from top down, so that our triangles are counter-clockwise.
// Build our heightmap from the top down, so that our triangles are counter-clockwise.
final float yRatio = 1f - (y / (float) (yLength - 1));

final float xPosition = MIN_POSITION + (xRatio * POSITION_RANGE);
Expand Down

0 comments on commit 34356c6

Please sign in to comment.