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

Summary

Types

option()

@type option() ::
  {:lower_left, Mudbrick.coords()}
  | {:dimensions, Mudbrick.coords()}
  | {:line_width, number()}
  | {:colour, Mudbrick.colour()}

options()

@type options() :: [option()]

t()

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