diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-10-21 18:30:16 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-10-21 18:30:16 +0100 |
commit | 56100b1c4cb02db7608763dddd77f8052a533dae (patch) | |
tree | ea8322a78134e1eb9ecca3e34672313cb5740ad5 /game/network/link.cpp | |
parent | Randomise for many trees, positions, rotations (diff) | |
download | ilt-56100b1c4cb02db7608763dddd77f8052a533dae.tar.bz2 ilt-56100b1c4cb02db7608763dddd77f8052a533dae.tar.xz ilt-56100b1c4cb02db7608763dddd77f8052a533dae.zip |
Further template maths functions
Diffstat (limited to 'game/network/link.cpp')
-rw-r--r-- | game/network/link.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/game/network/link.cpp b/game/network/link.cpp index 745896c..79af92a 100644 --- a/game/network/link.cpp +++ b/game/network/link.cpp @@ -46,7 +46,7 @@ LinkCurve::positionAt(float dist, unsigned char start) const const auto es {std::make_pair(ends[start].node.get(), ends[1 - start].node.get())}; const auto as {std::make_pair(arc[start], arc[1 - start])}; const auto ang {as.first + ((as.second - as.first) * frac)}; - const auto relPos {(sincosf(ang) || 0.F) * radius}; + const auto relPos {(sincos(ang) || 0.F) * radius}; const auto relClimb {vehiclePositionOffset() + RelativePosition3D {0, 0, static_cast<RelativeDistance>(es.first->pos.z - centreBase.z) @@ -69,7 +69,7 @@ LinkCurve::intersectRay(const Ray<GlobalPosition3D> & ray) const points.reserve(segCount); for (std::remove_const_t<decltype(step)> swing = {arc.first, centreBase.z - e0p.z}; segCount; swing += step, --segCount) { - points.emplace_back(centreBase + ((sincosf(swing.x) * radius) || swing.y)); + points.emplace_back(centreBase + ((sincos(swing.x) * radius) || swing.y)); } return ray.passesCloseToEdges(points, 1.F); } |