public final class Arc extends Shape
Represents arc.
Constructor and Description |
---|
Arc(float xPosition,
float yPosition,
float radius,
float alpha,
float beta)
Initializes a new instance of the
Arc class. |
Modifier and Type | Method and Description |
---|---|
float |
getAlpha()
Gets or sets a float value that indicates the beginning angle degree of the arc.
|
float |
getBeta()
Gets or sets a float value that indicates the ending angle degree of the arc.
|
float |
getPosX()
Gets or sets a float value that indicates the x-coordinate of the center of the arc.
|
float |
getPosY()
Gets or sets a float value that indicates the y-coordinate of the center of the arc.
|
float |
getRadius()
Gets or sets a float value that indicates the radius of the arc.
|
void |
setAlpha(float value) |
void |
setBeta(float value) |
void |
setPosX(float value) |
void |
setPosY(float value) |
void |
setRadius(float value) |
getGraphInfo, setGraphInfo
public Arc(float xPosition, float yPosition, float radius, float alpha, float beta)
Initializes a new instance of the Arc
class.
xPosition
- The x-coordinate of the center point of the arc.yPosition
- The y-coordinate of the center point of the arc.radius
- The radius value of the arc.alpha
- The beginning angle value of the arc.beta
- The end angle value of the arc.public float getPosX()
Gets or sets a float value that indicates the x-coordinate of the center of the arc.
public void setPosX(float value)
public float getPosY()
Gets or sets a float value that indicates the y-coordinate of the center of the arc.
public void setPosY(float value)
public float getRadius()
Gets or sets a float value that indicates the radius of the arc.
public void setRadius(float value)
public float getAlpha()
Gets or sets a float value that indicates the beginning angle degree of the arc.
public void setAlpha(float value)
public float getBeta()
Gets or sets a float value that indicates the ending angle degree of the arc.
public void setBeta(float value)
Copyright © 2017 Aspose. All Rights Reserved.