Obj-C Code Snippets
Commonly used objective-C codes that are useful.
Wednesday, March 16, 2016
Code Snippet: Distance Between 2-Points
- (
CGFloat
)distanceBetweenTwoPoints:(
CGPoint
)fromPoint toPoint:(
CGPoint
)toPoint{
float
x = toPoint.
x
- fromPoint.
x
;
float
y = toPoint.
y
- fromPoint.
y
;
return
sqrt
(x * x + y * y);
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment