/// Represents a circle element defined by center point and radius.
public class Circle : Element
{
// Constructors
public Circle() { }
public Circle(Vector3 center, float radius) { }
public Circle(Vector2 center, float radius) { }
public Circle(float centerX, float centerY, float centerZ, float radius) { }
public Circle(float centerX, float centerY, float radius) { }
// Important Properties
public Vector3 Center { get; set; } // Circle center point.
public float Radius { get; set; } // Radius of the circle.
public Plane3D Plane { get; set; } // The drawing plane of the circle.
// Other Accessible Properties
public string LayerName { get; set; } // The name of the layer this element belongs to.
public string ColorARGB { get; set; } // Element color represented as an AARRGGBB hex string.
public PropertyMethod ColorMethod { get; set; } // Element color method.
public LineType? LineType { get; set; } // The line type for this element.
public float? LineTypeScale { get; set; } // The scale of the line type.
public PropertyMethod LineTypeMethod { get; set; } // Element line type method.
public float? LineWeight { get; set; } // The line weight for this element.
public PropertyMethod LineWeightMethod { get; set; } // Element lineWeight method.
public string MaterialName { get; set; } // The name of the material for this element.
public int? DisplayOrder { get; set; } // The element printing and displaying order.
public bool? IsVisible { get; set; } // The element visibility status.
}