Home
last modified time | relevance | path

Searched refs:m_Velocity (Results 1 – 2 of 2) sorted by relevance

/CTR-SDK-4.2.7-SampleDemos/common/libraries/demo/Body/
Ddemo_Particle.cpp37 m_Position(s_InitialPosition), m_Velocity(s_InitialVelocity), in Particle()
96 m_Velocity += deltaVec; in Update()
97 nn::math::VEC3Scale(&deltaVec, &m_Velocity, time); in Update()
109m_Velocity.x = s_RandomVelocityScale.x * (static_cast<f32>(::std::rand() % 256) / 256.0f - 0.5f) +… in Spawn()
110m_Velocity.y = s_RandomVelocityScale.y * (static_cast<f32>(::std::rand() % 256) / 256.0f - 0.5f) +… in Spawn()
111m_Velocity.z = s_RandomVelocityScale.z * (static_cast<f32>(::std::rand() % 256) / 256.0f - 0.5f) +… in Spawn()
/CTR-SDK-4.2.7-SampleDemos/common/include/demo/Body/
Ddemo_Particle.h59 nn::math::Vector3 m_Velocity; variable