Skip to content

Commit

Permalink
Whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
bagnell committed Aug 17, 2018
1 parent 9112b62 commit d6c23ee
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Source/Core/CylinderGeometry.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ define([
array[startingIndex++] = value._length;
array[startingIndex++] = value._topRadius;
array[startingIndex++] = value._bottomRadius;
array[startingIndex++] = value._slices;
array[startingIndex++] = value._slices;
array[startingIndex] = defaultValue(value._offsetAttribute, -1);

return array;
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/CylinderOutlineGeometry.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ define([
array[startingIndex++] = value._topRadius;
array[startingIndex++] = value._bottomRadius;
array[startingIndex++] = value._slices;
array[startingIndex++] = value._numberOfVerticalLines;
array[startingIndex++] = value._numberOfVerticalLines;
array[startingIndex] = defaultValue(value._offsetAttribute, -1);

return array;
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/EllipsoidGeometry.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ define([
startingIndex += VertexFormat.packedLength;

array[startingIndex++] = value._stackPartitions;
array[startingIndex++] = value._slicePartitions;
array[startingIndex++] = value._slicePartitions;
array[startingIndex] = defaultValue(value._offsetAttribute, -1);

return array;
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/EllipsoidOutlineGeometry.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ define([

array[startingIndex++] = value._stackPartitions;
array[startingIndex++] = value._slicePartitions;
array[startingIndex++] = value._subdivisions;
array[startingIndex++] = value._subdivisions;
array[startingIndex] = defaultValue(value._offsetAttribute, -1);

return array;
Expand Down

0 comments on commit d6c23ee

Please sign in to comment.