Skip to content
Snippets Groups Projects
Commit f40b0648 authored by Raphael Grimm's avatar Raphael Grimm
Browse files

Add LineStrip::InLimits

parent f7ed56f9
No related branches found
No related tags found
No related merge requests found
......@@ -31,6 +31,10 @@ LineStrip::LineStrip(const std::vector<Eigen::Vector3f> &points, float minT, flo
{
}
bool LineStrip::InLimits(float t)
{
return t >= minT && t <= maxT;
}
Eigen::Vector3f LineStrip::Get(float t)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment