2015-04-28 11:54:17 +00:00
|
|
|
/* ========================================================================= *
|
2011-11-16 09:27:12 +00:00
|
|
|
* *
|
|
|
|
|
* OpenMesh *
|
2015-04-28 11:33:32 +00:00
|
|
|
* Copyright (c) 2001-2015, RWTH-Aachen University *
|
|
|
|
|
* Department for Computer Graphics and Multimedia *
|
|
|
|
|
* All rights reserved. *
|
|
|
|
|
* www.openmesh.org *
|
2011-11-16 09:27:12 +00:00
|
|
|
* *
|
|
|
|
|
*---------------------------------------------------------------------------*
|
2015-04-28 11:33:32 +00:00
|
|
|
* This file is part of OpenMesh. *
|
|
|
|
|
*---------------------------------------------------------------------------*
|
|
|
|
|
* *
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without *
|
|
|
|
|
* modification, are permitted provided that the following conditions *
|
|
|
|
|
* are met: *
|
|
|
|
|
* *
|
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, *
|
|
|
|
|
* this list of conditions and the following disclaimer. *
|
|
|
|
|
* *
|
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright *
|
|
|
|
|
* notice, this list of conditions and the following disclaimer in the *
|
|
|
|
|
* documentation and/or other materials provided with the distribution. *
|
|
|
|
|
* *
|
|
|
|
|
* 3. Neither the name of the copyright holder nor the names of its *
|
|
|
|
|
* contributors may be used to endorse or promote products derived from *
|
|
|
|
|
* this software without specific prior written permission. *
|
|
|
|
|
* *
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS *
|
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED *
|
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *
|
|
|
|
|
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER *
|
|
|
|
|
* OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, *
|
|
|
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, *
|
|
|
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR *
|
|
|
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF *
|
|
|
|
|
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING *
|
|
|
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS *
|
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
|
|
|
|
|
* *
|
2015-04-28 11:54:17 +00:00
|
|
|
* ========================================================================= */
|
2015-04-28 11:33:32 +00:00
|
|
|
|
2011-11-16 09:27:12 +00:00
|
|
|
|
|
|
|
|
/*===========================================================================*\
|
|
|
|
|
* *
|
|
|
|
|
* $Revision$ *
|
|
|
|
|
* $Date$ *
|
|
|
|
|
* *
|
|
|
|
|
\*===========================================================================*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
|
//
|
|
|
|
|
// CLASS NormalConeT - IMPLEMENTATION
|
|
|
|
|
//
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
|
|
#define OPENMESH_NORMALCONE_C
|
|
|
|
|
|
|
|
|
|
//== INCLUDES =================================================================
|
|
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
#include "NormalConeT.hh"
|
|
|
|
|
|
|
|
|
|
#ifdef max
|
|
|
|
|
# undef max
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef min
|
|
|
|
|
# undef min
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//== NAMESPACES ===============================================================
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace OpenMesh {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//== IMPLEMENTATION ==========================================================
|
|
|
|
|
|
|
|
|
|
template <typename Scalar>
|
|
|
|
|
NormalConeT<Scalar>::
|
|
|
|
|
NormalConeT(const Vec3& _center_normal, Scalar _angle)
|
|
|
|
|
: center_normal_(_center_normal), angle_(_angle)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template <typename Scalar>
|
|
|
|
|
Scalar
|
|
|
|
|
NormalConeT<Scalar>::
|
|
|
|
|
max_angle(const Vec3& _norm) const
|
|
|
|
|
{
|
|
|
|
|
Scalar dotp = (center_normal_ | _norm);
|
|
|
|
|
return (dotp >= 1.0 ? 0.0 : (dotp <= -1.0 ? M_PI : acos(dotp)))
|
|
|
|
|
+ angle_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template <typename Scalar>
|
|
|
|
|
Scalar
|
|
|
|
|
NormalConeT<Scalar>::
|
|
|
|
|
max_angle(const NormalConeT& _cone) const
|
|
|
|
|
{
|
|
|
|
|
Scalar dotp = (center_normal_ | _cone.center_normal_);
|
|
|
|
|
Scalar centerAngle = dotp >= 1.0 ? 0.0 : (dotp <= -1.0 ? M_PI : acos(dotp));
|
|
|
|
|
Scalar sideAngle0 = std::max(angle_-centerAngle, _cone.angle_);
|
|
|
|
|
Scalar sideAngle1 = std::max(_cone.angle_-centerAngle, angle_);
|
|
|
|
|
|
|
|
|
|
return centerAngle + sideAngle0 + sideAngle1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template <typename Scalar>
|
|
|
|
|
void
|
|
|
|
|
NormalConeT<Scalar>::
|
|
|
|
|
merge(const NormalConeT& _cone)
|
|
|
|
|
{
|
|
|
|
|
Scalar dotp = (center_normal_ | _cone.center_normal_);
|
|
|
|
|
|
2013-08-15 08:43:04 +00:00
|
|
|
if (fabs(dotp) < 0.99999f)
|
2011-11-16 09:27:12 +00:00
|
|
|
{
|
|
|
|
|
// new angle
|
|
|
|
|
Scalar centerAngle = acos(dotp);
|
|
|
|
|
Scalar minAngle = std::min(-angle(), centerAngle - _cone.angle());
|
|
|
|
|
Scalar maxAngle = std::max( angle(), centerAngle + _cone.angle());
|
2013-08-15 08:43:04 +00:00
|
|
|
angle_ = (maxAngle - minAngle) * Scalar(0.5f);
|
2011-11-16 09:27:12 +00:00
|
|
|
|
|
|
|
|
// axis by SLERP
|
2013-08-15 08:43:04 +00:00
|
|
|
Scalar axisAngle = Scalar(0.5f) * (minAngle + maxAngle);
|
2011-11-16 09:27:12 +00:00
|
|
|
center_normal_ = ((center_normal_ * sin(centerAngle-axisAngle)
|
2012-10-01 07:11:39 +00:00
|
|
|
+ _cone.center_normal_ * sin(axisAngle))
|
|
|
|
|
/ sin(centerAngle));
|
2011-11-16 09:27:12 +00:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// axes point in same direction
|
2013-08-15 08:43:04 +00:00
|
|
|
if (dotp > 0.0f)
|
2011-11-16 09:27:12 +00:00
|
|
|
angle_ = std::max(angle_, _cone.angle_);
|
|
|
|
|
|
|
|
|
|
// axes point in opposite directions
|
|
|
|
|
else
|
2013-08-15 08:43:04 +00:00
|
|
|
angle_ = Scalar(2.0f * M_PI);
|
2011-11-16 09:27:12 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
|
} // namespace OpenMesh
|
|
|
|
|
//=============================================================================
|