File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ class BasePoseMatrix(BasePoseList):
102
102
_bgcolor = None
103
103
_constcolor = 'grey_50'
104
104
_indexcolor = (None , 'yellow_2' )
105
- _format = '{:< 12g }'
105
+ _format = '{:< 9.4g }'
106
106
_suppress_small = True
107
107
_suppress_tol = 100
108
108
_color = _colored
@@ -766,7 +766,7 @@ def mformat(self, X):
766
766
out = ''
767
767
n = self .N # dimension of rotation submatrix
768
768
for rownum , row in enumerate (X ):
769
- rowstr = ' '
769
+ rowstr = ' '
770
770
# format the columns
771
771
for colnum , element in enumerate (row ):
772
772
if sym .issymbol (element ):
@@ -786,7 +786,7 @@ def mformat(self, X):
786
786
else :
787
787
# bottom row
788
788
s = constcol + bgcol + s + reset
789
- rowstr += s
789
+ rowstr += ' ' + s
790
790
out += rowstr + bgcol + ' ' + reset + '\n '
791
791
return out
792
792
You can’t perform that action at this time.
0 commit comments