XnaGeometry from http://www.technologicalutopia.com/sourcecode/xnageometry/
More...
|
| | Plane (Vector4 value) |
| |
| | Plane (Vector3 normal, double d) |
| |
| | Plane (Vector3 a, Vector3 b, Vector3 c) |
| |
| | Plane (double a, double b, double c, double d) |
| |
| double | Dot (Vector4 value) |
| |
| void | Dot (ref Vector4 value, out double result) |
| |
| double | DotCoordinate (Vector3 value) |
| |
| void | DotCoordinate (ref Vector3 value, out double result) |
| |
| double | DotNormal (Vector3 value) |
| |
| void | DotNormal (ref Vector3 value, out double result) |
| |
| void | Normalize () |
| |
| override bool | Equals (object other) |
| |
| bool | Equals (Plane other) |
| |
| override int | GetHashCode () |
| |
| PlaneIntersectionType | Intersects (BoundingBox box) |
| |
| void | Intersects (ref BoundingBox box, out PlaneIntersectionType result) |
| |
| PlaneIntersectionType | Intersects (BoundingFrustum frustum) |
| |
| PlaneIntersectionType | Intersects (BoundingSphere sphere) |
| |
| void | Intersects (ref BoundingSphere sphere, out PlaneIntersectionType result) |
| |
| override string | ToString () |
| |
| XnaGeometry.Plane.Plane |
( |
Vector4 |
value | ) |
|
| XnaGeometry.Plane.Plane |
( |
Vector3 |
normal, |
|
|
double |
d |
|
) |
| |
| XnaGeometry.Plane.Plane |
( |
double |
a, |
|
|
double |
b, |
|
|
double |
c, |
|
|
double |
d |
|
) |
| |
| double XnaGeometry.Plane.Dot |
( |
Vector4 |
value | ) |
|
| void XnaGeometry.Plane.Dot |
( |
ref Vector4 |
value, |
|
|
out double |
result |
|
) |
| |
| double XnaGeometry.Plane.DotCoordinate |
( |
Vector3 |
value | ) |
|
| void XnaGeometry.Plane.DotCoordinate |
( |
ref Vector3 |
value, |
|
|
out double |
result |
|
) |
| |
| double XnaGeometry.Plane.DotNormal |
( |
Vector3 |
value | ) |
|
| void XnaGeometry.Plane.DotNormal |
( |
ref Vector3 |
value, |
|
|
out double |
result |
|
) |
| |
| override bool XnaGeometry.Plane.Equals |
( |
object |
other | ) |
|
| bool XnaGeometry.Plane.Equals |
( |
Plane |
other | ) |
|
| override int XnaGeometry.Plane.GetHashCode |
( |
| ) |
|
| void XnaGeometry.Plane.Normalize |
( |
| ) |
|
| static Plane XnaGeometry.Plane.Normalize |
( |
Plane |
value | ) |
|
|
static |
| static void XnaGeometry.Plane.Normalize |
( |
ref Plane |
value, |
|
|
out Plane |
result |
|
) |
| |
|
static |
| static bool XnaGeometry.Plane.operator!= |
( |
Plane |
plane1, |
|
|
Plane |
plane2 |
|
) |
| |
|
static |
| static bool XnaGeometry.Plane.operator== |
( |
Plane |
plane1, |
|
|
Plane |
plane2 |
|
) |
| |
|
static |
| override string XnaGeometry.Plane.ToString |
( |
| ) |
|
| static void XnaGeometry.Plane.Transform |
( |
ref Plane |
plane, |
|
|
ref Quaternion |
rotation, |
|
|
out Plane |
result |
|
) |
| |
|
static |
| static void XnaGeometry.Plane.Transform |
( |
ref Plane |
plane, |
|
|
ref Matrix |
matrix, |
|
|
out Plane |
result |
|
) |
| |
|
static |
| double XnaGeometry.Plane.D |