OWL
OptiX7 Wrapper Library
vec.h File Reference
#include "owl/common/owl-common.h"
#include "owl/common/math/constants.h"
#include <iostream>
#include <math.h>
#include <algorithm>
#include "vec/compare.h"
#include "vec/functors.h"
#include "vec/rotate.h"

Go to the source code of this file.

Classes

struct  owl::common::long_type_of< T >
 
struct  owl::common::long_type_of< int32_t >
 
struct  owl::common::long_type_of< uint32_t >
 
struct  owl::common::vec_t< T, N >
 
struct  owl::common::BinaryOpResultType< ScalarType, ScalarType >
 
struct  owl::common::BinaryOpResultType< int, float >
 
struct  owl::common::BinaryOpResultType< float, int >
 
struct  owl::common::BinaryOpResultType< unsigned int, float >
 
struct  owl::common::BinaryOpResultType< float, unsigned int >
 
struct  owl::common::BinaryOpResultType< int, double >
 
struct  owl::common::BinaryOpResultType< double, int >
 
struct  owl::common::BinaryOpResultType< unsigned int, double >
 
struct  owl::common::BinaryOpResultType< double, unsigned int >
 
struct  owl::common::vec_t< T, 1 >
 
struct  owl::common::vec_t< T, 2 >
 
struct  owl::common::vec_t< T, 3 >
 
struct  owl::common::vec_t< T, 4 >
 

Namespaces

 owl
 
 owl::common
 

Macros

#define _define_vec_types(T, t)
 

Functions

template<typename T >
__both__ long_type_of< T >::type owl::common::area (const vec_t< T, 2 > &v)
 
template<typename T >
__both__ long_type_of< T >::type owl::common::volume (const vec_t< T, 3 > &v)
 
template<typename T >
__both__ long_type_of< T >::type owl::common::volume (const vec_t< T, 4 > &v)
 
template<typename T >
__both__ long_type_of< T >::type owl::common::area (const vec_t< T, 3 > &v)
 
template<typename T >
__both__ vec_t< T, 3 > owl::common::cross (const vec_t< T, 3 > &a, const vec_t< T, 3 > &b)
 
template<typename T >
__both__owl::common::dot (const vec_t< T, 3 > &a, const vec_t< T, 3 > &b)
 
template<typename T >
__both__ vec_t< T, 3 > owl::common::normalize (const vec_t< T, 3 > &v)
 
template<typename T >
__both__owl::common::length (const vec_t< T, 3 > &v)
 
template<typename T >
__owl_host std::ostream & owl::common::operator<< (std::ostream &o, const vec_t< T, 1 > &v)
 
template<typename T >
__owl_host std::ostream & owl::common::operator<< (std::ostream &o, const vec_t< T, 2 > &v)
 
template<typename T >
__owl_host std::ostream & owl::common::operator<< (std::ostream &o, const vec_t< T, 3 > &v)
 
template<typename T >
__owl_host std::ostream & owl::common::operator<< (std::ostream &o, const vec_t< T, 4 > &v)
 
 owl::common::_define_vec_types (int8_t, c)
 
 owl::common::_define_vec_types (int16_t, s)
 
 owl::common::_define_vec_types (int32_t, i)
 
 owl::common::_define_vec_types (int64_t, l)
 
 owl::common::_define_vec_types (uint8_t, uc)
 
 owl::common::_define_vec_types (uint16_t, us)
 
 owl::common::_define_vec_types (uint32_t, ui)
 
 owl::common::_define_vec_types (uint64_t, ul)
 
 owl::common::_define_vec_types (float, f)
 
 owl::common::_define_vec_types (double, d)
 

Macro Definition Documentation

◆ _define_vec_types

#define _define_vec_types (   T,
 
)
Value:
using vec2##t = vec_t<T,2>; \
using vec3##t = vec_t<T,3>; \
using vec4##t = vec_t<T,4>; \
using vec3##t##a = vec3a_t<T>; \
owl::common::vec_t< T, 2 >
Definition: vec.h:96
owl::common::vec_t< T, 3 >
Definition: vec.h:143
owl::common::vec_t< T, 4 >
Definition: vec.h:228