Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/system/PseudoNoise.h
| Show All 25 Lines | |||||
| #ifdef WITH_CXX_GUARDEDALLOC | #ifdef WITH_CXX_GUARDEDALLOC | ||||
| # include "MEM_guardedalloc.h" | # include "MEM_guardedalloc.h" | ||||
| #endif | #endif | ||||
| namespace Freestyle { | namespace Freestyle { | ||||
| class PseudoNoise { | class PseudoNoise { | ||||
| public: | public: | ||||
| PseudoNoise(); | |||||
| virtual ~PseudoNoise() | virtual ~PseudoNoise() | ||||
| { | { | ||||
| } | } | ||||
| real smoothNoise(real x); | real smoothNoise(real x); | ||||
| real linearNoise(real x); | real linearNoise(real x); | ||||
| real turbulenceSmooth(real x, unsigned nbOctave = 8); | real turbulenceSmooth(real x, unsigned nbOctave = 8); | ||||
| Show All 14 Lines | |||||