src/noise.h
author Radek Brich <radek.brich@devl.cz>
Sun, 25 Nov 2007 17:58:29 +0100
branchpyrit
changeset 15 a0a3e334744f
parent 0 3547b885df7e
permissions -rw-r--r--
C++ demos: prepare infrastructure, add spheres_shadow.cc rename Ray::a to Ray::o KdNode::shapes changed to pointer and added to union together with *children (to save memory)

#ifndef NOISE_H
#define NOISE_H

double perlin(double x, double y, double z);

#endif