C# 클래스 Monobjc.ApplicationServices.CGPoint

파일 보기 프로젝트 열기: Monobjc/monobjc 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
CGPointZero CGPoint

공개 메소드들

메소드 설명
Add ( CGPoint cgPoint, CGSize cgSize ) : CGPoint

Translates the point by the specified size.

CGPointEqualToPoint ( CGPoint point1, CGPoint point2 ) : int

Indicates whether two points are equal.

Original declaration is : int CGPointEqualToPoint ( CGPoint point1, CGPoint point2 );

CGPointMake ( CGFloat x, CGFloat y ) : CGPoint

Returns a point structure constructed from coordinate values you provide.

Original declaration is : CGPoint CGPointMake ( float x, float y );

Substract ( CGPoint cgPoint, CGSize cgSize ) : CGPoint

Translates the point by the specified size.

Substract ( CGPoint cgPoint1, CGPoint cgPoint2 ) : CGSize

Computes the size between the two points. The values are always positives.

operator ( ) : CGPoint

Implements the operator +.

operator ( ) : CGSize

Implements the operator -.

메소드 상세

Add() 공개 정적인 메소드

Translates the point by the specified size.
public static Add ( CGPoint cgPoint, CGSize cgSize ) : CGPoint
cgPoint CGPoint A point.
cgSize CGSize A size.
리턴 CGPoint

CGPointEqualToPoint() 공개 정적인 메소드

Indicates whether two points are equal.
Original declaration is : int CGPointEqualToPoint ( CGPoint point1, CGPoint point2 );
public static CGPointEqualToPoint ( CGPoint point1, CGPoint point2 ) : int
point1 CGPoint The first point to examine.
point2 CGPoint The second point to examine.
리턴 int

CGPointMake() 공개 정적인 메소드

Returns a point structure constructed from coordinate values you provide.
Original declaration is : CGPoint CGPointMake ( float x, float y );
public static CGPointMake ( CGFloat x, CGFloat y ) : CGPoint
x CGFloat The x-coordinate of the point to construct.
y CGFloat The y-coordinate of the point to construct.
리턴 CGPoint

Substract() 공개 정적인 메소드

Translates the point by the specified size.
public static Substract ( CGPoint cgPoint, CGSize cgSize ) : CGPoint
cgPoint CGPoint A point.
cgSize CGSize A size.
리턴 CGPoint

Substract() 공개 정적인 메소드

Computes the size between the two points. The values are always positives.
public static Substract ( CGPoint cgPoint1, CGPoint cgPoint2 ) : CGSize
cgPoint1 CGPoint The point 1.
cgPoint2 CGPoint The point 2.
리턴 CGSize

operator() 공개 정적인 메소드

Implements the operator +.
public static operator ( ) : CGPoint
리턴 CGPoint

operator() 공개 정적인 메소드

Implements the operator -.
public static operator ( ) : CGSize
리턴 CGSize

프로퍼티 상세

CGPointZero 공개적으로 정적으로 프로퍼티

A CGRect with its x and y set to zero.
public static CGPoint,Monobjc.ApplicationServices CGPointZero
리턴 CGPoint