libigl v2.5.0
Loading...
Searching...
No Matches
fast_winding_number.h File Reference
#include "igl_inline.h"
#include "FastWindingNumberForSoups.h"
#include <Eigen/Core>
#include <vector>
#include "fast_winding_number.cpp"

Go to the source code of this file.

Namespaces

namespace  igl

Functions

template<typename DerivedP, typename DerivedA, typename DerivedN, typename Index, typename DerivedCH, typename DerivedCM, typename DerivedR, typename DerivedEC>
void igl::fast_winding_number (const Eigen::MatrixBase< DerivedP > &P, const Eigen::MatrixBase< DerivedN > &N, const Eigen::MatrixBase< DerivedA > &A, const std::vector< std::vector< Index > > &point_indices, const Eigen::MatrixBase< DerivedCH > &CH, const int expansion_order, Eigen::PlainObjectBase< DerivedCM > &CM, Eigen::PlainObjectBase< DerivedR > &R, Eigen::PlainObjectBase< DerivedEC > &EC)
 Generate the precomputation for the fast winding number for point data [Barill et.
template<typename DerivedP, typename DerivedA, typename DerivedN, typename Index, typename DerivedCH, typename DerivedCM, typename DerivedR, typename DerivedEC, typename DerivedQ, typename BetaType, typename DerivedWN>
void igl::fast_winding_number (const Eigen::MatrixBase< DerivedP > &P, const Eigen::MatrixBase< DerivedN > &N, const Eigen::MatrixBase< DerivedA > &A, const std::vector< std::vector< Index > > &point_indices, const Eigen::MatrixBase< DerivedCH > &CH, const Eigen::MatrixBase< DerivedCM > &CM, const Eigen::MatrixBase< DerivedR > &R, const Eigen::MatrixBase< DerivedEC > &EC, const Eigen::MatrixBase< DerivedQ > &Q, const BetaType beta, Eigen::PlainObjectBase< DerivedWN > &WN)
 Evaluate the fast winding number for point data, having already done the the precomputation.
template<typename DerivedP, typename DerivedA, typename DerivedN, typename DerivedQ, typename BetaType, typename DerivedWN>
void igl::fast_winding_number (const Eigen::MatrixBase< DerivedP > &P, const Eigen::MatrixBase< DerivedN > &N, const Eigen::MatrixBase< DerivedA > &A, const Eigen::MatrixBase< DerivedQ > &Q, const int expansion_order, const BetaType beta, Eigen::PlainObjectBase< DerivedWN > &WN)
 This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
template<typename DerivedP, typename DerivedA, typename DerivedN, typename DerivedQ, typename DerivedWN>
void igl::fast_winding_number (const Eigen::MatrixBase< DerivedP > &P, const Eigen::MatrixBase< DerivedN > &N, const Eigen::MatrixBase< DerivedA > &A, const Eigen::MatrixBase< DerivedQ > &Q, Eigen::PlainObjectBase< DerivedWN > &WN)
 This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
template<typename DerivedV, typename DerivedF, typename DerivedQ, typename DerivedW>
void igl::fast_winding_number (const Eigen::MatrixBase< DerivedV > &V, const Eigen::MatrixBase< DerivedF > &F, const Eigen::MatrixBase< DerivedQ > &Q, Eigen::PlainObjectBase< DerivedW > &W)
 Compute approximate winding number of a triangle soup mesh according to "Fast Winding Numbers for Soups and Clouds" [Barill et al.
template<typename DerivedV, typename DerivedF>
void igl::fast_winding_number (const Eigen::MatrixBase< DerivedV > &V, const Eigen::MatrixBase< DerivedF > &F, const int order, FastWindingNumberBVH &fwn_bvh)
 Precomputation for computing approximate winding numbers of a triangle soup.
template<typename DerivedQ, typename DerivedW>
void igl::fast_winding_number (const FastWindingNumberBVH &fwn_bvh, const float accuracy_scale, const Eigen::MatrixBase< DerivedQ > &Q, Eigen::PlainObjectBase< DerivedW > &W)
 After precomputation, compute winding number at a each of many points in a list.
template<typename Derivedp>
Derivedp::Scalar igl::fast_winding_number (const FastWindingNumberBVH &fwn_bvh, const float accuracy_scale, const Eigen::MatrixBase< Derivedp > &p)
 After precomputation, compute winding number at a single point.