Plane_Equationf::Plane_Equationf(const Vec3f &p1, const Vec3f &p2, const Vec3f &p3)
{
	FromPoints(p1, p2, p3);
}
Esempio n. 2
0
 Line3::Line3(const Vector3 &tail, const Vector3 &head)
 {
    m_normal.z = 0.0f;
    FromPoints(tail, head);
 }