ldraw.py

Thu, 21 Dec 2017 10:46:41 +0200

author
Santeri Piippo
date
Thu, 21 Dec 2017 10:46:41 +0200
changeset 7
0ab0d61ccee8
parent 4
8eb83f200486
permissions
-rw-r--r--

Smallest angles

class Colour:
    def __init__(self, index):
        self.index = int(index, 0)
    def __str__(self):
        if self.is_direct_colour():
            # write direct colours with hex codes
            return '0x%07X' % self.index
        else:
            return str(self.index)
    def is_direct_colour(self):
        return self.index >= 0x2000000

mercurial