Browse Source

Remove single-float Vec constructor.

tags/v2.0.0
Andrew Belt 3 years ago
parent
commit
6c22590439
1 changed files with 0 additions and 1 deletions
  1. +0
    -1
      include/math.hpp

+ 0
- 1
include/math.hpp View File

@@ -194,7 +194,6 @@ struct Vec {
float y = 0.f; float y = 0.f;


Vec() {} Vec() {}
Vec(float x) : x(x), y(x) {}
Vec(float x, float y) : x(x), y(y) {} Vec(float x, float y) : x(x), y(y) {}


float& operator[](int i) { float& operator[](int i) {


Loading…
Cancel
Save