func NSEqualPoints (NSPoint, NSPoint) -> Bool
Returns a Boolean value that indicates whether two points are equal.
2つの地点が等しいかどうかを指し示すブール値を返します。
func NSMakePoint (CGFloat, CGFloat) -> NSPoint
Creates a new
NSPoint
from the specified values.
新しいNSPoint
をこの指定された値から作成します。
func NSPointFromString (String) -> NSPoint
Returns a point from a text-based representation.
テキストに基づく表現から、ある点を返します。
func NSStringFromPoint (NSPoint) -> String
Returns a string representation of a point.
ある点の文字列表現を返します。
func NSPointFromCGPoint (CGPoint) -> NSPoint
Returns an
NSPoint
typecast from a CGPoint
.
CGPoint
から型キャストされたNSPoint
を返します。
func NSPointToCGPoint (NSPoint) -> CGPoint
Returns a
CGPoint
typecast from an NSPoint
.
NSPoint
から型キャストされた、CGPoint
を返します。