[][src]Function iced_audio::graphics::tick_marks::draw_radial_tick_marks

pub fn draw_radial_tick_marks(
    center: Point,
    radius: f32,
    start_angle: f32,
    angle_span: f32,
    inside: bool,
    tick_marks: &Group,
    style: &Style,
    inverse: bool,
    cache: &PrimitiveCache
) -> Primitive

Draws tick marks around an arc.

  • center - The center point of the arc.
  • radius - The radius of the arc where the tick marks start
  • start_angle - The starting angle of the arc in radians
  • angle_span - The span of the angle in radians
  • inside - Whether to place the tick marks inside the radius (true), or outside the radius (false).
  • tick_marks - The group of tick marks.
  • style - The tick marks style.
  • inverse - Whether to inverse the positions of the tick marks (true) or not (false).