Create a new Vec2 and initialize its components to zero.
()
| 64 | * Create a new {@link Vec2} and initialize its components to zero. |
| 65 | */ |
| 66 | public Vec2() { |
| 67 | } |
| 68 | |
| 69 | public Vec2(List<Number> from) { |
| 70 | this(from.get(0).doubleValue(), from.get(1).doubleValue()); |
no test coverage detected