printing euler angles (and defgrads and orientations) for individual ips now works

This commit is contained in:
Alankar Alankar 2010-09-08 11:55:57 +00:00
parent 1693bfca47
commit 006dce7d8a
1 changed files with 2 additions and 0 deletions

View File

@ -723,6 +723,8 @@ for increment in increments:
condensedGroupContent = mapFunc(label, groupContent, 'avg') # always average location
if len(groupContent) > 1: # e,n,g nonsense if averaged over more than one entry...
condensedGroupContent[:3] = ['n/a']*3 # ...so return 'n/a'
elif len(groupContent) == 1:
condensedGroupContent = map(str,groupContent[0])
else:
condensedGroupContent = mapFunc(label, groupContent, options.func) # map function to groupContent to get condensed data of this group's chunk
output[-1] += condensedGroupContent