Merge branch 'type-cleanup' of https://github.com/Paril/ericw-tools into type-cleanup

This commit is contained in:
Jonathan 2021-10-24 17:45:35 -04:00
commit 90276d76dd
6 changed files with 209 additions and 1 deletions

View File

@ -663,7 +663,7 @@ public:
return qvec<T, 4>(normal[0], normal[1], normal[2], dist);
}
[[nodiscard]] constexpr qplane3 operator-() const { return { -normal, -dist }; }
[[nodiscard]] constexpr qplane3 operator-() const { return {qvec<T, 3>(0, 0, 0) - normal, -dist}; }
// generic case
template<typename F>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long