functions
CircleFilled| modified | Sunday 25 January 2026 |
|---|
Category: Molecules
File: molecules.go
Package: ui
1func CircleFilled(radius int, fill color.NRGBA) W
CircleFilled renders a filled circle with the specified radius and color.
The radius defines half the circle’s width/height (diameter = radius * 2).
Example:
circle := CircleFilled(25, color.NRGBA{B: 255, A: 255}) // 50px diameter blue circle
Commonly used for avatars, status indicators, dots, and decorative elements.
1{
2 circle := CircleFilled(25, GRAPE_500)
3 _ = circle
4}

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