ray: move convenience typedefs directly after type decl
This commit is contained in:
parent
44b3d8d628
commit
00515078f9
10
geom/ray.hpp
10
geom/ray.hpp
@ -61,6 +61,11 @@ namespace util::geom {
|
|||||||
ray (point<S,T>,vector<S,T>) -> ray<S,T>;
|
ray (point<S,T>,vector<S,T>) -> ray<S,T>;
|
||||||
|
|
||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////
|
||||||
|
typedef ray<2,float> ray2f;
|
||||||
|
typedef ray<3,float> ray3f;
|
||||||
|
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////
|
||||||
/// returns the distance along the ray in a ray-plane intersection
|
/// returns the distance along the ray in a ray-plane intersection
|
||||||
///
|
///
|
||||||
@ -122,11 +127,6 @@ namespace util::geom {
|
|||||||
{
|
{
|
||||||
return distance (r, b) >= 0;
|
return distance (r, b) >= 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////
|
|
||||||
typedef ray<2,float> ray2f;
|
|
||||||
typedef ray<3,float> ray3f;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user