A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
AnmObj.cc
1#include "AnmObj.hh"
2
3#include <cmath>
4
5namespace Abstract {
6namespace g3d {
7
9f32 PlayPolicy_Onetime(f32 /*start*/, f32 /*end*/, f32 frame) {
10 return frame;
11}
12
14f32 PlayPolicy_Loop(f32 start, f32 end, f32 frame) {
15 ASSERT(end > start);
16
17 f32 length = end - start;
18
19 if (frame >= 0.0f) {
20 return ::fmodf(frame, length);
21 }
22
23 f32 offset = ::fmodf(frame + length, length);
24
25 return offset >= 0.0f ? offset : offset + length;
26}
27
28f32 FrameCtrl::s_baseUpdateRate = 1.0f;
29
30} // namespace g3d
31} // namespace Abstract
An abstraction of components from the nw4r and RVL libraries.
Definition Archive.cc:5