libigl v2.5.0
Loading...
Searching...
No Matches
cubic_winding_number.h
Go to the documentation of this file.
1#ifndef IGL_PREDICATES_CUBIC_WINDING_NUMBER_H
2#define IGL_PREDICATES_CUBIC_WINDING_NUMBER_H
3#include "../igl_inline.h"
4#include <Eigen/Core>
5
6namespace igl
7{
8 namespace predicates
9 {
18 template <typename DerivedC, typename Derivedq>
19 IGL_INLINE typename DerivedC::Scalar cubic_winding_number(
20 const Eigen::MatrixBase<DerivedC>& C,
21 const Eigen::MatrixBase<Derivedq>& q);
22 }
23}
24
25#ifndef IGL_STATIC_LIBRARY
26# include "cubic_winding_number.cpp"
27#endif
28
29#endif
30
#define IGL_INLINE
Definition igl_inline.h:15
Definition cubic_winding_number.h:9
DerivedC::Scalar cubic_winding_number(const Eigen::MatrixBase< DerivedC > &C, const Eigen::MatrixBase< Derivedq > &q)
Computes the (generalized) winding number of a cubic Bézier curve around a query.
Definition AABB.h:18