include/noise.h
author Radek Brich <radek.brich@devl.cz>
Fri, 14 Dec 2007 00:05:54 +0100
branchpyrit
changeset 37 5f954c0d34fc
parent 34 28f6e8b9d5d1
child 44 3763b26244f0
permissions -rw-r--r--
octree traversal rewritten to avoid recursion reenabled -O3 optimizations (was accidentaly disabled, now it traces even faster! :-)) realtime_bunny: added FPS counter, fixed a bug in ply loader min3 and max3 templates added to common.h

/*
 * 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