]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
Mantis issue 0021392: EDF 1631 GEOM: Dump study of sketcher 3D with relatives coordin...
authorjfa <jfa@opencascade.com>
Thu, 6 Sep 2012 13:35:58 +0000 (13:35 +0000)
committerjfa <jfa@opencascade.com>
Thu, 6 Sep 2012 13:35:58 +0000 (13:35 +0000)
src/GEOM_SWIG/geompyDC.py

index ab31173d613f3515ca643513a493c836522932b7..b28726d44b14b330fbe96ce83c440560adc87eff 100644 (file)
@@ -8870,7 +8870,6 @@ class Sketcher3D:
     for cc in listCoords:
       if ii == 1:
         self.myCommand = self.myCommand + ":TT"
-      #self.myCommand = self.myCommand + " %.7f"%cc
       self.myCommand = self.myCommand + " %s"%printVar(cc)
       if ii == 3:
         ii = 1
@@ -8883,7 +8882,6 @@ class Sketcher3D:
     for cc in listCoords:
       if ii == 1:
         self.myCommand = self.myCommand + ":T"
-      #self.myCommand = self.myCommand + " %.7f"%cc
       self.myCommand = self.myCommand + " %s"%printVar(cc)
       if ii == 3:
         ii = 1
@@ -8893,7 +8891,6 @@ class Sketcher3D:
 
   ## axes can be: "OXY", "OYZ" or "OXZ"
   def addPointAnglesLength (self, axes, angle1, angle2, length):
-    #self.myCommand = self.myCommand + ":%s %.7f %.7f %.7f" % (axes, angle1, angle2, length)
     self.myCommand = self.myCommand + ":%s %s %s %s" % (axes, printVar(angle1), printVar(angle2), printVar(length))
     pass
 
@@ -8903,9 +8900,7 @@ class Sketcher3D:
 
   ## Obtain the sketcher result
   def wire (self):
-    print "myCommand =", self.myCommand
     Command,Parameters = ParseSketcherCommand(self.myCommand)
-    print "Command =", Command
     wire = self.geompyD.CurvesOp.Make3DSketcherCommand(Command)
     self.myCommand = "3DSketcher"
     RaiseIfFailed("Sketcher3D", self.geompyD.CurvesOp)