public class PickPointFrustumList extends java.util.ArrayList<PickPointFrustum>
Constructor and Description |
---|
PickPointFrustumList() |
PickPointFrustumList(PickPointFrustumList list) |
Modifier and Type | Method and Description |
---|---|
boolean |
containsInAll(java.awt.Point point)
Returns true if the specified 2D screen point is inside the 2D screen rectangle enclosed by ALL of the frustums
|
boolean |
containsInAll(Vec4 point)
Returns true if the specified point is inside the space enclosed by ALL of the frustums
|
boolean |
containsInAny(double x,
double y)
Returns true if the specified 2D point is inside the 2D screen rectangle enclosed by ANY of the frustums
|
boolean |
containsInAny(java.awt.Point point)
Returns true if the specified 2D point is inside the 2D screen rectangle enclosed by ANY of the frustums
|
boolean |
containsInAny(Vec4 point)
Returns true if the specified point is inside the space enclosed by ANY of the frustums
|
boolean |
intersectsAll(Extent extent)
Returns true if the specified
Extent intersects the space enclosed by ALL the Frustums. |
boolean |
intersectsAll(java.awt.Rectangle rect)
Returns true if the specified
Rectangle intersects the 2D screen space enclosed by ALL the
Frustums. |
boolean |
intersectsAny(Extent extent)
Returns true if the specified
Extent intersects the space enclosed by ANY of the Frustums. |
boolean |
intersectsAny(java.awt.Rectangle rect)
Returns true if the specified
Rectangle intersects the 2D screen space enclosed by ANY of the
Frustums. |
boolean |
intersectsAny(Vec4 pa,
Vec4 pb)
Returns true if a specified line segment intersects the space enclosed by ANY of the Frustums.
|
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, forEach, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSize
public PickPointFrustumList()
public PickPointFrustumList(PickPointFrustumList list)
public final boolean containsInAll(java.awt.Point point)
point
- the point to test.java.lang.IllegalArgumentException
- if the point is null.public final boolean containsInAll(Vec4 point)
point
- the point to test.java.lang.IllegalArgumentException
- if the point is null.public final boolean containsInAny(double x, double y)
x
- the x coordinate to test.y
- the y coordinate to test.java.lang.IllegalArgumentException
- if the point is null.public final boolean containsInAny(java.awt.Point point)
point
- the point to test.java.lang.IllegalArgumentException
- if the point is null.public final boolean containsInAny(Vec4 point)
point
- the point to test.java.lang.IllegalArgumentException
- if the point is null.public final boolean intersectsAll(Extent extent)
Extent
intersects the space enclosed by ALL the Frustums. NOTE: Cannot be
true if all frustums do not intersect.extent
- the Extent to test.java.lang.IllegalArgumentException
- if the extent is null.public final boolean intersectsAll(java.awt.Rectangle rect)
Rectangle
intersects the 2D screen space enclosed by ALL the
Frustums. NOTE: Cannot be true if all frustums do not intersect.rect
- the Rectangle to test.java.lang.IllegalArgumentException
- if the extent is null.public final boolean intersectsAny(Extent extent)
Extent
intersects the space enclosed by ANY of the Frustums.extent
- the Extent to test.java.lang.IllegalArgumentException
- if the extent is null.public final boolean intersectsAny(java.awt.Rectangle rect)
Rectangle
intersects the 2D screen space enclosed by ANY of the
Frustums.rect
- the Rectangle to test.java.lang.IllegalArgumentException
- if the extent is null.public final boolean intersectsAny(Vec4 pa, Vec4 pb)
pa
- one end of the segment.pb
- the other end of the segment.java.lang.IllegalArgumentException
- if either point is null.