libigl v2.5.0
Loading...
Searching...
No Matches
winding_number_antipodal.h
Go to the documentation of this file.
1// This file is part of libigl, a simple c++ geometry processing library.
2//
3// Copyright (C) 2026 Philip Trettner <trettner@shapedcode.com>, Cedric Martens <cedric.martens@umontreal.ca>
4//
5// This Source Code Form is subject to the terms of the Mozilla Public License
6// v. 2.0. If a copy of the MPL was not distributed with this file, You can
7// obtain one at http://mozilla.org/MPL/2.0/.
8#ifndef IGL_WINDING_NUMBER_ANTIPODAL_H
9#define IGL_WINDING_NUMBER_ANTIPODAL_H
10
11#include "igl_inline.h"
12
13#include <Eigen/Core>
14
15namespace igl
16{
43 template <
44 typename Intersector,
45 typename DerivedV,
46 typename DerivedF,
47 typename DerivedO,
48 typename DerivedW>
50 const Eigen::MatrixBase<DerivedV> & V,
51 const Eigen::MatrixBase<DerivedF> & F,
52 const Intersector & intersector,
53 const Eigen::MatrixBase<DerivedO> & O,
54 Eigen::PlainObjectBase<DerivedW> & W);
55}
56
57#ifndef IGL_STATIC_LIBRARY
58# include "winding_number_antipodal.cpp"
59#endif
60
61#endif
#define IGL_INLINE
Definition igl_inline.h:15
Definition AABB.h:18
void winding_number_antipodal(const Eigen::MatrixBase< DerivedV > &V, const Eigen::MatrixBase< DerivedF > &F, const Intersector &intersector, const Eigen::MatrixBase< DerivedO > &O, Eigen::PlainObjectBase< DerivedW > &W)
Generalized winding number via the Antipodal Method [Martens, Trettner, Bessmeltsev 2026,...