You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
83 lines
2.7 KiB
83 lines
2.7 KiB
/////////////////////////////////////////////////////////////////////////////////////////////////// |
|
// OpenGL Mathematics Copyright (c) 2005 - 2010 G-Truc Creation (www.g-truc.net) |
|
/////////////////////////////////////////////////////////////////////////////////////////////////// |
|
// Created : 2008-03-10 |
|
// Updated : 2008-03-15 |
|
// Licence : This source is under MIT License |
|
// File : gtx_associated_min_max.hpp |
|
/////////////////////////////////////////////////////////////////////////////////////////////////// |
|
// Dependency: |
|
// - GLM core |
|
// - GLM_GTX_extented_min_max |
|
/////////////////////////////////////////////////////////////////////////////////////////////////// |
|
|
|
#ifndef glm_gtx_associated_min_max |
|
#define glm_gtx_associated_min_max |
|
|
|
// Dependency: |
|
#include "../glm.hpp" |
|
|
|
namespace glm |
|
{ |
|
namespace test{ |
|
void main_gtx_associated_min_max(); |
|
}//namespace test |
|
|
|
namespace gtx |
|
{ |
|
//! GLM_GTX_associated_min_max extension: Min and max functions that return associated values not the compared onces. |
|
namespace associated_min_max |
|
{ |
|
//! \brief Min comparison between 2 variables |
|
template<typename genTypeT, typename genTypeU> |
|
genTypeU associatedMin( |
|
const genTypeT& x, const genTypeU& a, |
|
const genTypeT& y, const genTypeU& b); |
|
|
|
//! \brief Min comparison between 3 variables |
|
template<typename genTypeT, typename genTypeU> |
|
genTypeU associatedMin( |
|
const genTypeT& x, const genTypeU& a, |
|
const genTypeT& y, const genTypeU& b, |
|
const genTypeT& z, const genTypeU& c); |
|
|
|
//! \brief Min comparison between 4 variables |
|
template<typename genTypeT, typename genTypeU> |
|
genTypeU associatedMin( |
|
const genTypeT& x, const genTypeU& a, |
|
const genTypeT& y, const genTypeU& b, |
|
const genTypeT& z, const genTypeU& c, |
|
const genTypeT& w, const genTypeU& d); |
|
|
|
//! \brief Max comparison between 2 variables |
|
template<typename genTypeT, typename genTypeU> |
|
genTypeU associatedMax( |
|
const genTypeT& x, const genTypeU& a, |
|
const genTypeT& y, const genTypeU& b); |
|
|
|
//! \brief Max comparison between 3 variables |
|
template<typename genTypeT, typename genTypeU> |
|
genTypeU associatedMax( |
|
const genTypeT& x, const genTypeU& a, |
|
const genTypeT& y, const genTypeU& b, |
|
const genTypeT& z, const genTypeU& c); |
|
|
|
//! \brief Max comparison between 4 variables |
|
template<typename genTypeT, typename genTypeU> |
|
genTypeU associatedMax( |
|
const genTypeT& x, const genTypeU& a, |
|
const genTypeT& y, const genTypeU& b, |
|
const genTypeT& z, const genTypeU& c, |
|
const genTypeT& w, const genTypeU& d); |
|
|
|
}//namespace associated_min_max |
|
|
|
bool test(); |
|
}//namespace gtx |
|
}//namespace glm |
|
|
|
#include "associated_min_max.inl" |
|
|
|
namespace glm{using namespace gtx::associated_min_max;} |
|
|
|
#endif//glm_gtx_associated_min_max
|
|
|