Shape.length

Line length.

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

Meta