interface Sphere3DPaint {
    color?: string | Expression;
    fill?: boolean;
    fillColor?: string | Expression;
    radius: number;
    stroke?: boolean;
    strokeColor?: string | Expression;
    strokeWidth?: number | Expression;
    type: "sphere";
}

Hierarchy (view full)

Properties

color?: string | Expression
fill?: boolean
fillColor?: string | Expression
radius: number
stroke?: boolean
strokeColor?: string | Expression
strokeWidth?: number | Expression
type