src/noise.h
author Radek Brich <radek.brich@devl.cz>
Sun, 25 Nov 2007 15:50:01 +0100
branchpyrit
changeset 14 fc18ac4833f2
parent 0 3547b885df7e
permissions -rw-r--r--
replace Plane with axis-aligned Box (because infinite Plane is not usable with kd-tree) fix memory leak in KdTree::nearest_intersection rename BBox::R to BBox::H new file: common.h (Eps and Inf constants)

#ifndef NOISE_H
#define NOISE_H

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

#endif