Package | Description |
---|---|
agi.foundation.graphics |
Provides commonly used and instantiated graphics types related to 3D scene management, terrain and imagery, and more.
|
Modifier and Type | Method and Description |
---|---|
PathPoint |
PathPrimitive.back()
Access the
PathPoint
at the back of the line. |
PathPoint |
PathPrimitive.front()
Access the
PathPoint
at the front of the line. |
PathPoint |
PathPrimitive.get(int index)
Returns the point at the given zero-based index.
|
PathPoint |
PathPointBuilder.toPathPoint()
Returns an immutable
PathPoint
object built from this object's attributes. |
Modifier and Type | Method and Description |
---|---|
Iterator<PathPoint> |
PathPrimitive.iterator()
Returns an enumerator that iterates through the collection.
|
Modifier and Type | Method and Description |
---|---|
void |
PathPrimitive.addBack(PathPoint pathPoint)
Add a
PathPoint
to the back of the line. |
void |
PathPrimitive.addFront(PathPoint pathPoint)
Add a
PathPoint
to the front of the line. |
static boolean |
PathPoint.equals(PathPoint left,
PathPoint right)
Returns
true if the two instances are exactly equal. |
boolean |
PathPoint.equalsType(PathPoint other)
Indicates whether another instance of this type is exactly equal to this instance.
|
static boolean |
PathPoint.notEquals(PathPoint left,
PathPoint right)
Returns
true if the two instances are not exactly equal. |
Modifier and Type | Method and Description |
---|---|
void |
PathPrimitive.addRangeToBack(Iterable<PathPoint> positions)
Add the range of
PathPoints
to the back of the line. |
void |
PathPrimitive.addRangeToFront(Iterable<PathPoint> positions)
Add the range of
PathPoints
to the front of the line. |