geom/src/GEOMAlgo/GEOMAlgo_Clsf.hxx

88 lines
2.5 KiB
C++
Raw Normal View History

2012-06-05 17:33:32 +06:00
// Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
//
2011-06-06 13:23:11 +06:00
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
//
2011-06-06 13:23:11 +06:00
// 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.
//
2011-06-06 13:23:11 +06:00
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
2009-02-13 17:16:39 +05:00
//
2011-06-06 13:23:11 +06:00
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2009-02-13 17:16:39 +05:00
//
2011-06-06 13:23:11 +06:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
//
2010-05-14 21:15:28 +06:00
2012-06-05 17:33:32 +06:00
// File: GEOMAlgo_Clsf.hxx
// Created: Wed Nov 22 10:23:04 2006
// Author: Peter KURNEV
// <pkv@irinox>
//
#ifndef _GEOMAlgo_Clsf_HeaderFile
#define _GEOMAlgo_Clsf_HeaderFile
#include <Standard.hxx>
2012-06-05 17:33:32 +06:00
#include <Standard_DefineHandle.hxx>
//#include <Handle_GEOMAlgo_Clsf.hxx>
#include <TopAbs_State.hxx>
#include <gp_Pnt.hxx>
#include <Standard_Real.hxx>
#include <GEOMAlgo_HAlgo.hxx>
#include <Standard_Boolean.hxx>
#include <Handle_Geom_Curve.hxx>
#include <Handle_Geom_Surface.hxx>
2012-06-05 17:33:32 +06:00
#include <Geom_Curve.hxx>
#include <Geom_Surface.hxx>
2012-06-05 17:33:32 +06:00
DEFINE_STANDARD_HANDLE(GEOMAlgo_Clsf, GEOMAlgo_HAlgo);
2012-06-05 17:33:32 +06:00
//=======================================================================
//class : GEOMAlgo_Clsf
//purpose :
//=======================================================================
class GEOMAlgo_Clsf : public GEOMAlgo_HAlgo
{
public:
Standard_EXPORT
void SetPnt(const gp_Pnt& aP) ;
2012-06-05 17:33:32 +06:00
Standard_EXPORT
const gp_Pnt& Pnt() const;
2012-06-05 17:33:32 +06:00
Standard_EXPORT
void SetTolerance(const Standard_Real aT) ;
2012-06-05 17:33:32 +06:00
Standard_EXPORT
Standard_Real Tolerance() const;
2012-06-05 17:33:32 +06:00
Standard_EXPORT
TopAbs_State State() const;
2012-06-05 17:33:32 +06:00
Standard_EXPORT
virtual Standard_Boolean CanBeON(const Handle(Geom_Curve)& aCT) const;
2012-06-05 17:33:32 +06:00
Standard_EXPORT
virtual Standard_Boolean CanBeON(const Handle(Geom_Surface)& aST) const;
2012-06-05 17:33:32 +06:00
DEFINE_STANDARD_RTTI(GEOMAlgo_Clsf);
2012-06-05 17:33:32 +06:00
protected:
Standard_EXPORT
GEOMAlgo_Clsf();
2012-06-05 17:33:32 +06:00
Standard_EXPORT
virtual ~GEOMAlgo_Clsf();
2012-06-05 17:33:32 +06:00
TopAbs_State myState;
gp_Pnt myPnt;
Standard_Real myTolerance;
};
#endif