C# 클래스 Imgix_Dotnet.Point

Represents a point in a coordinat system
파일 보기 프로젝트 열기: estei/Imgix-Dotnet

공개 메소드들

메소드 설명
Point ( int x, int y )

Initializes a new point with an x and y position

SetX ( int x ) : Point

Creates a new point with the same Y position and the supplied X position

SetY ( int y ) : Point

Creates a new point with the same X position and the supplied y position

메소드 상세

Point() 공개 메소드

Initializes a new point with an x and y position
public Point ( int x, int y )
x int
y int

SetX() 공개 메소드

Creates a new point with the same Y position and the supplied X position
public SetX ( int x ) : Point
x int The X of the new point
리턴 Point

SetY() 공개 메소드

Creates a new point with the same X position and the supplied y position
public SetY ( int y ) : Point
y int The Y of the new point
리턴 Point