libigl v2.5.0
Loading...
Searching...
No Matches
point_mesh_squared_distance.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) 2014 Alec Jacobson <alecjacobson@gmail.com>
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_POINT_MESH_SQUARED_DISTANCE_H
9#define IGL_POINT_MESH_SQUARED_DISTANCE_H
10#include "igl_inline.h"
11#include <Eigen/Core>
12#include <vector>
13
14namespace igl
15{
48 template <
49 typename DerivedP,
50 typename DerivedV,
51 typename DerivedEle,
52 typename DerivedsqrD,
53 typename DerivedI,
54 typename DerivedC>
56 const Eigen::MatrixBase<DerivedP> &P,
57 const Eigen::MatrixBase<DerivedV> &V,
58 const Eigen::MatrixBase<DerivedEle> &Ele,
59 Eigen::PlainObjectBase<DerivedsqrD> &sqrD,
60 Eigen::PlainObjectBase<DerivedI> &I,
61 Eigen::PlainObjectBase<DerivedC> &C);
62}
63
64#ifndef IGL_STATIC_LIBRARY
65# include "point_mesh_squared_distance.cpp"
66#endif
67
68#endif
#define IGL_INLINE
Definition igl_inline.h:15
Definition AABB.h:17
void point_mesh_squared_distance(const Eigen::MatrixBase< DerivedP > &P, const Eigen::MatrixBase< DerivedV > &V, const Eigen::MatrixBase< DerivedEle > &Ele, Eigen::PlainObjectBase< DerivedsqrD > &sqrD, Eigen::PlainObjectBase< DerivedI > &I, Eigen::PlainObjectBase< DerivedC > &C)
Compute distances from a set of points P to a triangle mesh (V,F)