Sha256: e623e166c7c222457827f5fb2c3f248fd213c3432c153d120a3d458a279cce8d

Contents?: true

Size: 1.75 KB

Versions: 21

Compression:

Stored size: 1.75 KB

Contents

/// @ref gtx_range
/// @file glm/gtx/range.hpp
/// @author Joshua Moerman
///
/// @defgroup gtx_range GLM_GTX_range
/// @ingroup gtx
///
/// @brief Defines begin and end for vectors and matrices. Useful for range-based for loop.
/// The range is defined over the elements, not over columns or rows (e.g. mat4 has 16 elements).
///
/// <glm/gtx/range.hpp> need to be included to use these functionalities.

#pragma once

// Dependencies
#include "../detail/setup.hpp"

#if !GLM_HAS_RANGE_FOR
#	error "GLM_GTX_range requires C++11 suppport or 'range for'"
#endif

#include "../gtc/type_ptr.hpp"
#include "../gtc/vec1.hpp"

namespace glm
{
	/// @addtogroup gtx_range
	/// @{

	template <typename T, precision P>
	inline length_t components(tvec1<T, P> const & v)
	{
		return v.length();
	}
	
	template <typename T, precision P>
	inline length_t components(tvec2<T, P> const & v)
	{
		return v.length();
	}
	
	template <typename T, precision P>
	inline length_t components(tvec3<T, P> const & v)
	{
		return v.length();
	}
	
	template <typename T, precision P>
	inline length_t components(tvec4<T, P> const & v)
	{
		return v.length();
	}
	
	template <typename genType>
	inline length_t components(genType const & m)
	{
		return m.length() * m[0].length();
	}
	
	template <typename genType>
	inline typename genType::value_type const * begin(genType const & v)
	{
		return value_ptr(v);
	}

	template <typename genType>
	inline typename genType::value_type const * end(genType const & v)
	{
		return begin(v) + components(v);
	}

	template <typename genType>
	inline typename genType::value_type * begin(genType& v)
	{
		return value_ptr(v);
	}

	template <typename genType>
	inline typename genType::value_type * end(genType& v)
	{
		return begin(v) + components(v);
	}

	/// @}
}//namespace glm

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
pixo-0.4.5 ext/pixo/ext/glm/glm/gtx/range.hpp
pixo-0.4.4 ext/pixo/ext/glm/glm/gtx/range.hpp
pixo-0.4.3 ext/pixo/ext/glm/glm/gtx/range.hpp
pixo-0.4.2 ext/pixo/ext/glm/glm/gtx/range.hpp
pixo-0.4.1 ext/pixo/ext/glm/glm/gtx/range.hpp
pixo-0.4.0 ext/pixo/ext/glm/glm/gtx/range.hpp
pixo-0.3.2 ext/pixo/ext/glm/glm/gtx/range.hpp
pixo-0.3.1 ext/pixo/ext/glm/glm/gtx/range.hpp
pixo-0.3.0 ext/pixo/ext/glm/glm/gtx/range.hpp
pixo-0.2.6 ext/pixo/ext/glm/glm/gtx/range.hpp
pixo-0.2.5 ext/pixo/ext/glm/glm/gtx/range.hpp
pixo-0.2.4 ext/pixo/ext/glm/glm/gtx/range.hpp
pixo-0.2.3 ext/pixo/ext/glm/glm/gtx/range.hpp
pixo-0.2.2 ext/pixo/ext/glm/glm/gtx/range.hpp
pixo-0.2.1 ext/pixo/ext/glm/glm/gtx/range.hpp
pixo-0.2.0 ext/pixo/ext/glm/glm/gtx/range.hpp
pixo-0.1.4 ext/pixo/ext/glm/glm/gtx/range.hpp
pixo-0.1.3 ext/pixo/ext/glm/glm/gtx/range.hpp
pixo-0.1.2 ext/pixo/ext/glm/glm/gtx/range.hpp
pixo-0.1.1 ext/pixo/ext/glm/glm/gtx/range.hpp