Tiled 3D Amortized Noise
A Program to Generate Infinite3D Grayscale Noise Textures with Amortized Noise
Main Page
Classes
Files
File List
File Members
All
Classes
Files
Functions
Variables
Macros
Pages
defines.h
Go to the documentation of this file.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once
17
18
#if defined(_MSC_VER) //Windows Visual Studio
19
20
#include <windows.h>
//for timeGetTime() mainly
21
#include <conio.h>
//for _getch()
22
#pragma warning(disable : 4996) //disable annoying security warnings for stdio functions
23
24
#else//other OS
25
26
#include <time.h>
27
#define MAX_PATH 256
28
29
#endif
Generated on Wed May 7 2014 19:41:09 for Tiled 3D Amortized Noise by
1.8.2