Back to Intersection between shapes
#ifndef PASTELGEOMETRY_INTERSECT_RAY_ALIGNEDPLANE_HPP
#define PASTELGEOMETRY_INTERSECT_RAY_ALIGNEDPLANE_HPP
#include "pastel/geometry/intersect/intersect_ray_alignedplane.h"
namespace Pastel
{
template <typename Real, integer N>
bool intersect(
const Ray<Real, N>& ray,
const AlignedPlane<Real, N>& alignedPlane,
Real& t)
{
// TODO
ENSURE(false);
}
}
#endif