C# 클래스 TerrainPainter.Point

파일 보기 프로젝트 열기: Stumpstump/RoverGame

공개 프로퍼티들

프로퍼티 타입 설명
x int

공개 메소드들

메소드 설명
Equals ( object obj ) : bool

GetHashCode ( ) : int

Max ( Point a, Point b ) : Point

Get the max of both Example: a = (1, 6) b = (4, 5) return (4, 6)

Min ( Point a, Point b ) : Point

Get the min of both Example: a = (1, 6) b = (4, 5) return (1, 5)

Point ( int x, int y ) : System

Constructor

Set ( int x, int y ) : void

Constructor

Swap ( ) : Point
ToString ( ) : string

Converts to readable string

operator ( ) : Point
operator ( ) : bool

메소드 상세

Equals() 공개 메소드

public Equals ( object obj ) : bool
obj object
리턴 bool

GetHashCode() 공개 메소드

public GetHashCode ( ) : int
리턴 int

Max() 공개 정적인 메소드

Get the max of both Example: a = (1, 6) b = (4, 5) return (4, 6)
public static Max ( Point a, Point b ) : Point
a Point
b Point
리턴 Point

Min() 공개 정적인 메소드

Get the min of both Example: a = (1, 6) b = (4, 5) return (1, 5)
public static Min ( Point a, Point b ) : Point
a Point
b Point
리턴 Point

Point() 공개 메소드

Constructor
public Point ( int x, int y ) : System
x int
y int
리턴 System

Set() 공개 메소드

Constructor
public Set ( int x, int y ) : void
x int
y int
리턴 void

Swap() 공개 메소드

public Swap ( ) : Point
리턴 Point

ToString() 공개 메소드

Converts to readable string
public ToString ( ) : string
리턴 string

operator() 공개 정적인 메소드

public static operator ( ) : Point
리턴 Point

operator() 공개 정적인 메소드

public static operator ( ) : bool
리턴 bool

프로퍼티 상세

x 공개적으로 프로퍼티

public int x
리턴 int