Enum conrod::Position
[−]
[src]
pub enum Position { Absolute(Scalar, Scalar), Relative(Scalar, Scalar, Option<UiId>), Direction(Direction, Scalar, Option<UiId>), Place(Place, Option<CanvasId>), }
A cached widget's position for rendering.
Variants
Absolute | A specific position. |
Relative | A position relative to some other widget. |
Direction | A direction relative to some other widget. |
Place | A position at a place on the current Canvas. |