2011-04-21 11:27:05 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net)
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Created : 2011-04-21
|
|
|
|
// Updated : 2011-04-21
|
|
|
|
// Licence : This source is under MIT licence
|
|
|
|
// File : test/gtx/noise.cpp
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include <glm/glm.hpp>
|
|
|
|
#include <glm/gtx/noise.hpp>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2011-04-21 16:20:56 +00:00
|
|
|
float ValueSNoise2D = glm::snoise(glm::vec2(0.5f));
|
2011-04-21 11:27:05 +00:00
|
|
|
}
|