Shape.width

Shape width

  1. T width [@property getter]
  2. T width [@property setter]
    struct Shape(T : float)
    @safe nothrow pure @property
    void
    width
    ()
    in (type == ShapeType.rectangle || type == ShapeType.roundrect, "This is not a rectangle!")
    if (
    isNumeric!T &&
    isMutable!T
    &&
    isSigned!T
    )

Meta