• Home
  • Raw
  • Download

Lines Matching refs:x

135 		GLM_FUNC_QUALIFIER static std::string call(tvec1<bool, P> const & x)
138 x[0] ? detail::LabelTrue : detail::LabelFalse);
145 GLM_FUNC_QUALIFIER static std::string call(tvec2<bool, P> const & x)
148 x[0] ? detail::LabelTrue : detail::LabelFalse,
149 x[1] ? detail::LabelTrue : detail::LabelFalse);
156 GLM_FUNC_QUALIFIER static std::string call(tvec3<bool, P> const & x)
159 x[0] ? detail::LabelTrue : detail::LabelFalse,
160 x[1] ? detail::LabelTrue : detail::LabelFalse,
161 x[2] ? detail::LabelTrue : detail::LabelFalse);
168 GLM_FUNC_QUALIFIER static std::string call(tvec4<bool, P> const & x)
171 x[0] ? detail::LabelTrue : detail::LabelFalse,
172 x[1] ? detail::LabelTrue : detail::LabelFalse,
173 x[2] ? detail::LabelTrue : detail::LabelFalse,
174 x[3] ? detail::LabelTrue : detail::LabelFalse);
181 GLM_FUNC_QUALIFIER static std::string call(tvec1<T, P> const & x)
189 return detail::format(FormatStr.c_str(), x[0]);
196 GLM_FUNC_QUALIFIER static std::string call(tvec2<T, P> const & x)
204 return detail::format(FormatStr.c_str(), x[0], x[1]);
211 GLM_FUNC_QUALIFIER static std::string call(tvec3<T, P> const & x)
219 return detail::format(FormatStr.c_str(), x[0], x[1], x[2]);
226 GLM_FUNC_QUALIFIER static std::string call(tvec4<T, P> const & x)
234 return detail::format(FormatStr.c_str(), x[0], x[1], x[2], x[3]);
242 GLM_FUNC_QUALIFIER static std::string call(tmat2x2<T, P> const & x)
252 x[0][0], x[0][1],
253 x[1][0], x[1][1]);
260 GLM_FUNC_QUALIFIER static std::string call(tmat2x3<T, P> const & x)
270 x[0][0], x[0][1], x[0][2],
271 x[1][0], x[1][1], x[1][2]);
278 GLM_FUNC_QUALIFIER static std::string call(tmat2x4<T, P> const & x)
288 x[0][0], x[0][1], x[0][2], x[0][3],
289 x[1][0], x[1][1], x[1][2], x[1][3]);
296 GLM_FUNC_QUALIFIER static std::string call(tmat3x2<T, P> const & x)
307 x[0][0], x[0][1],
308 x[1][0], x[1][1],
309 x[2][0], x[2][1]);
316 GLM_FUNC_QUALIFIER static std::string call(tmat3x3<T, P> const & x)
327 x[0][0], x[0][1], x[0][2],
328 x[1][0], x[1][1], x[1][2],
329 x[2][0], x[2][1], x[2][2]);
336 GLM_FUNC_QUALIFIER static std::string call(tmat3x4<T, P> const & x)
347 x[0][0], x[0][1], x[0][2], x[0][3],
348 x[1][0], x[1][1], x[1][2], x[1][3],
349 x[2][0], x[2][1], x[2][2], x[2][3]);
356 GLM_FUNC_QUALIFIER static std::string call(tmat4x2<T, P> const & x)
368 x[0][0], x[0][1],
369 x[1][0], x[1][1],
370 x[2][0], x[2][1],
371 x[3][0], x[3][1]);
378 GLM_FUNC_QUALIFIER static std::string call(tmat4x3<T, P> const & x)
390 x[0][0], x[0][1], x[0][2],
391 x[1][0], x[1][1], x[1][2],
392 x[2][0], x[2][1], x[2][2],
393 x[3][0], x[3][1], x[3][2]);
400 GLM_FUNC_QUALIFIER static std::string call(tmat4x4<T, P> const & x)
412 x[0][0], x[0][1], x[0][2], x[0][3],
413 x[1][0], x[1][1], x[1][2], x[1][3],
414 x[2][0], x[2][1], x[2][2], x[2][3],
415 x[3][0], x[3][1], x[3][2], x[3][3]);
423 GLM_FUNC_QUALIFIER static std::string call(tquat<T, P> const & x)
431 return detail::format(FormatStr.c_str(), x[0], x[1], x[2], x[3]);
438 GLM_FUNC_QUALIFIER static std::string call(tdualquat<T, P> const & x)
446 …rn detail::format(FormatStr.c_str(), x.real[0], x.real[1], x.real[2], x.real[3], x.dual[0], x.dual…
453 GLM_FUNC_QUALIFIER std::string to_string(matType<T, P> const & x) argument
455 return detail::compute_to_string<matType, T, P>::call(x);