Lines Matching refs:VEC3

121 VEC3Normalize(nn::math::VEC3* pIn)  in VEC3Normalize()
147 VEC3ArrayAddScalar(nw::math::VEC3* /*array*/, nw::math::VEC3* /*scalar*/, u32 /*countDiv12*/) in VEC3ArrayAddScalar() argument
200 nw::math::VEC3* /*arrayTarget*/, // r0 in VEC3ArrayAddVEC3Array() argument
201 nw::math::VEC3* /*arrayAdd*/, // r1 in VEC3ArrayAddVEC3Array()
638 const nw::math::VEC3* positions, in SetDefaultValues()
663 …nw::math::VEC3* translate = (nw::math::VEC3*)collection->GetStreamPtr(PARTICLEUSAGE_TRANSLATE, PAR… in SetDefaultValues()
666 …nw::math::VEC3* velocity = (nw::math::VEC3*)collection->GetStreamPtr(PARTICLEUSAGE_VELOCITY, PARTI… in SetDefaultValues()
713 const nw::math::VEC3* const positions, in AddParticles()
773 math::VEC3* translate = in AddParticles()
774 … (math::VEC3*)collection->GetStreamPtr(PARTICLEUSAGE_TRANSLATE, PARTICLE_BUFFER_FRONT); in AddParticles()
776 math::VEC3* velocity = in AddParticles()
777 … (math::VEC3*)collection->GetStreamPtr(PARTICLEUSAGE_VELOCITY, PARTICLE_BUFFER_FRONT); in AddParticles()
792 math::VEC3* parentTranslate = in AddParticles()
793 (math::VEC3*)parentParticleSet->GetParticleCollection()->GetStreamPtr( in AddParticles()
798 math::VEC3* translate = in AddParticles()
799 (math::VEC3*)collection->GetStreamPtr(PARTICLEUSAGE_TRANSLATE, PARTICLE_BUFFER_FRONT); in AddParticles()
801 math::VEC3* velocity = in AddParticles()
802 (math::VEC3*)collection->GetStreamPtr(PARTICLEUSAGE_VELOCITY, PARTICLE_BUFFER_FRONT); in AddParticles()
889 …nw::math::VEC3* velocity = (nw::math::VEC3*)collection->GetStreamPtr(PARTICLEUSAGE_VELOCITY, PARTI… in AddParticles()
1025 nw::math::VEC3* storagePtr = (nw::math::VEC3*)targetStream; in InitializeParticles()
1028 const nw::math::VEC3 value = vec3Initializer.GetImmediateValue(); in InitializeParticles()
1081 nw::math::VEC3* storagePtr = (nw::math::VEC3*)targetStream; in InitializeParticles()
1084 const nw::math::VEC3 direction = velInitializer.GetDirection(); in InitializeParticles()
1087 nw::math::VEC3 velocity = direction; in InitializeParticles()
1109 nw::math::VEC3* storagePtr = (nw::math::VEC3*)targetStream; in InitializeParticles()
1112 const nw::math::VEC3 direction = velInitializer.GetDirection(); in InitializeParticles()
1152 nw::math::VEC3 velocity; in InitializeParticles()
1168 nw::math::VEC3 tempv; in InitializeParticles()
1202 nw::math::VEC3* storagePtr = (nw::math::VEC3*)targetStream; in InitializeParticles()
1205 …nw::math::VEC3* trans = (nw::math::VEC3*)collection->GetStreamPtr(PARTICLEUSAGE_TRANSLATE, PARTICL… in InitializeParticles()
1216 nw::math::VEC3 velocity = trans[index]; in InitializeParticles()
1217 velocity.SafeNormalize(nw::math::VEC3(0, 0, 0)); in InitializeParticles()
1233 nw::math::VEC3* storagePtr = (nw::math::VEC3*)targetStream; in InitializeParticles()
1244 nw::math::VEC3 velocity(0.0f, 0.0f, 0.0f); in InitializeParticles()
1282 nw::math::VEC3* storagePtr = (nw::math::VEC3*)targetStream; in InitializeParticles()
1285 …nw::math::VEC3* trans = (nw::math::VEC3*)collection->GetStreamPtr(PARTICLEUSAGE_TRANSLATE, PARTICL… in InitializeParticles()
1295 nw::math::VEC3 velocity(trans[index].x, 0.0f, trans[index].z); in InitializeParticles()
1296 velocity.SafeNormalize(nw::math::VEC3(0, 0, 0)); in InitializeParticles()
1312 nw::math::VEC3* storagePtr = (nw::math::VEC3*)targetStream; in InitializeParticles()
1315 const nw::math::VEC3 baseValue = vec3Initializer.GetBaseValue(); in InitializeParticles()
1324 nw::math::VEC3 value(baseValue); in InitializeParticles()
1349 nw::math::VEC3* storagePtr = (nw::math::VEC3*)targetStream; in InitializeParticles()
1352 const nw::math::VEC3 baseValue = vec3Initializer.GetBaseValue(); in InitializeParticles()
1353 const nw::math::VEC3 random = vec3Initializer.GetRandom(); in InitializeParticles()
1361 nw::math::VEC3 value(baseValue); in InitializeParticles()
1397 nw::math::VEC3* storagePtr = (nw::math::VEC3*)targetStream; in InitializeParticles()
1551 …nw::math::VEC3* storagePtr = (nw::math::VEC3*)collection->GetStreamPtr(target, PARTICLE_BUFFER_FRO… in ParticleAccelarationUpdater()
1744 nw::math::VEC3* storagePtr, in ParticleGravityUpdater()
1757 nw::math::VEC3 velocity = gravUpdater.GetDirection(); in ParticleGravityUpdater()
1761 velocity.SafeNormalize(nw::math::VEC3(0, -1, 0)); in ParticleGravityUpdater()
1785 …nw::math::VEC3* storagePtr = (nw::math::VEC3*)collection->GetStreamPtr(target, PARTICLE_BUFFER_FRO… in ParticleSpinUpdater()
1788 const nw::math::VEC3 axis = spinUpdater.GetAxis(); in ParticleSpinUpdater()
1796 nw::math::VEC3 value; in ParticleSpinUpdater()
1833 …nw::math::VEC3* storagePtr = (nw::math::VEC3*)collection->GetStreamPtr(target, PARTICLE_BUFFER_FRO… in ParticleRandomUpdater()
1846 const nw::math::VEC3 power = randomUpdater.GetPower() * processCount; in ParticleRandomUpdater()
1858 const nw::math::VEC3 power = randomUpdater.GetPower() * processCount; in ParticleRandomUpdater()
1860 nw::math::VEC3 value; in ParticleRandomUpdater()
2014 …nw::math::VEC3* storagePtr = (nw::math::VEC3*)collection->GetStreamPtr(target, PARTICLE_BUFFER_FRO… in ParticleVector3AdditiveUpdater()
2017 const nw::math::VEC3 defaultValue = vec3Updater.GetDefaultValue(); in ParticleVector3AdditiveUpdater()
2033 register nw::math::VEC3 value; in ParticleVector3AdditiveUpdater()
2136 …nw::math::VEC3* storagePtr = (nw::math::VEC3*)collection->GetStreamPtr(target, PARTICLE_BUFFER_FRO… in ParticleVector3ImmediateUpdater()
2139 const nw::math::VEC3 defaultValue = vec3Updater.GetDefaultValue(); in ParticleVector3ImmediateUpdater()
2144 nw::math::VEC3 value = defaultValue; in ParticleVector3ImmediateUpdater()
2242 …nw::math::VEC3* storagePtr = (nw::math::VEC3*)collection->GetStreamPtr(target, PARTICLE_BUFFER_FRO… in ParticleVector3RandomAdditiveUpdater()
2245 const nw::math::VEC3 defaultValue = vec3Updater.GetDefaultValue(); in ParticleVector3RandomAdditiveUpdater()
2250 nw::math::VEC3 value = defaultValue; in ParticleVector3RandomAdditiveUpdater()
2325 nw::math::VEC3* storagePtr = in ParticleRotateUpVectorUpdater()
2326 (nw::math::VEC3*)collection->GetStreamPtr(PARTICLEUSAGE_ROTATE, PARTICLE_BUFFER_FRONT); in ParticleRotateUpVectorUpdater()
2335 nw::math::VEC3* srcStoragePtr = in ParticleRotateUpVectorUpdater()
2336 … (nw::math::VEC3*)collection->GetStreamPtr(PARTICLEUSAGE_VELOCITY, PARTICLE_BUFFER_FRONT); in ParticleRotateUpVectorUpdater()
2341 nw::math::VEC3 ySrcAxis = srcStoragePtr[index]; in ParticleRotateUpVectorUpdater()
2360 nw::math::VEC3* srcStoragePtr = in ParticleRotateUpVectorUpdater()
2361 … (nw::math::VEC3*)collection->GetStreamPtr(PARTICLEUSAGE_TRANSLATE, PARTICLE_BUFFER_FRONT); in ParticleRotateUpVectorUpdater()
2362 nw::math::VEC3* optionStoragePtr = in ParticleRotateUpVectorUpdater()
2363 … (nw::math::VEC3*)collection->GetStreamPtr(PARTICLEUSAGE_TRANSLATE, PARTICLE_BUFFER_BACK); in ParticleRotateUpVectorUpdater()
2368 nw::math::VEC3 ySrcAxis = srcStoragePtr[index]; in ParticleRotateUpVectorUpdater()
2536 nw::math::VEC3* translate = in ParticleChildUpdater()
2537 … (nw::math::VEC3*)collection->GetStreamPtr(PARTICLEUSAGE_TRANSLATE, PARTICLE_BUFFER_FRONT); in ParticleChildUpdater()
2539 nw::math::VEC3* rotate; in ParticleChildUpdater()
2540 nw::math::VEC3 rotateParam; in ParticleChildUpdater()
2543 nw::math::VEC3* scale; in ParticleChildUpdater()
2544 nw::math::VEC3 scaleParam; in ParticleChildUpdater()
2550 nw::math::VEC3* positionsHead = particleContext->GetEmissionPositionWork(); in ParticleChildUpdater()
2568 …nw::math::VEC3* targetTranslate = (nw::math::VEC3*)targetCollection->GetStreamPtr(PARTICLEUSAGE_TR… in ParticleChildUpdater()
2572 nw::math::VEC3* targetVelocity = NULL; in ParticleChildUpdater()
2577 …targetVelocity = (nw::math::VEC3*)targetCollection->GetStreamPtr(PARTICLEUSAGE_VELOCITY, PARTICLE_… in ParticleChildUpdater()
2603 nw::math::VEC3* newPositions = &positionsHead[newParticleCount]; in ParticleChildUpdater()
2843 … ParticleGravityUpdater((nw::math::VEC3*)targetStream, updater.ptr(), collection, diffTime); in UpdateParticles()
2867 nw::math::VEC3* storagePtr = (nw::math::VEC3*)targetStream; in UpdateParticles()
2870 nw::math::VEC3 defaultValue = vec3Updater.GetDefaultValue(); in UpdateParticles()
2893 const nw::math::VEC3 defaultValue = vec3Updater.GetDefaultValue(); in UpdateParticles()
2895 nw::math::VEC3* storagePtr = (nw::math::VEC3*)targetStream; in UpdateParticles()
2920 const nw::math::VEC3 defaultValue = vec3Updater.GetDefaultValue(); in UpdateParticles()
2922 nw::math::VEC3* storagePtr = (nw::math::VEC3*)targetStream; in UpdateParticles()
2986 math::VEC3* trans = in UpdateParticles()
2987 … (math::VEC3*)collection->GetStreamPtr(PARTICLEUSAGE_TRANSLATE, PARTICLE_BUFFER_FRONT); in UpdateParticles()
2989 math::VEC3* velocity = in UpdateParticles()
2990 … (math::VEC3*)collection->GetStreamPtr(PARTICLEUSAGE_VELOCITY, PARTICLE_BUFFER_FRONT); in UpdateParticles()