Salome HOME
Add dumping named of copied entities in the sketch (issue #1924)
[modules/shaper.git] / src / Model / Model_ResultPart.h
index 220e1b408f50e5a6eb7cac65884bb98a818d7b67..6657705d56cf2c9567d3e7c75b1efcaa683d188f 100644 (file)
  */
 class Model_ResultPart : public ModelAPI_ResultPart
 {
-  TopoDS_Shape myShape; ///< shape of this part created from bodies (updated only of Part deactivation)
-  std::shared_ptr<gp_Trsf> myTrsf; ///< if it is just copy of original shape, keep just transformation
-  bool myIsInLoad; ///< true if document of this part is in the loading process, so, it may be already received
+  /// shape of this part created from bodies (updated only of Part deactivation)
+  TopoDS_Shape myShape;
+  /// if it is just copy of original shape, keep just transformation
+  std::shared_ptr<gp_Trsf> myTrsf;
  public:
 
-  /// the reference to the base result document, may be null if this is the root, others make sequence of references
+  /// the reference to the base result document, may be null if this is the root,
+  /// others make sequence of references
   inline static const std::string& BASE_REF_ID()
   {
     static const std::string MY_BASE_REF("BaseReference");
@@ -37,7 +39,7 @@ class Model_ResultPart : public ModelAPI_ResultPart
   /// Returns the part-document of this result
   MODEL_EXPORT virtual std::shared_ptr<ModelAPI_Document> partDoc();
 
-  /// Returns the original part result: for transfomration features results this is 
+  /// Returns the original part result: for transfomration features results this is
   /// the original Part feature result
   MODEL_EXPORT virtual std::shared_ptr<ModelAPI_ResultPart> original();
 
@@ -66,7 +68,7 @@ class Model_ResultPart : public ModelAPI_ResultPart
   /// Updates the shape-result of the part (called on Part feature execution)
   MODEL_EXPORT virtual void updateShape();
   /// Applies the additional transformation of the part
-  MODEL_EXPORT virtual void setTrsf(std::shared_ptr<ModelAPI_Result> theThis, 
+  MODEL_EXPORT virtual void setTrsf(std::shared_ptr<ModelAPI_Result> theThis,
     const std::shared_ptr<GeomAPI_Trsf>& theTransformation);
 
   /// Returns the parameters of color definition in the resources config manager
@@ -80,6 +82,9 @@ protected:
   /// makes a result on a temporary feature (an action)
   Model_ResultPart();
 
+  /// returns sum of transformations of the whole sequence of transformation-parts
+  gp_Trsf sumTrsf();
+
   /// Returns true if document is activated (loaded into the memory)
   virtual bool isActivated();