diff options
| author | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-02-24 00:27:49 +0000 |
|---|---|---|
| committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-02-24 00:27:49 +0000 |
| commit | 744e6ad2fb88671800e39db33d08b2cd451c8338 (patch) | |
| tree | 563da22ef0240131fe0540e9ccc3fed5d10fc9a2 /lib/geometricPlane.h | |
| parent | Simplify vector addition/subtraction with differnt types (diff) | |
| parent | First cut of terrain deformation (diff) | |
| download | ilt-744e6ad2fb88671800e39db33d08b2cd451c8338.tar.bz2 ilt-744e6ad2fb88671800e39db33d08b2cd451c8338.tar.xz ilt-744e6ad2fb88671800e39db33d08b2cd451c8338.zip | |
Psycho-rebased branch deform-terrain on top of main
Diffstat (limited to 'lib/geometricPlane.h')
| -rw-r--r-- | lib/geometricPlane.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/geometricPlane.h b/lib/geometricPlane.h index 3f95d3c..3b1a0e4 100644 --- a/lib/geometricPlane.h +++ b/lib/geometricPlane.h @@ -27,7 +27,7 @@ public: [[nodiscard]] inline PlaneRelation getRelation(PositionType point) const { - const auto d = glm::dot(normal, point - origin); + const auto d = glm::dot(normal, RelativePosition3D(point - origin)); return d < 0.F ? PlaneRelation::Below : d > 0.F ? PlaneRelation::Above : PlaneRelation::On; } |
