Property | Type | Description | |
---|---|---|---|
LowerBound | Vector2 | ||
UpperBound | Vector2 |
Method | Description | |
---|---|---|
AABB ( Vector2 min, Vector2 max ) : System | ||
AABB ( float width, float height, Vector2 position ) : System | ||
Combine ( |
Combine an AABB into this one.
|
|
Combine ( |
Combine two AABBs into this one.
|
|
Contains ( |
Does this aabb contain the provided AABB.
|
|
Contains ( Vector2 &point ) : bool |
Determines whether the AAABB contains the specified point.
|
|
IsValid ( ) : bool |
Verify that the bounds are sorted.
|
|
RayCast ( |
||
TestOverlap ( |
||
TestOverlap ( |
public AABB ( Vector2 min, Vector2 max ) : System | ||
min | Vector2 | |
max | Vector2 | |
return | System |
public AABB ( float width, float height, Vector2 position ) : System | ||
width | float | |
height | float | |
position | Vector2 | |
return | System |
public Combine ( |
||
aabb1 | The aabb1. | |
aabb2 | The aabb2. | |
return | void |
public Contains ( Vector2 &point ) : bool | ||
point | Vector2 | The point. |
return | bool |
public RayCast ( |
||
output | ||
input | ||
return | bool |
public static TestOverlap ( |
||
a | ||
b | ||
return | bool |
public static TestOverlap ( |
||
shapeA | ||
indexA | int | |
shapeB | ||
indexB | int | |
xfA | Transform | |
xfB | Transform | |
return | bool |