functions
CircleOutline| modified | Sunday 25 January 2026 |
|---|
Category: Molecules
File: molecules.go
Package: ui
1func CircleOutline(radius int, stroke color.NRGBA, width float32) W
CircleOutline renders a circle outline with specified radius, color, and stroke width.
Creates a hollow circular border drawn as 64 line segments for smooth appearance.
Example:
circle := CircleOutline(25, color.NRGBA{G: 255, A: 255}, 2.0) // Green ring
Ideal for radio buttons, loading spinners, or decorative circular borders.
1{
2 circle := CircleOutline(25, MINT_700, 2.0)
3 _ = circle
4}

This documentation is auto-generated. To update, run make docs