]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
0022531: [CEA 1112] the point markers o and x are inverted
authorimn <imn@opencascade.com>
Fri, 28 Mar 2014 11:39:34 +0000 (15:39 +0400)
committerimn <imn@opencascade.com>
Fri, 28 Mar 2014 11:39:34 +0000 (15:39 +0400)
idl/GEOM_Gen.idl
resources/marker_10.png
resources/marker_11.png
resources/marker_12.png
resources/marker_13.png
resources/marker_4.png
resources/marker_5.png
src/GEOM/GEOM_Engine.cxx

index 542a1e8e8defdbc6ed2f3ffadfbcb0dd71df4ef2..9950494cbc06c0656dc1efa25db7b08afa841770 100644 (file)
@@ -61,8 +61,8 @@ module GEOM
   /*!
    * \brief Marker type
    */
-  enum marker_type { MT_NONE, MT_POINT, MT_PLUS, MT_STAR, MT_O, MT_X, MT_O_POINT, MT_O_PLUS,
-                     MT_O_STAR, MT_O_X, MT_BALL, MT_RING1, MT_RING2, MT_RING3, MT_USER };
+  enum marker_type { MT_NONE, MT_POINT, MT_PLUS, MT_STAR, MT_X, MT_O, MT_O_POINT, MT_O_PLUS,
+                     MT_O_STAR, MT_O_X, MT_RING1, MT_RING2, MT_RING3, MT_BALL, MT_USER };
 
   /*!
    * /brief Marker size
index aa7d857472f6d984f42f1e401041772d808b2658..ed1935ae1c381274d7ad4d8bc32031af03e9bcc5 100755 (executable)
Binary files a/resources/marker_10.png and b/resources/marker_10.png differ
index ed1935ae1c381274d7ad4d8bc32031af03e9bcc5..b6c09964b43f82cafffc9314326063a98f946eaa 100755 (executable)
Binary files a/resources/marker_11.png and b/resources/marker_11.png differ
index b6c09964b43f82cafffc9314326063a98f946eaa..16162a752649e417dc92d6cf333ecd00fe86bde1 100755 (executable)
Binary files a/resources/marker_12.png and b/resources/marker_12.png differ
index 16162a752649e417dc92d6cf333ecd00fe86bde1..aa7d857472f6d984f42f1e401041772d808b2658 100755 (executable)
Binary files a/resources/marker_13.png and b/resources/marker_13.png differ
index 78c8055325e4c2bc3fa924015482adbf401fb3f2..a994c1100412a856d0609296d30fa92a841f1fa2 100755 (executable)
Binary files a/resources/marker_4.png and b/resources/marker_4.png differ
index a994c1100412a856d0609296d30fa92a841f1fa2..78c8055325e4c2bc3fa924015482adbf401fb3f2 100755 (executable)
Binary files a/resources/marker_5.png and b/resources/marker_5.png differ
index 940294a9189dc40107f85c36988cb008092a8fdb..9d804abfdd02b1afda5fdd9d44ec4d9ff0a56657 100644 (file)
@@ -1615,16 +1615,16 @@ void AddObjectColors (int                      theDocID,
       case Aspect_TOM_POINT:   aCommand += "GEOM.MT_POINT";   break;
       case Aspect_TOM_PLUS:    aCommand += "GEOM.MT_PLUS";    break;
       case Aspect_TOM_STAR:    aCommand += "GEOM.MT_STAR";    break;
-      case Aspect_TOM_O:       aCommand += "GEOM.MT_O";       break;
       case Aspect_TOM_X:       aCommand += "GEOM.MT_X";       break;
+      case Aspect_TOM_O:       aCommand += "GEOM.MT_O";       break;
       case Aspect_TOM_O_POINT: aCommand += "GEOM.MT_O_POINT"; break;
       case Aspect_TOM_O_PLUS:  aCommand += "GEOM.MT_O_PLUS";  break;
       case Aspect_TOM_O_STAR:  aCommand += "GEOM.MT_O_STAR";  break;
       case Aspect_TOM_O_X:     aCommand += "GEOM.MT_O_X";     break;
-      case Aspect_TOM_BALL:    aCommand += "GEOM.MT_BALL";    break;
       case Aspect_TOM_RING1:   aCommand += "GEOM.MT_RING1";   break;
       case Aspect_TOM_RING2:   aCommand += "GEOM.MT_RING2";   break;
       case Aspect_TOM_RING3:   aCommand += "GEOM.MT_RING3";   break;
+      case Aspect_TOM_BALL:    aCommand += "GEOM.MT_BALL";    break;
       default:                 aCommand += "GEOM.MT_NONE";    break; // just for completeness, should not get here
       }
       aCommand += ", ";