public class PickPointFrustumList extends ArrayList<PickPointFrustum>
modCount| Constructor and Description |
|---|
PickPointFrustumList() |
PickPointFrustumList(PickPointFrustumList list) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
containsInAll(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(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(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(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, trimToSizeequals, hashCodecontainsAll, toStringfinalize, getClass, notify, notifyAll, wait, wait, waitcontainsAll, equals, hashCodeparallelStream, streampublic PickPointFrustumList()
public PickPointFrustumList(PickPointFrustumList list)
public final boolean containsInAll(Point point)
point - the point to test.IllegalArgumentException - if the point is null.public final boolean containsInAll(Vec4 point)
point - the point to test.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.IllegalArgumentException - if the point is null.public final boolean containsInAny(Point point)
point - the point to test.IllegalArgumentException - if the point is null.public final boolean containsInAny(Vec4 point)
point - the point to test.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.IllegalArgumentException - if the extent is null.public final boolean intersectsAll(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.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.IllegalArgumentException - if the extent is null.public final boolean intersectsAny(Rectangle rect)
Rectangle intersects the 2D screen space enclosed by ANY of the
Frustums.rect - the Rectangle to test.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.IllegalArgumentException - if either point is null.