noise/fwd: rename base to forward

all it's doing is holding trivial fundamental typedefs anyway
This commit is contained in:
Danny Robson 2015-09-09 18:21:26 +10:00
parent c3c1b9cc39
commit 0e836b951f
6 changed files with 7 additions and 7 deletions

View File

@ -17,7 +17,7 @@
#ifndef __UTIL_NOISE_BASIS_PATCH_HPP
#define __UTIL_NOISE_BASIS_PATCH_HPP
#include "../basis.hpp"
#include "../fwd.hpp"
#include "../../point.hpp"
namespace util { namespace noise { namespace basis {

View File

@ -18,7 +18,7 @@
#ifndef __UTIL_NOISE_BASIS_PERLIN_HPP
#define __UTIL_NOISE_BASIS_PERLIN_HPP
#include "../basis.hpp"
#include "../fwd.hpp"
#include "../../point.hpp"
#include "../../range.hpp"

View File

@ -18,7 +18,7 @@
#ifndef __UTIL_NOISE_BASIS_RUNTIME_HPP
#define __UTIL_NOISE_BASIS_RUNTIME_HPP
#include "../basis.hpp"
#include "../fwd.hpp"
#include "../../point.hpp"
#include "../../range.hpp"

View File

@ -18,7 +18,7 @@
#ifndef __UTIL_NOISE_BASIS_VALUE_HPP
#define __UTIL_NOISE_BASIS_VALUE_HPP
#include "../basis.hpp"
#include "../fwd.hpp"
#include "../../range.hpp"
#include "../../point.hpp"

View File

@ -18,7 +18,7 @@
#ifndef __UTIL_NOISE_BASIS_WORLEY_HPP
#define __UTIL_NOISE_BASIS_WORLEY_HPP
#include "../basis.hpp"
#include "../fwd.hpp"
#include "../../point.hpp"
#include "../../range.hpp"

View File

@ -14,8 +14,8 @@
* Copyright 2012-2015 Danny Robson <danny@nerdcruft.net>
*/
#ifndef __UTIL_NOISE_BASIS_HPP
#define __UTIL_NOISE_BASIS_HPP
#ifndef __UTIL_NOISE_FWD_HPP
#define __UTIL_NOISE_FWD_HPP
#include <cstdint>