Star
Classic star polygon with straight sides and sharp pointed tips
Classic star polygon with straight sides and sharp pointed tips
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| color | color | #ffffff | Fill color of the star |
| center | position | {"x":0.5,"y":0.5} | Center position of the star |
| radius | range | 0.4 | Outer tip radius - distance from center to the pointed tips |
| sides | range | 5 | Number of points on the star |
| innerRatio | range | 0.4 | Inner vertex radius as a ratio of outer radius (0.382 = golden-ratio 5-star) |
| rotation | range | 0 | Rotation in degrees |
| softness | range | 0 | Edge softness for antialiasing |
| strokeThickness | range | 0 | Stroke thickness. Zero means no stroke. |
| strokeColor | color | #000000 | Color of the stroke outline |
| strokePosition | "outside" | "center" | "inside" | center | Position of the stroke relative to the shape edge |
| colorSpace | "linear" | "oklch" | "oklab" | "hsl" | "hsv" | "lch" | linear | Color space for blending fill and stroke colors |
Usage
vue
<Shader>
<Star
color="#ffffff"
:radius="0.4"
/>
</Shader>