20 #ifndef SKETCHPLUGIN_TOOLS_H_
21 #define SKETCHPLUGIN_TOOLS_H_
23 #include <GeomAPI_Pnt2d.h>
25 #include <ModelAPI_Feature.h>
26 #include <ModelAPI_Attribute.h>
27 #include <ModelAPI_AttributeRefAttr.h>
28 #include <GeomAPI_Shape.h>
29 #include <GeomAPI_AISObject.h>
30 #include <GeomDataAPI_Point2D.h>
31 #include <GeomDataAPI_Point2DArray.h>
32 #include <GeomAlgoAPI_ShapeTools.h>
43 namespace SketchPlugin_Tools {
46 void clearExpressions(FeaturePtr theFeature);
50 std::shared_ptr<GeomAPI_Pnt2d> getCoincidencePoint(
const FeaturePtr theStartCoin);
53 std::set<FeaturePtr> findCoincidentConstraints(
const ObjectPtr& theObject);
60 void findCoincidences(
const FeaturePtr theStartCoin,
61 const std::string& theAttr,
62 std::set<FeaturePtr>& theList,
63 const bool theIsAttrOnly =
false);
66 std::set<FeaturePtr> findFeaturesCoincidentToPoint(
const AttributePoint2DPtr& thePoint);
69 std::set<AttributePoint2DPtr> findPointsCoincidentToPoint(
const AttributePoint2DPtr& thePoint);
79 const std::string& theConstraintId,
80 const AttributePtr& theFirstAttribute,
81 const AttributePtr& theSecondAttribute);
89 const std::string& theConstraintId,
90 const AttributePtr& theFirstAttribute,
91 const ObjectPtr& theSecondObject);
99 const std::string& theConstraintId,
100 const ObjectPtr& theFirstObject,
101 const ObjectPtr& theSecondObject);
110 const std::string& theId,
111 const AttributePtr theAttr,
112 const ObjectPtr theObject,
113 const bool theIsCanBeTangent);
119 void createAuxiliaryPointOnEllipse(
const FeaturePtr& theEllipseFeature,
120 const std::string& theAttrName);
126 void createAuxiliaryAxisOfEllipse(
const FeaturePtr& theEllipseFeature,
127 const std::string& theStartAttr,
128 const std::string& theEndAttr);
135 void convertRefAttrToPointOrTangentCurve(
const AttributeRefAttrPtr& theRefAttr,
136 const AttributePtr& theDefaultAttr,
137 std::shared_ptr<GeomAPI_Shape>& theTangentCurve,
138 std::shared_ptr<GeomAPI_Pnt2d>& thePassingPoint);
141 GeomPnt2dPtr flyoutPointCoordinates(
const std::shared_ptr<SketchPlugin_Constraint>& theConstraint);
146 void customizeFeaturePrs(
const AISObjectPtr& thePrs,
bool isAxiliary);
148 void setDimensionColor(
const AISObjectPtr& theDimPrs);
151 void replaceInName(ObjectPtr theObject,
const std::wstring& theSource,
const std::wstring& theDest);
155 namespace SketchPlugin_SegmentationTools
162 void getFeaturePoints(
const FeaturePtr& theFeature,
163 std::shared_ptr<GeomDataAPI_Point2D>& theStartPointAttr,
164 std::shared_ptr<GeomDataAPI_Point2D>& theEndPointAttr);
174 void getRefAttributes(
const FeaturePtr& theFeature,
175 std::map<AttributePtr, std::list<AttributePtr> >& theRefs,
176 std::list<AttributePtr>& theRefsToFeature);
182 GeomShapePtr getSubShape(
184 const std::string& theObjectAttributeId,
185 const std::string& thePointAttributeId,
186 std::map<ObjectPtr, std::set<GeomShapePtr> >& theCashedShapes,
187 std::map<ObjectPtr, GeomAlgoAPI_ShapeTools::PointToRefsMap>& theObjectToPoints);
193 void fillObjectShapes(
195 const ObjectPtr& theObject,
196 std::map<ObjectPtr, std::set<GeomShapePtr> >& theCashedShapes,
197 std::map<ObjectPtr, GeomAlgoAPI_ShapeTools::PointToRefsMap>& theObjectToPoints);
202 std::shared_ptr<GeomAPI_AISObject> getAISObject(std::shared_ptr<GeomAPI_AISObject> thePrevious,
204 const std::string& thePreviewObjectAttrName,
205 const std::string& thePreviewPointAttrName,
206 const std::string& theSelectedObjectAttrName,
207 const std::string& theSelectedPointAttrName);
213 void updateRefAttConstraints(
214 const std::map<AttributePtr, std::list<AttributePtr> >& theBaseRefAttributes,
215 const std::set<std::pair<AttributePtr, AttributePtr> >& theModifiedAttributes);
219 void updateFeaturesAfterOperation(
const std::set<FeaturePtr>& theFeaturesToUpdate);
226 FeaturePtr createLineFeature(
const FeaturePtr& theBaseFeature,
227 const std::shared_ptr<GeomAPI_Pnt2d>& theFirstPoint,
228 const std::shared_ptr<GeomAPI_Pnt2d>& theSecondPoint);
235 FeaturePtr createArcFeature(
236 const FeaturePtr& theBaseFeature,
237 const std::shared_ptr<GeomAPI_Pnt2d>& theFirstPoint,
238 const std::shared_ptr<GeomAPI_Pnt2d>& theSecondPoint);
Interface for AIS_InteractiveObject.
Definition: GeomAPI_AISObject.h:39
Abstract interface to the SketchPlugin_ConstraintBase For more info see: SketchPlugin_ConstraintBase....
Definition: SketchPlugin_Constraint.h:35
Feature for creation of the new feature in PartSet.
Definition: SketchPlugin_Feature.h:40
Feature for creation of the new part in PartSet.
Definition: SketchPlugin_Sketch.h:47