Returns a new vector that is the result of this / c @param c the constant to divide by @return the result of this / c
(double c)
| 273 | * @return the result of {@code this / c} |
| 274 | */ |
| 275 | public Vec divide(double c) |
| 276 | { |
| 277 | Vec toRet = this.getThisSide(null); |
| 278 | toRet.mutableDivide(c); |
| 279 | return toRet; |
| 280 | } |
| 281 | |
| 282 | /** |
| 283 | * Alters this vector such that |