diff options
Diffstat (limited to 'src/core/Basis.cpp')
-rw-r--r-- | src/core/Basis.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/core/Basis.cpp b/src/core/Basis.cpp index 73d9cd5..466f309 100644 --- a/src/core/Basis.cpp +++ b/src/core/Basis.cpp @@ -31,15 +31,6 @@ Basis::Basis() { elements[2][2] = 1; } -const Vector3 &Basis::operator[](int axis) const { - - return elements[axis]; -} -Vector3 &Basis::operator[](int axis) { - - return elements[axis]; -} - #define cofac(row1, col1, row2, col2) \ (elements[row1][col1] * elements[row2][col2] - elements[row1][col2] * elements[row2][col1]) |