Class SvgCircle
Represents an SVG circle element.
Assembly: OpenSvg.dll
Syntax
public class SvgCircle : SvgVisual, IXmlSerializable, IEquatable<SvgElement>
Fields
|
Edit this page
View Source
radius
Declaration
protected readonly FloatAttr radius
Field Value
|
Edit this page
View Source
x
Declaration
protected readonly FloatAttr x
Field Value
|
Edit this page
View Source
y
Declaration
protected readonly FloatAttr y
Field Value
Properties
|
Edit this page
View Source
Center
Gets or sets the center point of the circle.
Declaration
public Vector2 Center { get; set; }
Property Value
|
Edit this page
View Source
Radius
Gets or sets the radius of the circle.
Declaration
public float Radius { get; set; }
Property Value
|
Edit this page
View Source
SvgName
Gets or sets the name of the SVG element.
Declaration
public override string SvgName { get; }
Property Value
Overrides
|
Edit this page
View Source
X
Gets or sets the x-coordinate of the circle center.
Declaration
public float X { get; set; }
Property Value
|
Edit this page
View Source
Y
Gets or sets the y-coordinate of the circle center.
Declaration
public float Y { get; set; }
Property Value
Methods
|
Edit this page
View Source
ComputeConvexHull()
Computes the convex hull of the line.
Declaration
protected override ConvexHull ComputeConvexHull()
Returns
Type |
Description |
ConvexHull |
The convex hull of the line.
|
Overrides
Implements