Jet  v1.3.3
ray.h
Go to the documentation of this file.
1 // Copyright (c) 2018 Doyub Kim
2 //
3 // I am making my contributions/submissions to this project solely in my
4 // personal capacity and am not conveying any rights to any intellectual
5 // property of any third parties.
6 
7 #ifndef INCLUDE_JET_RAY_H_
8 #define INCLUDE_JET_RAY_H_
9 
10 #include <jet/vector.h>
11 
12 namespace jet {
13 
20 template <typename T, size_t N>
21 class Ray {
22  static_assert(N != 2 && N != 3, "Not implemented.");
23  static_assert(
24  std::is_floating_point<T>::value,
25  "Ray only can be instantiated with floating point types");
26 };
27 
28 } // namespace jet
29 
30 #endif // INCLUDE_JET_RAY_H_
jet::Ray
Class for ray.
Definition: ray.h:21
jet
Definition: advection_solver2.h:18
vector.h