mirror of
https://github.com/griffi-gh/hUI.git
synced 2024-11-22 15:18:43 -06:00
improve frame_rect
macro docs
This commit is contained in:
parent
39746aa566
commit
3f8dea24be
|
@ -62,6 +62,18 @@ macro_rules! size {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Helper macro for constructing a `FrameRect`
|
/// Helper macro for constructing a `FrameRect`
|
||||||
|
///
|
||||||
|
/// # Example:
|
||||||
|
/// ```
|
||||||
|
/// frame_rect! {
|
||||||
|
/// color: (0.2, 0.2, 0.3, 1.),
|
||||||
|
/// corner_radius: 5.,
|
||||||
|
/// };
|
||||||
|
/// ```
|
||||||
|
///
|
||||||
|
/// # Note:
|
||||||
|
/// - If the `image` field is set, but not `color`, the `color` field will default to [`WHITE`](crate::color::WHITE) (to ensure visibility)
|
||||||
|
/// - If both `color` and `image` are not set, the `color` field will default to [`TRANSPARENT`](crate::color::TRANSPARENT)
|
||||||
#[macro_export]
|
#[macro_export]
|
||||||
macro_rules! frame_rect {
|
macro_rules! frame_rect {
|
||||||
{} => {
|
{} => {
|
||||||
|
|
Loading…
Reference in a new issue