Converts this Vec2 to a Vec3 (with z=0) @return Vec3(this.x, this.y, 0)
()
| 1304 | * @return Vec3(this.x, this.y, 0) |
| 1305 | */ |
| 1306 | public Vec3 toVec3() { |
| 1307 | return new Vec3(this, 0); |
| 1308 | } |
| 1309 | |
| 1310 | /** |
| 1311 | * Converts this Vec2 to a Vec4 (with z=0, w=0) |
no outgoing calls
no test coverage detected