Multiply this Vec3 by the given scalar value. @param scalar the scalar to multiply this vector by @return this
(double scalar)
| 888 | * @return this |
| 889 | */ |
| 890 | public Vec3 scale(double scalar) { |
| 891 | return mul(scalar); |
| 892 | } |
| 893 | |
| 894 | /** |
| 895 | * Multiply this Vec3 by the given scalar value and store the result in <code>dest</code>. |