Matrix.opBinaryRight

Define Scalar multiplication

  1. Matrix opBinaryRight(real rhs)
    struct Matrix(T, size_t dim_)
    nothrow @nogc pure const
    opBinaryRight
    (
    string op
    )
    (
    in real rhs
    )
    if (
    op == "*" ||
    op == "/"
    )
    if (
    __traits(isFloating, T) &&
    dim_ >= 2
    &&
    dim_ <= 4
    )
  2. VCol opBinaryRight(VCol lhs)

Meta