OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:noiseValue
(Results
1 - 2
of
2
) sorted by null
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureGeneratorStucci.java
76
float wDelta = 1.0f / halfW, hDelta = 1.0f / halfH, dDelta = 1.0f / halfD,
noiseValue
, ofs;;
88
noiseValue
= NoiseGenerator.NoiseFunctions.noise(texvec[0], texvec[1], texvec[2], noisesize, 0, noisebasis, isHard);
91
ofs *=
noiseValue
*
noiseValue
;
/external/webkit/Source/WebCore/platform/graphics/filters/
FETurbulence.cpp
219
inline void checkNoise(int&
noiseValue
, int limitValue, int newValue)
221
if (
noiseValue
>= limitValue)
222
noiseValue
-= newValue;
223
if (
noiseValue
>= limitValue - 1)
224
noiseValue
-= newValue - 1;
Completed in 158 milliseconds