Fixes some defines being in the wrong place
This commit is contained in:
@@ -141,19 +141,19 @@ namespace fgl::engine
|
|||||||
}
|
}
|
||||||
|
|
||||||
template < CoordinateSpace CType >
|
template < CoordinateSpace CType >
|
||||||
Vector FGL_FORCE_INLINE Frustum< CType >::forwardVec() const
|
FGL_FORCE_INLINE Vector Frustum< CType >::forwardVec() const
|
||||||
{
|
{
|
||||||
return near.direction();
|
return near.direction();
|
||||||
}
|
}
|
||||||
|
|
||||||
template < CoordinateSpace CType >
|
template < CoordinateSpace CType >
|
||||||
Vector FGL_FORCE_INLINE Frustum< CType >::upVec() const
|
FGL_FORCE_INLINE Vector Frustum< CType >::upVec() const
|
||||||
{
|
{
|
||||||
return glm::cross( forwardVec(), left.direction() );
|
return glm::cross( forwardVec(), left.direction() );
|
||||||
}
|
}
|
||||||
|
|
||||||
template < CoordinateSpace CType >
|
template < CoordinateSpace CType >
|
||||||
Vector FGL_FORCE_INLINE Frustum< CType >::rightVec() const
|
FGL_FORCE_INLINE Vector Frustum< CType >::rightVec() const
|
||||||
{
|
{
|
||||||
return glm::cross( forwardVec(), upVec() );
|
return glm::cross( forwardVec(), upVec() );
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user