Files
create/src/Mod/Mesh/App/WildMagic4/Wm4Query2TRational.h
2011-10-10 13:44:52 +00:00

93 lines
3.0 KiB
C++

// Wild Magic Source Code
// David Eberly
// http://www.geometrictools.com
// Copyright (c) 1998-2007
//
// This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation; either version 2.1 of the License, or (at
// your option) any later version. The license is available for reading at
// either of the locations:
// http://www.gnu.org/copyleft/lgpl.html
// http://www.geometrictools.com/License/WildMagicLicense.pdf
// The license applies to versions 0 through 4 of Wild Magic.
//
// Version: 4.0.0 (2006/06/28)
#ifndef WM4QUERY2TRATIONAL_H
#define WM4QUERY2TRATIONAL_H
#include "Wm4FoundationLIB.h"
#include "Wm4Query2.h"
#include "Wm4RVector2.h"
namespace Wm4
{
template <class Real>
class Query2TRational : public Query2<Real>
{
public:
// The components of the input vertices are represented exactly as
// rational values.
Query2TRational (int iVQuantity, const Vector2<Real>* akVertex);
virtual ~Query2TRational ();
// run-time type information
virtual Query::Type GetType () const;
// Queries about the relation of a point to various geometric objects.
virtual int ToLine (int i, int iV0, int iV1) const;
virtual int ToLine (const Vector2<Real>& rkP, int iV0, int iV1) const;
virtual int ToTriangle (int i, int iV0, int iV1, int iV2) const;
virtual int ToTriangle (const Vector2<Real>& rkP, int iV0, int iV1,
int iV2) const;
virtual int ToCircumcircle (int i, int iV0, int iV1, int iV2) const;
virtual int ToCircumcircle (const Vector2<Real>& rkP, int iV0, int iV1,
int iV2) const;
private:
using Query2<Real>::m_iVQuantity;
using Query2<Real>::m_akVertex;
// Caching for rational representations of the input. The conversion of
// floating-point numbers to TRational form is slow, so it is better to
// keep track of which values have been converted.
typedef TRational<4*sizeof(Real)> Rational;
typedef RVector2<4*sizeof(Real)> RVector;
mutable RVector* m_akRVertex;
mutable bool* m_abEvaluated;
void Convert (int iQuantity, int* aiIndex) const;
int ToLine (const RVector& rkRP, int iV0, int iV1) const;
int ToTriangle (const RVector& rkRP, int iV0, int iV1, int iV2) const;
int ToCircumcircle (const RVector& rkRP, int iV0, int iV1, int iV2) const;
static Rational Dot (Rational& rkX0, Rational& rkY0, Rational& rkX1,
Rational& rkY1);
static Rational Det2 (Rational& rkX0, Rational& rkY0, Rational& rkX1,
Rational& rkY1);
static Rational Det3 (Rational& rkX0, Rational& rkY0, Rational& rkZ0,
Rational& rkX1, Rational& rkY1, Rational& rkZ1, Rational& rkX2,
Rational& rkY2, Rational& rkZ2);
};
}
#include "Wm4Query2TRational.inl"
namespace Wm4
{
typedef Query2TRational<float> Query2TRationalf;
typedef Query2TRational<double> Query2TRationald;
}
#endif