###################### # Tigan3D model "*.t3d" (mesh) # # it is self 3D fileformat strongly # # in plain text with HZ codepage # ###### !-ATTENTION-! ###### ## It is NOT affilated vs other ## ## formats with simillar name ## ###################### # First string include all vertexes in format [x, y, z] for every from 1st to N, step-by-step #[[, , ], [...]] [[0, 0, 0], [0, 1, 0], [1, 1, 0], [1, 0, 0], [1, 0, 1] # Second string include poligons that consist from vertexes, you can define any other number of vertex, remember that one polygone can include only one example of some vertex, but one vertex may included in different polygons #[[, , ...], [, ...]] [[1, 2, 3, 4], [1, 2, 4], [1, 3, 4], [2, 3, 4]] # Third string include names of meshes and number of vertex's that they include: #{u''[, , ...], ...} {u'Side'[1, 2, 3], u'Dot'[4]} # Fourth string include ID for meshes, but specific is that 1st ID is "0", for 2nd and rest is "2", "3"..."N": #[(, u''), ...] [(0, u'Side'), (2, u'Dot')] # Thats all, only 4 string in document, end. ####### !-DANGER-! ###### # in "*.t3d" file comments are # # not allowed and must delited# #####################