libigl v2.5.0
Loading...
Searching...
No Matches
cubic.h
Go to the documentation of this file.
1#ifndef IGL_CUBIC_H
2#define IGL_CUBIC_H
3
4#include "igl_inline.h"
5#include <Eigen/Core>
6
7namespace igl
8{
15 template
16 <
17 typename DerivedC,
18 typename DerivedP>
20 const Eigen::MatrixBase<DerivedC>& C,
21 const typename DerivedP::Scalar & t,
22 Eigen::PlainObjectBase<DerivedP>& P);
23}
24
25#ifndef IGL_STATIC_LIBRARY
26# include "cubic.cpp"
27#endif
28
29#endif
#define IGL_INLINE
Definition igl_inline.h:15
Definition AABB.h:18
void cubic(const Eigen::MatrixBase< DerivedC > &C, const typename DerivedP::Scalar &t, Eigen::PlainObjectBase< DerivedP > &P)
Evaluate a cubic Bézier curve defined by control points C at parameter t.