Class Line2f
- java.lang.Object
-
- WildMagic.LibFoundation.Mathematics.Line2f
-
- All Implemented Interfaces:
java.io.Serializable
public class Line2f extends java.lang.Object implements java.io.SerializableThe line is represented as P+t*D where P is the line origin and D is a unit-length direction vector. The user must ensure that the direction vector satisfies this condition.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description Vector2fDirectionLine Origin and Direction vectors The line is represented as P+t*D where P is the line origin and D is a unit-length direction vector.Vector2fOriginLine Origin and Direction vectors The line is represented as P+t*D where P is the line origin and D is a unit-length direction vector.private static longserialVersionUID
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddispose()delete memory
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
Origin
public Vector2f Origin
Line Origin and Direction vectors The line is represented as P+t*D where P is the line origin and D is a unit-length direction vector. The user must ensure that the direction vector satisfies this condition.
-
Direction
public Vector2f Direction
Line Origin and Direction vectors The line is represented as P+t*D where P is the line origin and D is a unit-length direction vector. The user must ensure that the direction vector satisfies this condition.
-
-