Lines Matching refs:f32
33 typedef f32 ParticleTime;
68 ParticleTime(f32 value)
75 f32 GetFloat32Value() const { return ParticleTimeToFloat32(m_ParticleTime); }
109 f32 GetFractionalParts() const
137 …ParticleTime& operator =(f32 value) { this->m_ParticleTime = Float32ToParticleTime(value); return …
140 …ParticleTime& operator +=(f32 value) { this->m_ParticleTime += Float32ToParticleTime(value); retur…
143 …ParticleTime& operator -=(f32 value) { this->m_ParticleTime -= Float32ToParticleTime(value); retur…
179 static f32 ParticleTimeToFloat32(s32 particleTime)
181 f32 float32 = static_cast<f32>(particleTime);
188 static s32 Float32ToParticleTime(f32 value)
242 ParticleTime(f32 fvalue)
249 f32 GetFloat32Value() const { return m_ParticleTime; }
258 f32 GetParticleTimeValue() const { return m_ParticleTime; }
279 f32 GetFractionalParts() const
303 this->m_ParticleTime = nw::math::FMod(this->m_ParticleTime, static_cast<f32>(value));
307 …ParticleTime& operator =(f32 value) { this->m_ParticleTime = Float32ToParticleTime(value); return …
310 ParticleTime& operator +=(f32 value) { this->m_ParticleTime += value; return *this; }
313 ParticleTime& operator -=(f32 value) { this->m_ParticleTime -= value; return *this; }
341 static f32 ParticleTimeToFloat32(f32 particleTime)
349 static f32 Float32ToParticleTime(f32 value)
355 f32 m_ParticleTime;