Class IntrLine3Plane3f
- java.lang.Object
-
- WildMagic.LibFoundation.Intersection.Intersector
-
- WildMagic.LibFoundation.Intersection.IntrLine3Plane3f
-
- All Implemented Interfaces:
java.io.Serializable
public class IntrLine3Plane3f 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 floatm_fLineParameterIntersector.IntersectionInfom_kIntersectionTypeprivate Line3fm_kLineprivate Plane3fm_kPlaneprivate static longserialVersionUID-
Fields inherited from class WildMagic.LibFoundation.Intersection.Intersector
m_fContactTime, m_iIntersectionType
-
-
Constructor Summary
Constructors Constructor Description IntrLine3Plane3f(Line3f kLine, Plane3f kPlane)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanFind()Static intersection queries.Line3fGetLine()floatGetLineParameter()Plane3fGetPlane()booleanTest()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_kIntersectionType
public Intersector.IntersectionInfo m_kIntersectionType
-
m_kLine
private Line3f m_kLine
-
m_kPlane
private Plane3f m_kPlane
-
m_fLineParameter
private float m_fLineParameter
-
-
Method Detail
-
GetLine
public Line3f GetLine()
-
GetPlane
public Plane3f GetPlane()
-
Test
public boolean Test()
Description copied from class:IntersectorStatic 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:
Testin classIntersector- Returns:
- false
-
Find
public boolean Find()
Description copied from class:IntersectorStatic 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:
Findin classIntersector- Returns:
- false
-
GetLineParameter
public float GetLineParameter()
-
-