public final class Circle extends Shape
Represents circle.
Constructor and Description |
---|
Circle(float posX,
float posY,
float radius)
Initializes a new instance of the
Circle class. |
Modifier and Type | Method and Description |
---|---|
float |
getPosX()
Gets or sets a float value that indicates the x-coordinate of the center of the circle.
|
float |
getPosY()
Gets or sets a float value that indicates the y-coordinate of the center of the circle.
|
float |
getRadius()
Gets or sets a float value that indicates the radius of the circle.
|
void |
setPosX(float value) |
void |
setPosY(float value) |
void |
setRadius(float value) |
getGraphInfo, setGraphInfo
public Circle(float posX, float posY, float radius)
Initializes a new instance of the Circle
class.
posX
- The x-coordinate of the center of the circle.posY
- The y-coordinate of the center of the circle.radius
- The radius of the circle.
Graph
object.
public float getPosX()
Gets or sets a float value that indicates the x-coordinate of the center of the circle.
public void setPosX(float value)
public float getPosY()
Gets or sets a float value that indicates the y-coordinate of the center of the circle.
public void setPosY(float value)
public float getRadius()
Gets or sets a float value that indicates the radius of the circle.
public void setRadius(float value)
Copyright © 2017 Aspose. All Rights Reserved.