View Source Mudbrick.Path.Rectangle (mudbrick v0.8.1)

Summary

Types

@type option() ::
  {:lower_left, Mudbrick.coords()}
  | {:dimensions, Mudbrick.coords()}
  | {:line_width, number()}
  | {:colour, Mudbrick.colour()}
@type options() :: [option()]
@type t() :: %Mudbrick.Path.Rectangle{
  colour: Mudbrick.colour(),
  dimensions: Mudbrick.coords(),
  line_width: number(),
  lower_left: Mudbrick.coords()
}