25#ifndef HERMES_GEOMETRY_UTILS_H
26#define HERMES_GEOMETRY_UTILS_H
31namespace hermes::coordinate_systems {
52 const vec3f &x,
const vec3f &y,
57real_t sphericalTheta(
const vec3f &v);
61real_t sphericalPhi(
const vec3f &v);
71inline void makeCoordinateSystem(
const vec3 &v1, vec3 *v2, vec3 *v3) {
72 if (fabsf(v1.x) > fabsf(v1.y)) {
73 float invLen = 1.f / sqrtf(v1.x * v1.x + v1.z * v1.z);
74 *v2 = vec3(-v1.z * invLen, 0.f, v1.x * invLen);
76 float invLen = 1.f / sqrtf(v1.y * v1.y + v1.z * v1.z);
77 *v2 = vec3(0.f, v1.z * invLen, -v1.y * invLen);
88inline float cosTheta(
const vec3 &w) {
return w.z; }
96inline float absCosTheta(
const vec3 &w) {
return fabs(w.z); }
104inline float sinTheta2(
const vec3 &w) {
105 return std::max(0.f, 1.f - cosTheta(w) * cosTheta(w));
114inline float sinTheta(
const vec3 &w) {
return sqrtf(sinTheta2(w)); }
122inline float cosPhi(
const vec3 &w) {
123 float sintheta = sinTheta(w);
135inline float sinPhi(
const vec3 &w) {
136 float sintheta = sinTheta(w);
145inline vec3 otherHemisphere(
const vec3 &w) {
return vec3(w.x, w.y, -w.z); }
float real_t
default floating point type
Definition defs.h:75
static HERMES_DEVICE_CALLABLE T clamp(const T &n, const T &l, const T &u)
Clamps value to closed interval.
Definition numeric.h:176
Geometric vector classes.
HERMES_DEVICE_CALLABLE T cross(const Vector2< T > &a, const Vector2< T > &b)
Computes the cross product between two vectors.
Definition vector.h:550