| 12345678910111213141516171819202122232425262728293031323334 |
- // This file is part of libigl, a simple c++ geometry processing library.
- //
- // Copyright (C) 2018 Alec Jacobson <[email protected]>
- //
- // 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_TAN_HALF_ANGLE_H
- #define IGL_TAN_HALF_ANGLE_H
- #include "igl_inline.h"
- namespace igl
- {
- /// Compute the tangent of half of the angle opposite the side with length a,
- /// in a triangle with side lengths (a,b,c).
- ///
- /// @param[in] a scalar edge length of first side of triangle
- /// @param[in] b scalar edge length of second side of triangle
- /// @param[in] c scalar edge length of third side of triangle
- /// @return tangent of half of the angle opposite side with length a
- ///
- /// \return is_intrinsic_delaunay
- template < typename Scalar>
- IGL_INLINE Scalar tan_half_angle(
- const Scalar & a,
- const Scalar & b,
- const Scalar & c);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "tan_half_angle.cpp"
- #endif
- #endif
|