12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- // This file is part of libigl, a simple c++ geometry processing library.
- //
- // Copyright (C) 2015 Alec Jacobson <alecjacobson@gmail.com>
- //
- // This Source Code Form is subject to the terms of the Mozilla Public License
- // v. 2.0. If a copy of the MPL was not distributed with this file, You can
- // obtain one at http://mozilla.org/MPL/2.0/.
- #ifndef IGL_PSEUDONORMAL_TEST_H
- #define IGL_PSEUDONORMAL_TEST_H
- #include "igl_inline.h"
- #include <Eigen/Core>
- namespace igl
- {
- // Given a mesh (V,F), a query point q, and a point on (V,F) c, determine
- // whether q is inside (V,F) --> s=-1 or outside (V,F) s=1, based on the
- // sign of the dot product between (q-c) and n, where n is the normal _at c_,
- // carefully chosen according to [Bærentzen & Aanæs 2005]
- //
- // Inputs:
- // V #V by 3 list of vertex positions
- // F #F by 3 list of triangle indices
- // FN #F by 3 list of triangle normals
- // VN #V by 3 list of vertex normals (ANGLE WEIGHTING)
- // EN #E by 3 list of edge normals (UNIFORM WEIGHTING)
- // EMAP #F*3 mapping edges in F to E
- // q Query point
- // i index into F to face to which c belongs
- // c Point on (V,F)
- // Outputs:
- // s sign
- // n normal
- IGL_INLINE void pseudonormal_test(
- const Eigen::MatrixXd & V,
- const Eigen::MatrixXi & F,
- const Eigen::MatrixXd & FN,
- const Eigen::MatrixXd & VN,
- const Eigen::MatrixXd & EN,
- const Eigen::VectorXi & EMAP,
- const Eigen::RowVector3d & q,
- const int i,
- const Eigen::RowVector3d & c,
- double & s,
- Eigen::RowVector3d & n);
- IGL_INLINE void pseudonormal_test(
- const Eigen::MatrixXd & V,
- const Eigen::MatrixXi & E,
- const Eigen::MatrixXd & EN,
- const Eigen::MatrixXd & VN,
- const Eigen::RowVector2d & q,
- const int i,
- const Eigen::RowVector2d & c,
- double & s,
- Eigen::RowVector2d & n);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "pseudonormal_test.cpp"
- #endif
- #endif
|