// This file is part of libigl, a simple c++ geometry processing library. // // Copyright (C) 2014 Alec Jacobson // // 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/. #include "barycentric_coordinates.h" #include "volume.h" #include "doublearea.h" template < typename DerivedP, typename DerivedA, typename DerivedB, typename DerivedC, typename DerivedD, typename DerivedL> IGL_INLINE void igl::barycentric_coordinates( const Eigen::PlainObjectBase & P, const Eigen::PlainObjectBase & A, const Eigen::PlainObjectBase & B, const Eigen::PlainObjectBase & C, const Eigen::PlainObjectBase & D, Eigen::PlainObjectBase & L) { using namespace Eigen; assert(P.cols() == 3 && "query must be in 3d"); assert(A.cols() == 3 && "corners must be in 3d"); assert(B.cols() == 3 && "corners must be in 3d"); assert(C.cols() == 3 && "corners must be in 3d"); assert(D.cols() == 3 && "corners must be in 3d"); assert(P.rows() == A.rows() && "Must have same number of queries as corners"); assert(A.rows() == B.rows() && "Corners must be same size"); assert(A.rows() == C.rows() && "Corners must be same size"); assert(A.rows() == D.rows() && "Corners must be same size"); typedef Matrix VectorXS; // Total volume VectorXS vol,LA,LB,LC,LD; volume(B,D,C,P,LA); volume(A,C,D,P,LB); volume(A,D,B,P,LC); volume(A,B,C,P,LD); volume(A,B,C,D,vol); L.resize(P.rows(),4); L< IGL_INLINE void igl::barycentric_coordinates( const Eigen::PlainObjectBase & P, const Eigen::PlainObjectBase & A, const Eigen::PlainObjectBase & B, const Eigen::PlainObjectBase & C, Eigen::PlainObjectBase & L) { using namespace Eigen; assert(P.cols() == 2 && "query must be in 2d"); assert(A.cols() == 2 && "corners must be in 2d"); assert(B.cols() == 2 && "corners must be in 2d"); assert(C.cols() == 2 && "corners must be in 2d"); assert(P.rows() == A.rows() && "Must have same number of queries as corners"); assert(A.rows() == B.rows() && "Corners must be same size"); assert(A.rows() == C.rows() && "Corners must be same size"); typedef Matrix VectorXS; // Total area VectorXS dblA,LA,LB,LC; doublearea(P,B,C,LA); doublearea(A,P,C,LB); doublearea(A,B,P,LC); doublearea(A,B,C,dblA); L.resize(P.rows(),3); L<, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix >(Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase >&); #endif