Sha256: d8f69b9d914cfb4ce912bbe19c544937432b36ea48f34b0e5a02c5e4a9467a41
Contents?: true
Size: 568 Bytes
Versions: 8
Compression:
Stored size: 568 Bytes
Contents
// -*- c++ -*- #pragma once #ifndef __RAYS_UTIL_H__ #define __RAYS_UTIL_H__ #include <rays/defs.h> namespace Rays { struct Coord3; coord perlin (coord x); coord perlin (coord x, coord y); coord perlin (coord x, coord y, coord z); coord perlin (coord x, coord y, coord z, coord w); coord perlin (const Coord3& position); coord simplex (coord x); coord simplex (coord x, coord y); coord simplex (coord x, coord y, coord z); coord simplex (coord x, coord y, coord z, coord w); coord simplex (const Coord3& position); }// Rays #endif//EOH
Version data entries
8 entries across 8 versions & 1 rubygems