include/noise.h
author Radek Brich <radek.brich@devl.cz>
Fri, 14 Dec 2007 16:51:22 +0100
branchpyrit
changeset 39 7079dcc3bd74
parent 34 28f6e8b9d5d1
child 44 3763b26244f0
permissions -rw-r--r--
ccdemos: put the common code to header files, common_ply.h and common_sdl.h move all ccdemos on octree and make them all realtime (-i argument)

/*
 * Pyrit Ray Tracer
 * file: noise.h
 *
 * Radek Brich, 2006-2007
 */

#ifndef NOISE_H
#define NOISE_H

#include "common.h"

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

#endif