Struct CircleF
A circle
public struct CircleF : IEquatable<CircleF>
- Implements
- Inherited Members
Constructors
CircleF(PointF, float)
Create a circle with the specific center and radius
public CircleF(PointF center, float radius)
Parameters
Properties
Area
The area of the circle
public double Area { get; }
Property Value
Center
Get or Set the center of the circle
public PointF Center { get; set; }
Property Value
Radius
The radius of the circle
public float Radius { get; set; }
Property Value
Methods
Equals(CircleF)
Compare this circle with circle2
public bool Equals(CircleF circle2)
Parameters
circle2
CircleFThe other box to be compared
Returns
- bool
true if the two boxes equals