diff options
| author | robojumper <robojumper@gmail.com> | 2025-04-27 11:14:54 +0200 |
|---|---|---|
| committer | robojumper <robojumper@gmail.com> | 2025-04-27 11:14:54 +0200 |
| commit | a962cdd14ac4520d72151c1b83b3e98d608e06be (patch) | |
| tree | 3af28a1b00a8fddde18bc312e89b578d2e421349 /include/egg | |
| parent | 70125c1eacee19e03b8fd9b4dcf277c019ab4f3f (diff) | |
JPAEmitterManager OK
Diffstat (limited to 'include/egg')
| -rw-r--r-- | include/egg/math/eggVector.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/egg/math/eggVector.h b/include/egg/math/eggVector.h index 1c8a220e..f1256a6a 100644 --- a/include/egg/math/eggVector.h +++ b/include/egg/math/eggVector.h @@ -48,7 +48,7 @@ struct Vector3f : public nw4r::math::VEC3 { return Vector3f(-x, -y, -z); } - Vector3f operator-(const Vector3f &v) { + Vector3f operator-(const Vector3f &v) const { return Vector3f(x - v.x, y - v.y, z - v.z); } |
