C# Class Pathfinding.IntRect

Datei anzeigen Open project: austinshenk/Binary Class Usage Examples

Public Properties

Property Type Description
xmin int

Public Methods

Method Description
Contains ( int x, int y ) : bool
DebugDraw ( Matrix4x4 matrix, Color col ) : void
Expand ( int range ) : IntRect
IntRect ( int xmin, int ymin, int xmax, int ymax ) : System.Collections
Intersection ( IntRect a, IntRect b ) : IntRect
IsValid ( ) : bool
Union ( IntRect a, IntRect b ) : IntRect

Method Details

Contains() public method

public Contains ( int x, int y ) : bool
x int
y int
return bool

DebugDraw() public method

public DebugDraw ( Matrix4x4 matrix, Color col ) : void
matrix UnityEngine.Matrix4x4
col UnityEngine.Color
return void

Expand() public method

public Expand ( int range ) : IntRect
range int
return IntRect

IntRect() public method

public IntRect ( int xmin, int ymin, int xmax, int ymax ) : System.Collections
xmin int
ymin int
xmax int
ymax int
return System.Collections

Intersection() public static method

public static Intersection ( IntRect a, IntRect b ) : IntRect
a IntRect
b IntRect
return IntRect

IsValid() public method

public IsValid ( ) : bool
return bool

Union() public static method

public static Union ( IntRect a, IntRect b ) : IntRect
a IntRect
b IntRect
return IntRect

Property Details

xmin public_oe property

public int xmin
return int