Returns a new vector that is the result of this c @param c the constant to multiply by @return the result of this c
(double c)
| 191 | * @return the result of {@code this * c} |
| 192 | */ |
| 193 | public Vec multiply(double c) |
| 194 | { |
| 195 | Vec toRet = this.getThisSide(null); |
| 196 | toRet.mutableMultiply(c); |
| 197 | return toRet; |
| 198 | } |
| 199 | |
| 200 | /** |
| 201 | * Returns a new vector that is the result of the vector matrix product |