Change in data structure of trisurf-ng reflects here
| | |
| | | ('znorm', c_double), |
| | | ('area', c_double), |
| | | ('volume', c_double), |
| | | ('energy', c_double), |
| | | ] |
| | | |
| | | class ts_triangle_list(Structure): |
| | | _fields_=[('n',c_uint),('tria', POINTER(POINTER(ts_triangle)))] |
| | | _fields_=[('n',c_uint),('tria', POINTER(POINTER(ts_triangle))),('a0',c_double)] |
| | | |
| | | |
| | | ts_cell._fields_=[ |
| | |
| | | ('pswitch',c_long), |
| | | ('constvolswitch',c_long), |
| | | ('constareaswitch',c_long), |
| | | ('stretchswitch',c_long), |
| | | ('xkA0',c_double), |
| | | ('constvolprecision',c_double), |
| | | ('multiprocessing',c_char_p), |
| | | ('brezveze0',c_long), |