OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:colorbandIndex
(Results
1 - 10
of
10
) sorted by null
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureGeneratorNoise.java
85
int
colorbandIndex
= (int) (texres.intensity * 1000.0f);
86
texres.red = colorBand[
colorbandIndex
][0];
87
texres.green = colorBand[
colorbandIndex
][1];
88
texres.blue = colorBand[
colorbandIndex
][2];
94
data[index++] = (byte) (colorBand[
colorbandIndex
][3] * 255.0f);
TextureGeneratorClouds.java
96
int
colorbandIndex
= (int) (texres.intensity * 1000.0f);
97
texres.red = colorBand[
colorbandIndex
][0];
98
texres.green = colorBand[
colorbandIndex
][1];
99
texres.blue = colorBand[
colorbandIndex
][2];
105
data[index++] = (byte) (colorBand[
colorbandIndex
][3] * 255.0f);
TextureGeneratorDistnoise.java
87
int
colorbandIndex
= (int) (texres.intensity * 1000.0f);
88
texres.red = colorBand[
colorbandIndex
][0];
89
texres.green = colorBand[
colorbandIndex
][1];
90
texres.blue = colorBand[
colorbandIndex
][2];
96
data[index++] = (byte) (colorBand[
colorbandIndex
][3] * 255.0f);
TextureGeneratorMarble.java
84
int
colorbandIndex
= (int) (texres.intensity * 1000.0f);
85
texres.red = colorBand[
colorbandIndex
][0];
86
texres.green = colorBand[
colorbandIndex
][1];
87
texres.blue = colorBand[
colorbandIndex
][2];
93
data[index++] = (byte) (colorBand[
colorbandIndex
][3] * 255.0f);
TextureGeneratorMusgrave.java
94
int
colorbandIndex
= (int) (texres.intensity * 1000.0f);
95
texres.red = colorBand[
colorbandIndex
][0];
96
texres.green = colorBand[
colorbandIndex
][1];
97
texres.blue = colorBand[
colorbandIndex
][2];
103
data[index++] = (byte) (colorBand[
colorbandIndex
][3] * 255.0f);
TextureGeneratorStucci.java
96
int
colorbandIndex
= (int) (texres.intensity * 1000.0f);
97
texres.red = colorBand[
colorbandIndex
][0];
98
texres.green = colorBand[
colorbandIndex
][1];
99
texres.blue = colorBand[
colorbandIndex
][2];
100
texres.alpha = colorBand[
colorbandIndex
][3];
TextureGeneratorBlend.java
143
int
colorbandIndex
= (int) (texres.intensity * 1000.0f);
144
texres.red = colorBand[
colorbandIndex
][0];
145
texres.green = colorBand[
colorbandIndex
][1];
146
texres.blue = colorBand[
colorbandIndex
][2];
152
data[index++] = (byte) (colorBand[
colorbandIndex
][3] * 255.0f);
TextureGeneratorMagic.java
149
int
colorbandIndex
= (int) (texres.intensity * 1000.0f);
150
texres.red = colorBand[
colorbandIndex
][0];
151
texres.green = colorBand[
colorbandIndex
][1];
152
texres.blue = colorBand[
colorbandIndex
][2];
153
texres.alpha = colorBand[
colorbandIndex
][3];
TextureGeneratorVoronoi.java
109
int
colorbandIndex
= (int) (texres.intensity * 1000.0f);
110
texres.red = colorBand[
colorbandIndex
][0];
111
texres.green = colorBand[
colorbandIndex
][1];
112
texres.blue = colorBand[
colorbandIndex
][2];
113
texres.alpha = colorBand[
colorbandIndex
][3];
TextureGeneratorWood.java
98
int
colorbandIndex
= (int) (texres.intensity * 1000.0f);
99
texres.red = colorBand[
colorbandIndex
][0];
100
texres.green = colorBand[
colorbandIndex
][1];
101
texres.blue = colorBand[
colorbandIndex
][2];
108
data[index++] = (byte) (colorBand[
colorbandIndex
][3] * 255.0f);
Completed in 37 milliseconds