OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:rotationChannel
(Results
1 - 8
of
8
) sorted by null
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/renderers/
BillboardControllerRenderData.java
11
rotationChannel
;
ModelInstanceControllerRenderData.java
13
rotationChannel
;
PointSpriteControllerRenderData.java
11
rotationChannel
;
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/influencers/
ParticleControllerFinalizerInfluencer.java
14
FloatChannel positionChannel, scaleChannel,
rotationChannel
;
26
rotationChannel
= controller.particles.getChannel(ParticleChannels.Rotation3D);
28
hasRotation =
rotationChannel
!= null;
45
int rotationOffset = i*
rotationChannel
.strideSize;
46
qx =
rotationChannel
.data[rotationOffset + ParticleChannels.XOffset];
47
qy =
rotationChannel
.data[rotationOffset + ParticleChannels.YOffset];
48
qz =
rotationChannel
.data[rotationOffset + ParticleChannels.ZOffset];
49
qw =
rotationChannel
.data[rotationOffset + ParticleChannels.WOffset];
DynamicsInfluencer.java
19
rotationChannel
, angularVelocityChannel;
56
rotationChannel
= controller.particles.addChannel(ParticleChannels.Rotation2D);
63
rotationChannel
= controller.particles.addChannel(ParticleChannels.Rotation3D);
101
for(int i=startIndex*
rotationChannel
.strideSize, c = i +count*
rotationChannel
.strideSize; i< c; i+=
rotationChannel
.strideSize){
102
rotationChannel
.data[i+ParticleChannels.CosineOffset] = 1;
103
rotationChannel
.data[i+ParticleChannels.SineOffset] = 0;
108
for(int i=startIndex*
rotationChannel
.strideSize, c = i +count*
rotationChannel
.strideSize; i< c; i+= rotationChannel.strideSize)
[
all
...]
DynamicsModifier.java
25
FloatChannel
rotationChannel
, accellerationChannel;
34
rotationChannel
= controller.particles.addChannel(ParticleChannels.Rotation3D);
40
for(int i=0, accelOffset = 0, c = i +controller.particles.size *
rotationChannel
.strideSize;
42
i +=
rotationChannel
.strideSize, accelOffset += accellerationChannel.strideSize){
52
rotationChannel
.data[i +ParticleChannels.XOffset] = TMP_Q.x;
53
rotationChannel
.data[i +ParticleChannels.YOffset] = TMP_Q.y;
54
rotationChannel
.data[i +ParticleChannels.ZOffset] = TMP_Q.z;
55
rotationChannel
.data[i +ParticleChannels.WOffset] = TMP_Q.w;
216
FloatChannel
rotationChannel
, rotationalForceChannel;
227
rotationChannel
= controller.particles.addChannel(ParticleChannels.Rotation3D)
[
all
...]
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/batches/
PointSpriteParticleBatch.java
108
FloatChannel
rotationChannel
= data.
rotationChannel
;
115
int rotationOffset = p*
rotationChannel
.strideSize;
125
vertices[offset + CPU_SIZE_AND_ROTATION_OFFSET+1] =
rotationChannel
.data[rotationOffset + ParticleChannels.CosineOffset];
126
vertices[offset + CPU_SIZE_AND_ROTATION_OFFSET+2] =
rotationChannel
.data[rotationOffset + ParticleChannels.SineOffset];
BillboardParticleBatch.java
378
FloatChannel
rotationChannel
= data.
rotationChannel
;
385
int rotationOffset = p*
rotationChannel
.strideSize;
399
float cosRotation =
rotationChannel
.data[rotationOffset +ParticleChannels.CosineOffset];
400
float sinRotation =
rotationChannel
.data[rotationOffset +ParticleChannels.SineOffset];
423
FloatChannel
rotationChannel
= data.
rotationChannel
;
431
int rotationOffset = p*
rotationChannel
.strideSize;
446
float cosRotation =
rotationChannel
.data[rotationOffset +ParticleChannels.CosineOffset];
447
float sinRotation =
rotationChannel
.data[rotationOffset +ParticleChannels.SineOffset]
[
all
...]
Completed in 3794 milliseconds