libigl v2.5.0
Loading...
Searching...
No Matches
cubic_monomial_bases.h
Go to the documentation of this file.
1#ifndef IGL_CUBIC_MONOMIAL_BASES_H
2#define IGL_CUBIC_MONOMIAL_BASES_H
3
4#include "igl_inline.h"
5#include <Eigen/Core>
6
7namespace igl
8{
18 template <
19 typename DerivedC,
20 typename DerivedM,
21 typename DerivedD,
22 typename DerivedB>
24 const Eigen::MatrixBase<DerivedC>& C,
25 Eigen::PlainObjectBase<DerivedM>& M,
26 Eigen::PlainObjectBase<DerivedD>& D,
27 Eigen::PlainObjectBase<DerivedB>& B);
28}
29
30#ifndef IGL_STATIC_LIBRARY
31# include "cubic_monomial_bases.cpp"
32#endif
33
34#endif
#define IGL_INLINE
Definition igl_inline.h:15
Definition AABB.h:18
void cubic_monomial_bases(const Eigen::MatrixBase< DerivedC > &C, Eigen::PlainObjectBase< DerivedM > &M, Eigen::PlainObjectBase< DerivedD > &D, Eigen::PlainObjectBase< DerivedB > &B)
Compute monomial basis representations for cubic Bézier curves.