// This file is part of libigl, a simple c++ geometry processing library. // // Copyright (C) 2022 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/. #ifndef IGL_MOMENTS_H #define IGL_MOMENTS_H #include "igl_inline.h" #include namespace igl { /// Computes the moments of mass for a solid object bound by a triangle mesh. /// /// @param[in] V #V by 3 list of rest domain positions /// @param[in] F #F by 3 list of triangle indices into V /// @param[out] m0 zeroth moment of mass, total signed volume of solid. /// @param[out] m1 first moment of mass, center of mass (centroid) times total mass /// @param[out] m2 second moment of mass, moment of inertia with center of mass as reference point /// /// \see centroid template < typename DerivedV, typename DerivedF, typename Derivedm0, typename Derivedm1, typename Derivedm2> IGL_INLINE void moments( const Eigen::MatrixBase& V, const Eigen::MatrixBase& F, Derivedm0 & m0, Eigen::PlainObjectBase& m1, Eigen::PlainObjectBase& m2); } #ifndef IGL_STATIC_LIBRARY # include "moments.cpp" #endif #endif