1
2class Constants:
3
4    def __init__(self):
5        pass
6
7    def GetInverseTransformDirection(self, direction):
8        """
9        GetInverseTransformDirection(direction)
10
11        :param s:
12        :param type: string
13        """
14        pass
15
16    def CombineTransformDirections(self, dir1, dir2):
17        """
18        CombineTransformDirections(dir1, dir2)
19
20        :param s1:
21        :param type: string
22        :param s2:
23        :param type: string
24        """
25        pass
26
27    def BitDepthIsFloat(self, bitDepth):
28        """
29        BitDepthIsFloat(bitDepth)
30
31        :param s:
32        :param type: string
33        """
34        pass
35
36    def BitDepthToInt(self, bitDepth):
37        """
38        BitDepthToInt(bitDepth)
39
40        :param s:
41        :param type: string
42        """
43        pass
44