![]() |
Cinder
0.9.1
|
#include "func_vector_relational.hpp"
#include "type_vec2.hpp"
#include "type_vec3.hpp"
#include "type_vec4.hpp"
#include "_vectorize.hpp"
#include <limits>
Namespaces | |
glm | |
glm::detail | |
Functions | |
template<> | |
GLM_FUNC_QUALIFIER int32 | glm::abs (int32 x) |
template<typename genFIType > | |
GLM_FUNC_QUALIFIER genFIType | glm::abs (genFIType x) |
template<typename T , precision P, template< typename, precision > class vecType> | |
GLM_FUNC_QUALIFIER vecType< T, P > | glm::abs (vecType< T, P > const &x) |
template<typename genFIType > | |
GLM_FUNC_QUALIFIER genFIType | glm::sign (genFIType x) |
template<typename T , precision P, template< typename, precision > class vecType> | |
GLM_FUNC_QUALIFIER vecType< T, P > | glm::sign (vecType< T, P > const &x) |
template<typename T , precision P, template< typename, precision > class vecType> | |
GLM_FUNC_QUALIFIER vecType< T, P > | glm::floor (vecType< T, P > const &x) |
template<typename genType > | |
GLM_FUNC_QUALIFIER genType | glm::trunc (genType x) |
template<typename T , precision P, template< typename, precision > class vecType> | |
GLM_FUNC_QUALIFIER vecType< T, P > | glm::trunc (vecType< T, P > const &x) |
template<typename genType > | |
GLM_FUNC_QUALIFIER genType | glm::round (genType x) |
template<typename T , precision P, template< typename, precision > class vecType> | |
GLM_FUNC_QUALIFIER vecType< T, P > | glm::round (vecType< T, P > const &x) |
template<typename genType > | |
GLM_FUNC_QUALIFIER genType | glm::roundEven (genType x) |
template<typename T , precision P, template< typename, precision > class vecType> | |
GLM_FUNC_QUALIFIER vecType< T, P > | glm::roundEven (vecType< T, P > const &x) |
template<typename T , precision P, template< typename, precision > class vecType> | |
GLM_FUNC_QUALIFIER vecType< T, P > | glm::ceil (vecType< T, P > const &x) |
template<typename genType > | |
GLM_FUNC_QUALIFIER genType | glm::fract (genType x) |
template<typename T , precision P, template< typename, precision > class vecType> | |
GLM_FUNC_QUALIFIER vecType< T, P > | glm::fract (vecType< T, P > const &x) |
template<typename genType > | |
GLM_FUNC_QUALIFIER genType | glm::mod (genType x, genType y) |
template<typename T , precision P, template< typename, precision > class vecType> | |
GLM_FUNC_QUALIFIER vecType< T, P > | glm::mod (vecType< T, P > const &x, T y) |
template<typename T , precision P, template< typename, precision > class vecType> | |
GLM_FUNC_QUALIFIER vecType< T, P > | glm::mod (vecType< T, P > const &x, vecType< T, P > const &y) |
template<typename genType > | |
GLM_FUNC_QUALIFIER genType | glm::modf (genType x, genType &i) |
template<typename T , precision P> | |
GLM_FUNC_QUALIFIER tvec1< T, P > | glm::modf (tvec1< T, P > const &x, tvec1< T, P > &i) |
template<typename T , precision P> | |
GLM_FUNC_QUALIFIER tvec2< T, P > | glm::modf (tvec2< T, P > const &x, tvec2< T, P > &i) |
template<typename T , precision P> | |
GLM_FUNC_QUALIFIER tvec3< T, P > | glm::modf (tvec3< T, P > const &x, tvec3< T, P > &i) |
template<typename T , precision P> | |
GLM_FUNC_QUALIFIER tvec4< T, P > | glm::modf (tvec4< T, P > const &x, tvec4< T, P > &i) |
template<typename genType > | |
GLM_FUNC_QUALIFIER genType | glm::min (genType x, genType y) |
template<typename T , precision P, template< typename, precision > class vecType> | |
GLM_FUNC_QUALIFIER vecType< T, P > | glm::min (vecType< T, P > const &a, T b) |
template<typename T , precision P, template< typename, precision > class vecType> | |
GLM_FUNC_QUALIFIER vecType< T, P > | glm::min (vecType< T, P > const &a, vecType< T, P > const &b) |
template<typename genType > | |
GLM_FUNC_QUALIFIER genType | glm::max (genType x, genType y) |
template<typename T , precision P, template< typename, precision > class vecType> | |
GLM_FUNC_QUALIFIER vecType< T, P > | glm::max (vecType< T, P > const &a, T b) |
template<typename T , precision P, template< typename, precision > class vecType> | |
GLM_FUNC_QUALIFIER vecType< T, P > | glm::max (vecType< T, P > const &a, vecType< T, P > const &b) |
template<typename genType > | |
GLM_FUNC_QUALIFIER genType | glm::clamp (genType x, genType minVal, genType maxVal) |
template<typename T , precision P, template< typename, precision > class vecType> | |
GLM_FUNC_QUALIFIER vecType< T, P > | glm::clamp (vecType< T, P > const &x, T minVal, T maxVal) |
template<typename T , precision P, template< typename, precision > class vecType> | |
GLM_FUNC_QUALIFIER vecType< T, P > | glm::clamp (vecType< T, P > const &x, vecType< T, P > const &minVal, vecType< T, P > const &maxVal) |
template<typename genTypeT , typename genTypeU > | |
GLM_FUNC_QUALIFIER genTypeT | glm::mix (genTypeT x, genTypeT y, genTypeU a) |
template<typename T , typename U , precision P, template< typename, precision > class vecType> | |
GLM_FUNC_QUALIFIER vecType< T, P > | glm::mix (vecType< T, P > const &x, vecType< T, P > const &y, U a) |
template<typename T , typename U , precision P, template< typename, precision > class vecType> | |
GLM_FUNC_QUALIFIER vecType< T, P > | glm::mix (vecType< T, P > const &x, vecType< T, P > const &y, vecType< U, P > const &a) |
template<typename genType > | |
GLM_FUNC_QUALIFIER genType | glm::step (genType edge, genType x) |
template<template< typename, precision > class vecType, typename T , precision P> | |
GLM_FUNC_QUALIFIER vecType< T, P > | glm::step (T edge, vecType< T, P > const &x) |
template<template< typename, precision > class vecType, typename T , precision P> | |
GLM_FUNC_QUALIFIER vecType< T, P > | glm::step (vecType< T, P > const &edge, vecType< T, P > const &x) |
template<typename genType > | |
GLM_FUNC_QUALIFIER genType | glm::smoothstep (genType edge0, genType edge1, genType x) |
template<typename T , precision P, template< typename, precision > class vecType> | |
GLM_FUNC_QUALIFIER vecType< T, P > | glm::smoothstep (T edge0, T edge1, vecType< T, P > const &x) |
template<typename T , precision P, template< typename, precision > class vecType> | |
GLM_FUNC_QUALIFIER vecType< T, P > | glm::smoothstep (vecType< T, P > const &edge0, vecType< T, P > const &edge1, vecType< T, P > const &x) |
template<typename genType > | |
GLM_FUNC_QUALIFIER bool | glm::isnan (genType x) |
template<typename T , precision P, template< typename, precision > class vecType> | |
GLM_FUNC_QUALIFIER vecType< bool, P > | glm::isnan (vecType< T, P > const &x) |
template<typename genType > | |
GLM_FUNC_QUALIFIER bool | glm::isinf (genType x) |
template<typename T , precision P, template< typename, precision > class vecType> | |
GLM_FUNC_QUALIFIER vecType< bool, P > | glm::isinf (vecType< T, P > const &x) |
GLM_FUNC_DECL int | glm::floatBitsToInt (float const &v) |
template<template< typename, precision > class vecType, precision P> | |
GLM_FUNC_QUALIFIER vecType< int, P > | glm::floatBitsToInt (vecType< float, P > const &v) |
GLM_FUNC_DECL uint | glm::floatBitsToUint (float const &v) |
template<template< typename, precision > class vecType, precision P> | |
GLM_FUNC_QUALIFIER vecType< uint, P > | glm::floatBitsToUint (vecType< float, P > const &v) |
GLM_FUNC_DECL float | glm::intBitsToFloat (int const &v) |
template<template< typename, precision > class vecType, precision P> | |
GLM_FUNC_QUALIFIER vecType< float, P > | glm::intBitsToFloat (vecType< int, P > const &v) |
GLM_FUNC_DECL float | glm::uintBitsToFloat (uint const &v) |
template<template< typename, precision > class vecType, precision P> | |
GLM_FUNC_QUALIFIER vecType< float, P > | glm::uintBitsToFloat (vecType< uint, P > const &v) |
template<typename genType > | |
GLM_FUNC_QUALIFIER genType | glm::fma (genType const &a, genType const &b, genType const &c) |
template<typename genType > | |
GLM_FUNC_QUALIFIER genType | glm::frexp (genType x, int &exp) |
template<typename T , precision P> | |
GLM_FUNC_QUALIFIER tvec1< T, P > | glm::frexp (tvec1< T, P > const &x, tvec1< int, P > &exp) |
template<typename T , precision P> | |
GLM_FUNC_QUALIFIER tvec2< T, P > | glm::frexp (tvec2< T, P > const &x, tvec2< int, P > &exp) |
template<typename T , precision P> | |
GLM_FUNC_QUALIFIER tvec3< T, P > | glm::frexp (tvec3< T, P > const &x, tvec3< int, P > &exp) |
template<typename T , precision P> | |
GLM_FUNC_QUALIFIER tvec4< T, P > | glm::frexp (tvec4< T, P > const &x, tvec4< int, P > &exp) |
template<typename genType , precision P> | |
GLM_FUNC_QUALIFIER genType | glm::ldexp (genType const &x, int const &exp) |
template<typename T , precision P> | |
GLM_FUNC_QUALIFIER tvec1< T, P > | glm::ldexp (tvec1< T, P > const &x, tvec1< int, P > const &exp) |
template<typename T , precision P> | |
GLM_FUNC_QUALIFIER tvec2< T, P > | glm::ldexp (tvec2< T, P > const &x, tvec2< int, P > const &exp) |
template<typename T , precision P> | |
GLM_FUNC_QUALIFIER tvec3< T, P > | glm::ldexp (tvec3< T, P > const &x, tvec3< int, P > const &exp) |
template<typename T , precision P> | |
GLM_FUNC_QUALIFIER tvec4< T, P > | glm::ldexp (tvec4< T, P > const &x, tvec4< int, P > const &exp) |
OpenGL Mathematics (glm.g-truc.net)
Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
Restrictions: By making use of the Software for military purposes, you choose to make a Bunny unhappy.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.