Mon, 11 Dec 2017 00:46:35 +0200
Can now write dat files, added direct color handling
#!/usr/bin/env python3 from parse import parse_ldraw_code def read_ldraw(file, *, libraries): result = list() for line in file: result.append(parse_ldraw_code(line)) return result if __name__ == '__main__': from sys import argv libraries = [{'path': '/home/teemu/ldraw', 'role': 'official'}] with open(argv[1], 'r') as file: model = read_ldraw(file, libraries = libraries) for entry in model: #print(repr(entry)) print(entry.textual_representation().strip(), end = '\r\n')