X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FSketcherPrs%2FSketcherPrs_PositionMgr.h;h=d91e9af32dc235cab9397c65b1f8fdc0c487fbb7;hb=d915f243c36fb3863c3bc10d057f0c63d13c49eb;hp=65a2aa06827c3407fe1e780c5fddb95b70d48f58;hpb=e7f1ac7ab6a29efa09daecae84b2add0ff630c8d;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_PositionMgr.h b/src/SketcherPrs/SketcherPrs_PositionMgr.h index 65a2aa068..d91e9af32 100644 --- a/src/SketcherPrs/SketcherPrs_PositionMgr.h +++ b/src/SketcherPrs/SketcherPrs_PositionMgr.h @@ -27,30 +27,31 @@ public: static SketcherPrs_PositionMgr* get(); /// Returns position of symbol for the given presentation - /// \param theLine constrained object + /// \param theLine constrained object /// \param thePrs a presentation of constraint - gp_Pnt getPosition(ObjectPtr theLine, Handle(SketcherPrs_SymbolPrs) thePrs); + /// \param theStep step between symbols + gp_Pnt getPosition(ObjectPtr theLine, const SketcherPrs_SymbolPrs* thePrs, double theStep = 20); /// Deletes constraint object from internal structures. Has to be called on constraint delete. /// \param thePrs a constraint presentation - void deleteConstraint(Handle(SketcherPrs_SymbolPrs) thePrs); + void deleteConstraint(const SketcherPrs_SymbolPrs* thePrs); private: /// Constructor SketcherPrs_PositionMgr(); /// Returns position index of the given constraint - /// \param theLine constrained object + /// \param theLine constrained object /// \param thePrs a presentation of constraint - int getPositionIndex(ObjectPtr theLine, Handle(SketcherPrs_SymbolPrs) thePrs); + int getPositionIndex(ObjectPtr theLine, const SketcherPrs_SymbolPrs* thePrs); private: - typedef std::map PositionsMap; + typedef std::map PositionsMap; /// The map which contains position of presentation PositionsMap myIndexes; - /// The map contains position index + /// The map contains position index std::map myShapes; };