|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectaspose.pdf.Shape
aspose.pdf.Circle
public class Circle
Represents a circle
Typical usages are the following:
Constructor Summary | |
---|---|
Circle()
Constructor - initializes a new instance of the Circle class. |
|
Circle(float xPosition,
float yPosition,
float radius)
Initializes a new instance of the Circle class. |
|
Circle(Graph graph)
Initializes a new instance of the Circle class. |
|
Circle(Graph graph,
float xPosition,
float yPosition,
float radius)
Initializes a new instance of the Circle class. |
Method Summary | |
---|---|
float |
getPosX()
Gets a float value that indicates the x-coordinate of the center of the circle. |
float |
getPosY()
Gets a float value that indicates the y-coordinate of the center of the circle. |
float |
getRadius()
Gets a float value that indicates the radius of the circle. |
void |
setPosX(float pos)
Sets a float value that indicates the x-coordinate of the center of the circle. |
void |
setPosY(float pos)
Sets a float value that indicates the y-coordinate of the center of the circle. |
void |
setRadius(float circleRadius)
Sets a float value that indicates the radius of the circle. |
Methods inherited from class aspose.pdf.Shape |
---|
getGraphInfo, getID, setGraphInfo, setID |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Circle()
Circle
class.
public Circle(float xPosition, float yPosition, float radius)
Circle
class.
xPosition
- The x-coordinate of the center of the circle.yPosition
- The y-coordinate of the center of the circle.radius
- The radius of the circle.public Circle(Graph graph)
Circle
class.
Remarks: This constructor can inherit common property values from the specified
Graph
object.
graph
- The specified Graph
object.public Circle(Graph graph, float xPosition, float yPosition, float radius)
Circle
class.
Remarks:This constructor can inherit common property values from the specified
Graph
object.
graph
- The specified Graph
object.xPosition
- The x-coordinate of the center of the circle.yPosition
- The y-coordinate of the center of the circle.radius
- The radius of the circle.Method Detail |
---|
public float getPosX()
public void setPosX(float pos)
pos
- X position.public float getPosY()
public void setPosY(float pos)
pos
- Y position.public float getRadius()
public void setRadius(float circleRadius)
circleRadius
- Float value.
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |