public class CoordinateCollection
Property Getters/Setters Summary | ||
---|---|---|
ArcToCollection | getArcToCol() | |
Contains the x- and y-coordinates and bow of a circular arc represented respectively by the X, Y, and A elements.
|
||
int | getCount() | |
Gets the number of elements actually contained in the collection.
|
||
EllipseCollection | getEllipseCol() | |
Contains elements specifying the x- and y-coordinates of the ellipse's center point and two points on the ellipse.
|
||
EllipticalArcToCollection | getEllipticalArcToCol() | |
Contains elements that specify information about an elliptical arc.
|
||
InfiniteLineCollection | getInfiniteLineCol() | |
Contains elements specifying the x- and y-coordinates of two points on an infinite line. The X and Y elements specify the x- and y-coordinates of the first point, and the A and B elements specify the x- and y-coordinates of the second point.
|
||
LineToCollection | getLineToCol() | |
Contains x- and y-coordinates of the ending vertex of a straight line segment. These coordinates are contained in the X and Y elements, respectively.
|
||
MoveToCollection | getMoveToCol() | |
Contains the x- and y-coordinates of the first vertex of a shape, or contains the x- and y-coordinates of the first vertex after a break in a path.
|
||
NURBSToCollection | getNURBSToCol() | |
Contains the x- and y-coordinates, position of the second to last knot, position of the last weight, position of the first knot, position of the first weight, and the formula for a nonuniform rational B-spline (NURBS). This information is specified in the X, Y, A, B, C, D, and E elements, respectively.
|
||
PolylineToCollection | getPolylineToCol() | |
Contains x- and y-coordinates of the last point of a polyline and a polyline formula. The coordinates are specified in the X and Y elements, and the formula is specified in the A element.
|
||
RelCubBezToCollection | getRelCubBezToCol() | |
Contains x- and y-coordinates for a RelCubBezTo's points.Coordinates are specified as relative coordinates.
|
||
RelEllipticalArcToCollection | getRelEllipticalArcToCol() | |
Contains elements that specify information about an elliptical arc.Coordinates are specified as relative coordinates.
|
||
RelLineToCollection | getRelLineToCol() | |
Contains x- and y-coordinates of the ending vertex of a straight line segment. These coordinates are contained in the X and Y elements, respectively.Coordinates are specified as relative coordinates.
|
||
RelMoveToCollection | getRelMoveToCol() | |
Contains the x- and y-coordinates of the first vertex of a shape, or contains the x- and y-coordinates of the first vertex after a break in a path.Coordinates are specified as relative coordinates.
|
||
RelQuadBezToCollection | getRelQuadBezToCol() | |
Contains x- and y-coordinates for a RelQuadBezTo's points.Coordinates are specified as relative coordinates.
|
||
SplineKnotCollection | getSplineKnotCol() | |
Contains x- and y-coordinates for a spline's control point and a spline's knot, represented by the X, Y, and A elements, respectively.
|
||
SplineStartCollection | getSplineStartCol() | |
Contains x- and y-coordinates for a spline's second control point, its second knot, its first knot, the last knot, and the degree of the spline. This information is contained in the X, Y, A, B, C, and D elements, respectively.
|
||
Coordinate | get(int index) | |
Gets the element at the specified index.
|
Method Summary | ||
---|---|---|
int | add(ArcTo item) | |
Add the ArcTo object in the collection.
|
||
int | add(Coordinate item) | |
Add the Coordinate object in the collection.
|
||
int | add(Ellipse item) | |
Add the Ellipse object in the collection.
|
||
int | add(EllipticalArcTo item) | |
Add the EllipticalArcTo object in the collection.
|
||
int | add(InfiniteLine item) | |
Add the InfiniteLine object in the collection.
|
||
int | add(LineTo item) | |
Add the LineTo object in the collection.
|
||
int | add(MoveTo item) | |
Add the MoveTo object in the collection.
|
||
int | add(NURBSTo item) | |
Add the NURBSTo object in the collection.
|
||
int | add(PolylineTo item) | |
Add the PolylineTo object in the collection.
|
||
int | add(RelCubBezTo item) | |
Add the RelCubBezTo object in the collection.
|
||
int | add(RelEllipticalArcTo item) | |
Add the RelEllipticalArcTo object in the collection.
|
||
int | add(RelLineTo item) | |
Add the RelLineTo object in the collection.
|
||
int | add(RelMoveTo item) | |
Add the RelMoveTo object in the collection.
|
||
int | add(RelQuadBezTo item) | |
Add the RelQuadBezTo object in the collection.
|
||
int | add(SplineKnot item) | |
Add the SplineKnot object in the collection.
|
||
int | add(SplineStart item) | |
Add the SplineStart object in the collection.
|
||
void | clear() | |
Removes all elements from collection.
|
||
boolean | isExist(int index) | |
Is exist item in the collection.
|
||
java.util.Iterator | iterator() | |
Supports a simple iteration over a nongeneric collection.
|
||
void | remove(ArcTo item) | |
Remove the ArcTo object from the collection.
|
||
void | remove(Coordinate item) | |
Remove the Coordinate object from the collection.
|
||
void | remove(Ellipse item) | |
Remove the Ellipse object from the collection.
|
||
void | remove(EllipticalArcTo item) | |
Remove the EllipticalArcTo object from the collection.
|
||
void | remove(InfiniteLine item) | |
Remove the InfiniteLine object from the collection.
|
||
void | remove(LineTo item) | |
Remove the LineTo object from the collection.
|
||
void | remove(MoveTo item) | |
Remove the MoveTo object from the collection.
|
||
void | remove(NURBSTo item) | |
Remove the NURBSTo object from the collection.
|
||
void | remove(PolylineTo item) | |
Remove the PolylineTo object from the collection.
|
||
void | remove(RelCubBezTo item) | |
Remove the RelCubBezTo object from the collection.
|
||
void | remove(RelEllipticalArcTo item) | |
Remove the RelEllipticalArcTo object from the collection.
|
||
void | remove(RelLineTo item) | |
Remove the RelLineTo object from the collection.
|
||
void | remove(RelMoveTo item) | |
Remove the RelMoveTo object from the collection.
|
||
void | remove(RelQuadBezTo item) | |
Remove the RelQuadBezTo object from the collection.
|
||
void | remove(SplineKnot item) | |
Remove the SplineKnot object from the collection.
|
||
void | remove(SplineStart item) | |
Remove the SplineStart object from the collection.
|
public MoveToCollection getMoveToCol()
public LineToCollection getLineToCol()
public ArcToCollection getArcToCol()
public InfiniteLineCollection getInfiniteLineCol()
public EllipseCollection getEllipseCol()
public EllipticalArcToCollection getEllipticalArcToCol()
public SplineStartCollection getSplineStartCol()
public SplineKnotCollection getSplineKnotCol()
public PolylineToCollection getPolylineToCol()
public NURBSToCollection getNURBSToCol()
public RelCubBezToCollection getRelCubBezToCol()
public RelQuadBezToCollection getRelQuadBezToCol()
public RelMoveToCollection getRelMoveToCol()
public RelLineToCollection getRelLineToCol()
public RelEllipticalArcToCollection getRelEllipticalArcToCol()
public int getCount()
public Coordinate get(int index)
public int add(Coordinate item)
public void remove(Coordinate item)
public int add(MoveTo item)
public void remove(MoveTo item)
public int add(LineTo item)
public void remove(LineTo item)
public int add(ArcTo item)
public void remove(ArcTo item)
public int add(InfiniteLine item)
public void remove(InfiniteLine item)
public int add(Ellipse item)
public void remove(Ellipse item)
public int add(EllipticalArcTo item)
public void remove(EllipticalArcTo item)
public int add(SplineStart item)
public void remove(SplineStart item)
public int add(SplineKnot item)
public void remove(SplineKnot item)
public int add(PolylineTo item)
public void remove(PolylineTo item)
public int add(NURBSTo item)
public void remove(NURBSTo item)
public int add(RelCubBezTo item)
public void remove(RelCubBezTo item)
public int add(RelQuadBezTo item)
public void remove(RelQuadBezTo item)
public int add(RelMoveTo item)
public void remove(RelMoveTo item)
public int add(RelLineTo item)
public void remove(RelLineTo item)
public int add(RelEllipticalArcTo item)
public void remove(RelEllipticalArcTo item)
public java.util.Iterator iterator()
public boolean isExist(int index)
index
- index of element.public void clear()