Skip to content

Commit

Permalink
removed unnecessary E clamp carried over from Starling
Browse files Browse the repository at this point in the history
  • Loading branch information
racarone committed Apr 12, 2016
1 parent f502957 commit af7b638
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sparrow/src/Classes/SPSprite3D.m
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ - (void)updateMatrices
[_transformationMatrix3D identity];

if (scaleX != 1.0f || scaleY != 1.0f || _scaleZ != 1.0f)
[_transformationMatrix3D appendScaleX:scaleX ?: E y:scaleY ?: E z:_scaleZ ?: E];
[_transformationMatrix3D appendScaleX:scaleX y:scaleY z:_scaleZ];
if (_rotationX != 0.0f)
[_transformationMatrix3D appendRotation:_rotationX axis:[SPPoint3D xAxis]];
if (_rotationY != 0.0f)
Expand Down

0 comments on commit af7b638

Please sign in to comment.