Home | History | Annotate | Download | only in Renderer

Lines Matching refs:Plane

24 	struct Plane
31 Plane();
32 Plane(float A, float B, float C, float D); // Plane equation
33 Plane(const float ABCD[4]);
35 friend Plane operator*(const Plane &p, const Matrix &A); // Transform plane by matrix (post-multiply)
36 friend Plane operator*(const Matrix &A, const Plane &p); // Transform plane by matrix (pre-multiply)