From f34ba48e3e0b707db78dd436cdee54ae70fa5e3c Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 12 Oct 2022 19:30:16 +0200 Subject: [PATCH] - constant update. --- src/common/utility/vectors.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/common/utility/vectors.h b/src/common/utility/vectors.h index 7a8ef5321..48bc6cfc6 100644 --- a/src/common/utility/vectors.h +++ b/src/common/utility/vectors.h @@ -1635,10 +1635,11 @@ typedef TAngle DAngle; constexpr DAngle nullAngle = DAngle::fromDeg(0.); constexpr FAngle nullFAngle = FAngle::fromDeg(0.); -constexpr DAngle DAngle90 = DAngle::fromBam(ANGLE_90); -constexpr DAngle DAngle180 = DAngle::fromBam(ANGLE_180); -constexpr DAngle DAngle270 = DAngle::fromBam(ANGLE_270); -constexpr DAngle DAngle360 = DAngle::fromBam(ANGLE_MAX); +constexpr DAngle DAngle45 = DAngle::fromDeg(45); +constexpr DAngle DAngle90 = DAngle::fromDeg(90); +constexpr DAngle DAngle180 = DAngle::fromDeg(180); +constexpr DAngle DAngle270 = DAngle::fromDeg(270); +constexpr DAngle DAngle360 = DAngle::fromDeg(360); class Plane {