X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Shape.h;h=4e148978cd162140c5b9316ebd6ef0e5d89c9c6a;hb=4df4bd61da1ea5d357671c819a8ced6ec9ba77ac;hp=8a9d3b26c9a1b81076ec086b292bb0f328ec0318;hpb=c80e8ac643930b858f4f653e2659896ba587b165;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Shape.h b/src/GeomAPI/GeomAPI_Shape.h index 8a9d3b26c..4e148978c 100644 --- a/src/GeomAPI/GeomAPI_Shape.h +++ b/src/GeomAPI/GeomAPI_Shape.h @@ -1,23 +1,159 @@ -// File: GeomAPI_Shape.hxx -// Created: 23 Apr 2014 -// Author: Mikhail PONIKAROV +// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// +// 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. +// +// 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. +// +// 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 +// +// See http://www.salome-platform.org/ or +// email : webmaster.salome@opencascade.com +// -#ifndef GeomAPI_Shape_HeaderFile -#define GeomAPI_Shape_HeaderFile +#ifndef GeomAPI_Shape_H_ +#define GeomAPI_Shape_H_ + +#include "GeomAPI_Dir.h" #include +#include +#include /**\class GeomAPI_Shape * \ingroup DataModel * \brief Interface to the topological shape object */ - -class GEOMAPI_EXPORT GeomAPI_Shape: public GeomAPI_Interface +class GeomAPI_Shape : public GeomAPI_Interface { public: + /// Shape type enum + enum ShapeType { + COMPOUND, COMPSOLID, SOLID, SHELL, + FACE, WIRE, EDGE, VERTEX, + SHAPE + }; + + /// Shape orientation + enum Orientation { + FORWARD, + REVERSED, + INTERNAL, + EXTERNAL + }; + + public: /// Creation of empty (null) shape + GEOMAPI_EXPORT GeomAPI_Shape(); + + /// \return a new Shape with the same Orientation and Location and a new TShape with the same + /// geometry and no sub-shapes. + GEOMAPI_EXPORT std::shared_ptr emptyCopied() const; + + /// Returns true if the underlied shape is null + GEOMAPI_EXPORT + bool isNull() const; + + /// Returns whether the shapes are equal + GEOMAPI_EXPORT + virtual bool isEqual(const std::shared_ptr theShape) const; + + /// Returns whether the shapes are same + GEOMAPI_EXPORT + virtual bool isSame(const std::shared_ptr theShape) const; + + /// Returns whether the shape is a vertex + GEOMAPI_EXPORT + virtual bool isVertex() const; + + /// Returns whether the shape is an edge + GEOMAPI_EXPORT + virtual bool isEdge() const; + + /// Returns whether the shape is a face + GEOMAPI_EXPORT + virtual bool isFace() const; + + /// Returns whether the shape is a compound + GEOMAPI_EXPORT + virtual bool isCompound() const; + + /// Returns whether the shape is a compound of solids + GEOMAPI_EXPORT + virtual bool isCompoundOfSolids() const; + + /// Returns whether the shape is a compound where all elements are topologically connected + GEOMAPI_EXPORT + virtual bool isConnectedTopology() const; + + /// Returns whether the shape is a solid + GEOMAPI_EXPORT + virtual bool isSolid() const; + + /// Returns whether the shape is a compsolid + GEOMAPI_EXPORT + virtual bool isCompSolid() const; + + /// Returns whether the shape is planar + GEOMAPI_EXPORT + virtual bool isPlanar() const; + + /// Returns the shape type + GEOMAPI_EXPORT + virtual ShapeType shapeType() const; + + /// Returns the type enumeration by the string-type + GEOMAPI_EXPORT static ShapeType shapeTypeByStr(std::string theType); + + /// \return the shape type as string. + GEOMAPI_EXPORT + virtual std::string shapeTypeStr() const; + + /// \return the shape orientation. + GEOMAPI_EXPORT virtual Orientation orientation() const; + + /// Sets the shape orientation. + GEOMAPI_EXPORT virtual void setOrientation(const Orientation theOrientation); + + /// \return true if passed shape is a sub-shape of this shape. + /// \param theShape shape to search. + GEOMAPI_EXPORT virtual bool isSubShape(const std::shared_ptr theShape) const; + + /// Computes boundary dimensions of the shape + /// Returns False if it is not possible + GEOMAPI_EXPORT + bool computeSize(double& theXmin, double& theYmin, double& theZmin, + double& theXmax, double& theYmax, double& theZmax) const; + + /// Returns the shape as BRep stream + GEOMAPI_EXPORT + std::string getShapeStream() const; + + /// Returns intersection of shapes + GEOMAPI_EXPORT + std::shared_ptr intersect(const std::shared_ptr theShape) const; + + /// Returns true if min distance between shapes < tolerance. + GEOMAPI_EXPORT + bool isIntersect(const std::shared_ptr theShape) const; + + // Translates the shape along the direction for the given offset + GEOMAPI_EXPORT + void translate(const std::shared_ptr theDir, const double theOffset); }; -#endif +//! Pointer on list of shapes +typedef std::list > ListOfShape; + +//! Pointer on attribute object +typedef std::shared_ptr GeomShapePtr; +#endif