Class IntrPlane3Plane3f
- java.lang.Object
-
- WildMagic.LibFoundation.Intersection.Intersector
-
- WildMagic.LibFoundation.Intersection.IntrPlane3Plane3f
-
- All Implemented Interfaces:
java.io.Serializable
public class IntrPlane3Plane3f extends Intersector implements java.io.Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class WildMagic.LibFoundation.Intersection.Intersector
Intersector.IntersectionInfo
-
-
Field Summary
Fields Modifier and Type Field Description private Line3f
m_kIntrLine
private Plane3f
m_kIntrPlane
private Plane3f
m_kPlane0
private Plane3f
m_kPlane1
private static long
serialVersionUID
-
Fields inherited from class WildMagic.LibFoundation.Intersection.Intersector
m_fContactTime, m_iIntersectionType
-
-
Constructor Summary
Constructors Constructor Description IntrPlane3Plane3f(Plane3f kPlane0, Plane3f kPlane1)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
Find()
Static intersection queries.Line3f
GetIntersectionLine()
Plane3f
GetIntersectionPlane()
Plane3f
GetPlane0()
Plane3f
GetPlane1()
boolean
Test()
Static intersection queries.-
Methods inherited from class WildMagic.LibFoundation.Intersection.Intersector
GetContactTime, GetIntersectionType
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
m_kPlane0
private Plane3f m_kPlane0
-
m_kPlane1
private Plane3f m_kPlane1
-
m_kIntrPlane
private Plane3f m_kIntrPlane
-
m_kIntrLine
private Line3f m_kIntrLine
-
-
Method Detail
-
GetPlane0
public Plane3f GetPlane0()
-
GetPlane1
public Plane3f GetPlane1()
-
GetIntersectionPlane
public Plane3f GetIntersectionPlane()
-
GetIntersectionLine
public Line3f GetIntersectionLine()
-
Test
public boolean Test()
Description copied from class:Intersector
Static intersection queries. The default implementations return 'false'. The Find query produces a set of intersection. The derived class is responsible for providing access to that set, since the nature of the set is dependent on the object types.- Overrides:
Test
in classIntersector
- Returns:
- false
-
Find
public boolean Find()
Description copied from class:Intersector
Static intersection queries. The default implementations return 'false'. The Find query produces a set of intersection. The derived class is responsible for providing access to that set, since the nature of the set is dependent on the object types.- Overrides:
Find
in classIntersector
- Returns:
- false
-
-