Interface CircleOptions

interface CircleOptions {
    attitude?: SpinorLike;
    dashes?: number[];
    fillColor?: Color;
    fillOpacity?: number;
    id?: string;
    opacity?: number;
    plumb?: boolean;
    position?: VectorLike;
    radius?: number;
    resolution?: number;
    strokeColor?: Color;
    strokeOpacity?: number;
    strokeWidth?: number;
    sx?: number;
    sy?: number;
    vectorEffect?: "none" | "non-scaling-stroke";
    visibility?: "visible" | "hidden" | "collapse";
}

Hierarchy (view full)

Properties

attitude?: SpinorLike
dashes?: number[]
fillColor?: Color

The value of what the path should be filled in with.

https://developer.mozilla.org/en-US/docs/Web/CSS/color_value for more information on CSS's colors as String.

fillOpacity?: number
id?: string
opacity?: number
plumb?: boolean
position?: VectorLike
radius?: number
resolution?: number
strokeColor?: Color

The value of what the path should be outlined in with.

https://developer.mozilla.org/en-US/docs/Web/CSS/color_value for more information on CSS's colors as String.

strokeOpacity?: number
strokeWidth?: number
sx?: number
sy?: number
vectorEffect?: "none" | "non-scaling-stroke"
visibility?: "visible" | "hidden" | "collapse"