IGeometryPath
public interface IGeometryPath
Represents geometry path of GeometryShape
Methods
getPathData()
public abstract IPathSegment[] getPathData()
Returns geometry path of GeometryShape as an array of path segments.
Returns: com.aspose.slides.IPathSegment[]
removeAt(int index)
public abstract void removeAt(int index)
Removes segment at the specified index of the geometry path.
Parameters:
Parameter | Type | Description |
---|---|---|
index | int | Index of the geometry path that should be deleted. |
lineTo(Point2D.Float point)
public abstract void lineTo(Point2D.Float point)
Adds line to the end of the path
Parameters:
Parameter | Type | Description |
---|---|---|
point | java.awt.geom.Point2D.Float | End point of the line |
lineTo(float x, float y)
public abstract void lineTo(float x, float y)
Adds line to the end of the path
Parameters:
Parameter | Type | Description |
---|---|---|
x | float | X coordinate of the end point of the line |
y | float | Y coordinate of the end point of the line |
lineTo(Point2D.Float point, long index)
public abstract void lineTo(Point2D.Float point, long index)
Adds line to the specified place of the path
Parameters:
Parameter | Type | Description |
---|---|---|
point | java.awt.geom.Point2D.Float | End point |
index | long | Index of segment in PathData |
lineTo(float x, float y, long index)
public abstract void lineTo(float x, float y, long index)
Adds line to the specified place of the path
Parameters:
Parameter | Type | Description |
---|---|---|
x | float | X coordinate of the point |
y | float | Y coordinate of the point |
index | long | Index of segment in PathData |
cubicBezierTo(Point2D.Float point1, Point2D.Float point2, Point2D.Float point3)
public abstract void cubicBezierTo(Point2D.Float point1, Point2D.Float point2, Point2D.Float point3)
Adds cubic Bezier curve at the end the path
Parameters:
Parameter | Type | Description |
---|---|---|
point1 | java.awt.geom.Point2D.Float | First direction point |
point2 | java.awt.geom.Point2D.Float | Second direction point |
point3 | java.awt.geom.Point2D.Float | End point |
cubicBezierTo(float x1, float y1, float x2, float y2, float x3, float y3)
public abstract void cubicBezierTo(float x1, float y1, float x2, float y2, float x3, float y3)
Adds cubic Bezier curve at the end the path
Parameters:
Parameter | Type | Description |
---|---|---|
x1 | float | X coordinate of first direction point |
y1 | float | Y coordinate of first direction point |
x2 | float | X coordinate of second direction point |
y2 | float | Y coordinate of second direction point |
x3 | float | X coordinate of end point |
y3 | float | Y coordinate of end point |
cubicBezierTo(Point2D.Float point1, Point2D.Float point2, Point2D.Float point3, long index)
public abstract void cubicBezierTo(Point2D.Float point1, Point2D.Float point2, Point2D.Float point3, long index)
Adds cubic Bezier curve to the specified place of the path
Parameters:
Parameter | Type | Description |
---|---|---|
point1 | java.awt.geom.Point2D.Float | First direction point |
point2 | java.awt.geom.Point2D.Float | Second direction point |
point3 | java.awt.geom.Point2D.Float | End point |
index | long | Index of segment in PathData |
cubicBezierTo(float x1, float y1, float x2, float y2, float x3, float y3, long index)
public abstract void cubicBezierTo(float x1, float y1, float x2, float y2, float x3, float y3, long index)
Adds cubic Bezier curve to the specified place of the path
Parameters:
Parameter | Type | Description |
---|---|---|
x1 | float | X coordinate of first direction point |
y1 | float | Y coordinate of first direction point |
x2 | float | X coordinate of second direction point |
y2 | float | Y coordinate of second direction point |
x3 | float | X coordinate of end point |
y3 | float | Y coordinate of end point |
index | long | Index of segment in PathData |
quadraticBezierTo(Point2D.Float point1, Point2D.Float point2)
public abstract void quadraticBezierTo(Point2D.Float point1, Point2D.Float point2)
Adds quadratic Bezier curve at the end the path
Parameters:
Parameter | Type | Description |
---|---|---|
point1 | java.awt.geom.Point2D.Float | Direction point |
point2 | java.awt.geom.Point2D.Float | End point |
quadraticBezierTo(float x1, float y1, float x2, float y2)
public abstract void quadraticBezierTo(float x1, float y1, float x2, float y2)
Adds quadratic Bezier curve at the end the path
Parameters:
Parameter | Type | Description |
---|---|---|
x1 | float | X coordinate of direction point |
y1 | float | Y coordinate of direction point |
x2 | float | X coordinate of end point |
y2 | float | Y coordinate of end point |
quadraticBezierTo(Point2D.Float point1, Point2D.Float point2, long index)
public abstract void quadraticBezierTo(Point2D.Float point1, Point2D.Float point2, long index)
Adds quadratic Bezier curve to the specified place of the path
Parameters:
Parameter | Type | Description |
---|---|---|
point1 | java.awt.geom.Point2D.Float | Direction point |
point2 | java.awt.geom.Point2D.Float | End point |
index | long | Index of segment in PathData |
quadraticBezierTo(float x1, float y1, float x2, float y2, long index)
public abstract void quadraticBezierTo(float x1, float y1, float x2, float y2, long index)
Adds quadratic Bezier curve to the specified place of the path
Parameters:
Parameter | Type | Description |
---|---|---|
x1 | float | X coordinate of direction point |
y1 | float | Y coordinate of direction point |
x2 | float | X coordinate of end point |
y2 | float | Y coordinate of end point |
index | long | Index of segment in PathData |
closeFigure()
public abstract void closeFigure()
Closes the current figure of this path
moveTo(Point2D.Float point)
public abstract void moveTo(Point2D.Float point)
Sets next point position.
Parameters:
Parameter | Type | Description |
---|---|---|
point | java.awt.geom.Point2D.Float | Point position |
moveTo(float x, float y)
public abstract void moveTo(float x, float y)
Sets next point position.
Parameters:
Parameter | Type | Description |
---|---|---|
x | float | X coordinate of the point |
y | float | Y Coordinate of the point |
arcTo(float width, float heigth, float startAngle, float sweepAngle)
public abstract void arcTo(float width, float heigth, float startAngle, float sweepAngle)
Appends the specified arc to the path.
Parameters:
Parameter | Type | Description |
---|---|---|
width | float | Width of the rectangle |
heigth | float | Height of the rectangle |
startAngle | float | Start angle. |
sweepAngle | float | Sweep angle/ |
getFillMode()
public abstract byte getFillMode()
Sets fill mode
Returns: byte
setFillMode(byte value)
public abstract void setFillMode(byte value)
Sets fill mode
Parameters:
Parameter | Type | Description |
---|---|---|
value | byte |
getStroke()
public abstract boolean getStroke()
Sets stroke appearance
Returns: boolean
setStroke(boolean value)
public abstract void setStroke(boolean value)
Sets stroke appearance
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |