From 41d1a2c61190b79b8de058ef77d8fbc3bad8cec5 Mon Sep 17 00:00:00 2001 From: jfa Date: Thu, 6 Sep 2012 13:35:58 +0000 Subject: [PATCH] Mantis issue 0021392: EDF 1631 GEOM: Dump study of sketcher 3D with relatives coordinates. --- src/GEOM_SWIG/geompyDC.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/GEOM_SWIG/geompyDC.py b/src/GEOM_SWIG/geompyDC.py index ab31173d6..b28726d44 100644 --- a/src/GEOM_SWIG/geompyDC.py +++ b/src/GEOM_SWIG/geompyDC.py @@ -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) -- 2.39.2