--- /home/sjplimp/oldpizza/src/svg.py 2005-09-13 09:39:26.000000000 -0600 +++ /home/sjplimp/pizza/src/svg.py 2005-09-09 08:39:20.000000000 -0600 @@ -23,6 +23,7 @@ s.zoom(0.5) scale image by factor (def = 1) s.box(0/1/2) 0/1/2 = none/variable/fixed box s.file = "image" file prefix for created images (def = "image") +s.thick = 2.0 pixel thickness of black atom border s.show(N) show image of snapshot at timestep N @@ -127,6 +128,7 @@ self.labels = [] self.panflag = 0 self.select = "" + self.thick = 1.0 self.max_x = 512 self.max_y = 512 @@ -386,7 +388,7 @@ header = ' ' % \ (self.max_y,self.max_x) - header += '' + header += '' print >>f,header color = ' self.vizinfo.nacolor: itype = 1 color = self.vizinfo.acolor[itype] rad = self.vizinfo.arad[itype] - print >>f,'' % \ + print >>f,'' % \ (obj[2],obj[3],rad*self.factor, - color[0]*255,color[1]*255,color[2]*255) + color[0]*255,color[1]*255,color[2]*255,self.thick) if obj[0] == 1: # bond with its color and radius itype = int(obj[1]) @@ -512,7 +514,7 @@ itype = int(obj[1]) if itype > self.vizinfo.ntcolor: itype = 1 color = self.vizinfo.tcolor[itype] - print >>f,'' % \ + print >>f,'' % \ (obj[2],obj[3],obj[5],obj[6],obj[8],obj[9], color[0]*255,color[1]*255,color[2]*255) --- /home/sjplimp/oldpizza/doc/svg.txt 2005-09-13 09:39:26.000000000 -0600 +++ /home/sjplimp/pizza/doc/svg.txt 2005-09-09 18:05:51.000000000 -0600 @@ -74,7 +74,8 @@ s.trans(x,y) translate by x,y in view window (def = 0,0) s.zoom(0.5) scale image by factor (def = 1) s.box(0/1/2) 0/1/2 = none/variable/fixed box -s.file = "image" file prefix for created images (def = "image") :pre +s.file = "image" file prefix for created images (def = "image") +s.thick = 2.0 pixel thickness of black atom border :pre s.show(N) show image of snapshot at timestep N :pre --- /home/sjplimp/oldpizza/doc/svg.html 2005-09-13 09:39:26.000000000 -0600 +++ /home/sjplimp/pizza/doc/svg.html 2005-09-13 09:17:16.000000000 -0600 @@ -77,7 +77,8 @@ s.trans(x,y) translate by x,y in view window (def = 0,0) s.zoom(0.5) scale image by factor (def = 1) s.box(0/1/2) 0/1/2 = none/variable/fixed box -s.file = "image" file prefix for created images (def = "image") +s.file = "image" file prefix for created images (def = "image") +s.thick = 2.0 pixel thickness of black atom border
s.show(N)                   show image of snapshot at timestep N