Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
racarone committed Jan 26, 2016
1 parent 2d448c3 commit 9361df4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions sparrow/src/Classes/SPStage.m
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,10 @@ - (void)dealloc

- (SPPoint3D *)cameraPositionInSpace:(SPDisplayObject *)targetSpace
{
return [[self transformationMatrix3DToSpace:targetSpace] transformPoint3DWithX:_width / 2.0f + _projectionOffset.x
y:_height / 2.0f + _projectionOffset.y
z:-self.focalLength];
return [[self transformationMatrix3DToSpace:targetSpace]
transformPoint3DWithX:_width / 2.0f + _projectionOffset.x
y:_height / 2.0f + _projectionOffset.y
z:-self.focalLength];
}

- (UIImage *)drawToImage
Expand Down

0 comments on commit 9361df4

Please sign in to comment.