Sets this to be the component-wise minimum of this and another vector @param a the other vector @return this
(Vec3 a)
| 1520 | * @return this |
| 1521 | */ |
| 1522 | public Vec3 min(Vec3 a) { |
| 1523 | this.x = Math.min(a.x, this.x); |
| 1524 | this.y = Math.min(a.y, this.y); |
| 1525 | this.z = Math.min(a.z, this.z); |
| 1526 | return this; |
| 1527 | } |
| 1528 | |
| 1529 | /** |
| 1530 | * Sets this to be the component-wise maximum of this and another vector |
no outgoing calls
no test coverage detected