sources:


website:
more info here


screenshot:
studies/grafik2/Computergrafik-Code9/Aufgabe25/noise.h
download file

  1 //
  2 // Computergraphik II
  3 // Prof. Dr. Juergen Doellner
  4 // Wintersemester 2001/02
  5 //
  6 // Rahmenprogramm zu Aufgabenzettel 9
  7 //
  8
  9 #ifndef CG_NOISE_H
 10 #define CG_NOISE_H
 11
 12 #include "cgapplication.h"
 13 #include "vector.h"
 14
 15 class Noise {
 16 public:
 17     Noise() { };
 18    
 19     static float turbulence(float point[3], float lofreq, float hifreq);
 20     static float noise3(float vec[3]);
 21     static void init();
 22 };
 23
 24 #endif
 25
 26