C# Class TerrainPainter.Point

Afficher le fichier Open project: Stumpstump/RoverGame

Méthodes publiques

Свойство Type Description
x int

Méthodes publiques

Méthode Description
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

Method Details

Equals() public méthode

public Equals ( object obj ) : bool
obj object
Résultat bool

GetHashCode() public méthode

public GetHashCode ( ) : int
Résultat int

Max() public static méthode

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
Résultat Point

Min() public static méthode

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
Résultat Point

Point() public méthode

Constructor
public Point ( int x, int y ) : System
x int
y int
Résultat System

Set() public méthode

Constructor
public Set ( int x, int y ) : void
x int
y int
Résultat void

Swap() public méthode

public Swap ( ) : Point
Résultat Point

ToString() public méthode

Converts to readable string
public ToString ( ) : string
Résultat string

operator() public static méthode

public static operator ( ) : Point
Résultat Point

operator() public static méthode

public static operator ( ) : bool
Résultat bool

Property Details

x public_oe property

public int x
Résultat int