summaryrefslogtreecommitdiffstats
path: root/src/control/Script5.cpp
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2021-05-27 15:53:50 +0200
committerSergeanur <s.anureev@yandex.ua>2021-06-24 20:32:43 +0200
commita11bf19b9341a77ce57ba8bd00eb0bf5d2dcc7a8 (patch)
tree2577a11bb5507a14fdfdbcb74ab79912e0969a98 /src/control/Script5.cpp
parentFix IsSphereVisible calls (diff)
downloadre3-a11bf19b9341a77ce57ba8bd00eb0bf5d2dcc7a8.tar
re3-a11bf19b9341a77ce57ba8bd00eb0bf5d2dcc7a8.tar.gz
re3-a11bf19b9341a77ce57ba8bd00eb0bf5d2dcc7a8.tar.bz2
re3-a11bf19b9341a77ce57ba8bd00eb0bf5d2dcc7a8.tar.lz
re3-a11bf19b9341a77ce57ba8bd00eb0bf5d2dcc7a8.tar.xz
re3-a11bf19b9341a77ce57ba8bd00eb0bf5d2dcc7a8.tar.zst
re3-a11bf19b9341a77ce57ba8bd00eb0bf5d2dcc7a8.zip
Diffstat (limited to '')
-rw-r--r--src/control/Script5.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/control/Script5.cpp b/src/control/Script5.cpp
index 464a77d8..c83c3edc 100644
--- a/src/control/Script5.cpp
+++ b/src/control/Script5.cpp
@@ -948,10 +948,10 @@ void CRunningScript::PlayerInAngledAreaCheckCommand(int32 command, uint32* pIp)
initAngle -= TWOPI;
// it looks like the idea is to use a rectangle using the diagonal of the rectangle as
// the side of new rectangle, with "length" being the length of second side
- float rotatedSupX = supX + side2length * sin(initAngle);
- float rotatedSupY = supY - side2length * cos(initAngle);
- float rotatedInfX = infX + side2length * sin(initAngle);
- float rotatedInfY = infY - side2length * cos(initAngle);
+ float rotatedSupX = supX + side2length * Sin(initAngle);
+ float rotatedSupY = supY - side2length * Cos(initAngle);
+ float rotatedInfX = infX + side2length * Sin(initAngle);
+ float rotatedInfY = infY - side2length * Cos(initAngle);
float side1X = supX - infX;
float side1Y = supY - infY;
float side1Length = CVector2D(side1X, side1Y).Magnitude();