/*************************************************************************** * Copyright (c) 2011 Juergen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * * modify it under the terms of the GNU Library General Public * * License as published by the Free Software Foundation; either * * version 2 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 Library General Public License for more details. * * * * You should have received a copy of the GNU Library General Public * * License along with this library; see the file COPYING.LIB. If not, * * write to the Free Software Foundation, Inc., 59 Temple Place, * * Suite 330, Boston, MA 02111-1307, USA * * * ***************************************************************************/ #ifndef PARTDESIGN_Feature_H #define PARTDESIGN_Feature_H #include #include class gp_Pnt; class gp_Pln; /// Base class of all additive features in PartDesign namespace PartDesign { class Body; /** PartDesign feature * Base class of all PartDesign features. * This kind of features only produce solids or fail. */ class PartDesignExport Feature : public Part::Feature { PROPERTY_HEADER(PartDesign::Feature); public: Feature(); /// Base feature which this feature will be fused into or cut out of App::PropertyLink BaseFeature; short mustExecute() const; /// Check whether the given feature is a datum feature static bool isDatum(const App::DocumentObject* feature); /// Returns the body the feature is in, or none Body* getFeatureBody(); /** * Returns the BaseFeature property's object (if any) * @param silent if couldn't determine the base feature and silent == true, * silently return a nullptr, otherwise throw Base::Exception. * Default is false. */ virtual Part::Feature* getBaseObject(bool silent=false) const; /// Returns the BaseFeature property's shape (if any) virtual const TopoDS_Shape& getBaseShape() const; /// Returns the BaseFeature property's TopoShape (if any) const Part::TopoShape getBaseTopoShape() const; virtual PyObject* getPyObject(void); virtual const char* getViewProviderName() const { return "PartDesignGui::ViewProvider"; } protected: /** * Get a solid of the given shape. If no solid is found an exception is raised. */ static TopoDS_Shape getSolid(const TopoDS_Shape&); static int countSolids(const TopoDS_Shape&, TopAbs_ShapeEnum type = TopAbs_SOLID ); /// Grab any point from the given face static const gp_Pnt getPointFromFace(const TopoDS_Face& f); /// Make a shape from a base plane (convenience method) static gp_Pln makePlnFromPlane(const App::DocumentObject* obj); static TopoDS_Shape makeShapeFromPlane(const App::DocumentObject* obj); }; typedef App::FeaturePythonT FeaturePython; } //namespace PartDesign #endif // PARTDESIGN_Feature_H