Converts this Vec3 to a Vec2 @return Vec2(this.x, this.y)
()
| 1494 | * @return Vec2(this.x, this.y) |
| 1495 | */ |
| 1496 | public Vec2 toVec2() { |
| 1497 | return new Vec2(this.x, this.y); |
| 1498 | } |
| 1499 | |
| 1500 | /** |
| 1501 | * returns true if any component of this Double.isNaN |
no outgoing calls
no test coverage detected