Salome HOME
Fix for the issue #898: sketch coordinates on the standard planes.
authormpv <mpv@opencascade.com>
Mon, 14 Sep 2015 11:16:43 +0000 (14:16 +0300)
committermpv <mpv@opencascade.com>
Mon, 14 Sep 2015 11:16:43 +0000 (14:16 +0300)
src/PartSet/PartSet_WidgetSketchLabel.cpp
src/SketchPlugin/SketchPlugin_Sketch.cpp

index e0e33ddfef811db5d381cac98449ac760f96fc66..5b63142db203f2ed690463c4597ed8c9e45640c0 100644 (file)
@@ -337,7 +337,7 @@ void PartSet_WidgetSketchLabel::showPreviewPlanes()
     // Create Preview
     std::shared_ptr<GeomAPI_Pnt> anOrigin(new GeomAPI_Pnt(0, 0, 0));
     std::shared_ptr<GeomAPI_Dir> aYZDir(new GeomAPI_Dir(1, 0, 0));
-    std::shared_ptr<GeomAPI_Dir> aXZDir(new GeomAPI_Dir(0, 1, 0));
+    std::shared_ptr<GeomAPI_Dir> aXZDir(new GeomAPI_Dir(0, -1, 0));
     std::shared_ptr<GeomAPI_Dir> aXYDir(new GeomAPI_Dir(0, 0, 1));
 
     std::vector<int> aYZRGB, aXZRGB, aXYRGB;
index 2a5dd0944780f0c7e21decd6617dd180b335de41..972c956933dabe339a0c71183b85a6f8bf307003 100644 (file)
@@ -9,12 +9,9 @@
 #include <GeomAlgoAPI_CompoundBuilder.h>
 #include <GeomAlgoAPI_FaceBuilder.h>
 
-#include <GeomAPI_AISObject.h>
 #include <GeomAPI_Dir.h>
 #include <GeomAPI_PlanarEdges.h>
 
-#include <GeomAlgoAPI_FaceBuilder.h>
-
 #include <GeomDataAPI_Point2D.h>
 #include <GeomAlgoAPI_PointBuilder.h>