From 2a3d71dcdffaa3a6462a48c8a8240ecfaded086a Mon Sep 17 00:00:00 2001 From: Aashish Chaudhary Date: Thu, 26 May 2016 09:51:16 -0400 Subject: [PATCH] Fixed comment style --- Packages/vcs/vcs/Canvas.py | 158 ++++++++++++++++++------------------- 1 file changed, 79 insertions(+), 79 deletions(-) diff --git a/Packages/vcs/vcs/Canvas.py b/Packages/vcs/vcs/Canvas.py index c8712580c3..cd8cb3822c 100644 --- a/Packages/vcs/vcs/Canvas.py +++ b/Packages/vcs/vcs/Canvas.py @@ -4676,9 +4676,9 @@ def png(self, file, width=None, height=None, file, W, H, units, draw_white_background, **args) ########################################################################## - # # - # pdf wrapper for VCS. # - # # + # # + # pdf wrapper for VCS. # + # # ########################################################################## def pdf(self, file, width=None, height=None, units='inches', textAsObject=True): """ @@ -4967,9 +4967,9 @@ def postscript(self, file, mode='r', orientation=None, width=None, height=None, shutil.move(psnm, file) ########################################################################## - # # - # Showbg wrapper for VCS. # - # # + # # + # Showbg wrapper for VCS. # + # # ########################################################################## def showbg(self, *args): """ @@ -4992,9 +4992,9 @@ def showbg(self, *args): return a ########################################################################## - # # - # Backing Store wrapper for VCS. # - # # + # # + # Backing Store wrapper for VCS. # + # # ########################################################################## def backing_store(self, *args): """ @@ -5010,25 +5010,25 @@ def backing_store(self, *args): return self.canvas.backing_store(*args) ########################################################################## - # # - # Update the animation slab. Used only for the VCS Canvas GUI. # - # # + # # + # Update the animation slab. Used only for the VCS Canvas GUI. # + # # ########################################################################## def update_animation_data(self, *args): return self.canvas.update_animation_data(*args) ########################################################################## - # # - # Return the dimension information. Used only for the VCS Canvas GUI. # - # # + # # + # Return the dimension information. Used only for the VCS Canvas GUI. # + # # ########################################################################## def return_dimension_info(self, *args): return self.canvas.return_dimension_info(*args) ########################################################################## - # # - # Raster wrapper for VCS. # - # # + # # + # Raster wrapper for VCS. # + # # ########################################################################## def raster(self, file, mode='a'): """ @@ -5058,9 +5058,9 @@ def raster(self, file, mode='a'): return self.canvas.raster(*(file, mode)) ########################################################################## - # # - # Reset grid wrapper for VCS. # - # # + # # + # Reset grid wrapper for VCS. # + # # ########################################################################## def resetgrid(self, *args): """ @@ -5075,9 +5075,9 @@ def resetgrid(self, *args): return self.canvas.resetgrid(*args) ########################################################################## - # # - # Script wrapper for VCS. # - # # + # # + # Script wrapper for VCS. # + # # ########################################################################## def _scriptrun(self, *args): return vcs._scriptrun(*args) @@ -5086,9 +5086,9 @@ def scriptrun(self, aFile, *args, **kargs): vcs.scriptrun(aFile, *args, **kargs) ########################################################################## - # # - # Set default graphics method and template wrapper for VCS. # - # # + # # + # Set default graphics method and template wrapper for VCS. # + # # ########################################################################## def set(self, *args): """ @@ -5108,9 +5108,9 @@ def set(self, *args): return self.canvas.set(*args) ########################################################################## - # # - # Set VCS color map wrapper for VCS. # - # # + # # + # Set VCS color map wrapper for VCS. # + # # ########################################################################## def setcolormap(self, name): """ @@ -5140,9 +5140,9 @@ def setcolormap(self, name): return ########################################################################## - # # - # Set VCS color map cell wrapper for VCS. # - # # + # # + # Set VCS color map cell wrapper for VCS. # + # # ########################################################################## def setcolorcell(self, *args): """ @@ -5312,9 +5312,9 @@ def gif(self, filename='noname.gif', merge='r', orientation=None, return self.backend.gif(nargs) ########################################################################## - # # - # Screen GhostScript (gs) wrapper for VCS. # - # # + # # + # Screen GhostScript (gs) wrapper for VCS. # + # # ########################################################################## def gs(self, filename='noname.gs', device='png256', orientation=None, resolution='792x612'): @@ -5322,9 +5322,9 @@ def gs(self, filename='noname.gs', device='png256', warnings.warn("Export to GhostScript is no longer supported", DeprecationWarning) ########################################################################## - # # - # Screen Encapsulated PostScript wrapper for VCS. # - # # + # # + # Screen Encapsulated PostScript wrapper for VCS. # + # # ########################################################################## def eps(self, file, mode='r', orientation=None, width=None, height=None, units='inches', left_margin=None, right_margin=None, top_margin=None, bottom_margin=None): @@ -5373,18 +5373,18 @@ def eps(self, file, mode='r', orientation=None, width=None, height=None, units=' os.remove(tmpfile) ########################################################################## - # # - # Show VCS primary and secondary elements wrapper for VCS. # - # # + # # + # Show VCS primary and secondary elements wrapper for VCS. # + # # ########################################################################## def show(self, *args): return vcs.show(*args) show.__doc__ = vcs.__doc__ ########################################################################## - # # - # Look if a graphic method is in a file . # - # # + # # + # Look if a graphic method is in a file . # + # # ########################################################################## def isinfile(self, GM, file=None): """ Checks if a graphic method is stored in a file @@ -5404,9 +5404,9 @@ def isinfile(self, GM, file=None): return 1 return 0 ########################################################################## - # # - # Save VCS initial.attribute file wrapper for VCS. # - # # + # # + # Save VCS initial.attribute file wrapper for VCS. # + # # ########################################################################## def saveinitialfile(self): @@ -5443,9 +5443,9 @@ def saveinitialfile(self): return vcs.saveinitialfile() ########################################################################## - # # - # Raise VCS Canvas to the top of all its siblings. # - # # + # # + # Raise VCS Canvas to the top of all its siblings. # + # # ########################################################################## def canvasraised(self, *args): """ @@ -5465,10 +5465,10 @@ def canvasraised(self, *args): return self.backend.canvasraised(*args) ########################################################################## - # # - # Returns 1 if a VCS Canvas is displayed on the screen. Returns a 0 if no # - # VCS Canvas is displayed on the screen. # - # # + # # + # Returns 1 if a VCS Canvas is displayed on the screen. Returns a 0 if no# + # VCS Canvas is displayed on the screen. # + # # ########################################################################## def iscanvasdisplayed(self, *args): """ @@ -5488,9 +5488,9 @@ def iscanvasdisplayed(self, *args): return self.canvas.iscanvasdisplayed(*args) ########################################################################## - # # - # Is VCS's orientation landscape? # - # # + # # + # Is VCS's orientation landscape? # + # # ########################################################################## def islandscape(self): """ @@ -5515,9 +5515,9 @@ def islandscape(self): return 0 ########################################################################## - # # - # Is VCS's orientation portrait? # - # # + # # + # Is VCS's orientation portrait? # + # # ########################################################################## def isportrait(self): """ @@ -5541,9 +5541,9 @@ def isportrait(self): else: return 0 ########################################################################## - # # - # Dislplay plot functions for VCS. # - # # + # # + # Dislplay plot functions for VCS. # + # # ########################################################################## def getplot(self, Dp_name_src='default', template=None): @@ -5570,9 +5570,9 @@ def getplot(self, Dp_name_src='default', template=None): return display ########################################################################## - # # - # Colormap functions for VCS. # - # # + # # + # Colormap functions for VCS. # + # # ########################################################################## def createcolormap(self, Cp_name=None, Cp_name_src='default'): return vcs.createcolormap(Cp_name, Cp_name_src) @@ -5583,9 +5583,9 @@ def getcolormap(self, Cp_name_src='default'): getcolormap.__doc__ = vcs.manageElements.getcolormap.__doc__ ########################################################################## - # # - # Font functions. # - # # + # # + # Font functions. # + # # ########################################################################## def addfont(self, path, name=""): """ @@ -5698,9 +5698,9 @@ def setdefaultfont(self, font): return self.copyfontto(font, 1) ########################################################################## - # # - # Orientation VCS Canvas orientation wrapper for VCS. # - # # + # # + # Orientation VCS Canvas orientation wrapper for VCS. # + # # ########################################################################## def orientation(self, *args, **kargs): """ @@ -5716,9 +5716,9 @@ def orientation(self, *args, **kargs): return self.backend.orientation(*args, **kargs) ########################################################################## - # # - # Get VCS color map cell wrapper for VCS. # - # # + # # + # Get VCS color map cell wrapper for VCS. # + # # ########################################################################## def getcolorcell(self, *args): """ @@ -5750,9 +5750,9 @@ def getcolorcell(self, *args): return vcs.getcolorcell(args[0], self) ########################################################################## - # # - # Get VCS color map name wrapper for VCS. # - # # + # # + # Get VCS color map name wrapper for VCS. # + # # ########################################################################## def getcolormapname(self, *args): """