summaryrefslogtreecommitdiff
path: root/src/pyglue/DocStrings/ExponentTransform.py
blob: 930bb39ac11c75ac763611fb00e1c584c7453914 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
class ExponentTransform:
    """
    ExponentTransform
    """
    def __init__(self):
        pass
        
    def getValue(self):
        """
        getValue()
        
        Returns the values in the exponent transform of
        :py:class:`PyOpenColorIO.ExponentTransform`.
        
        :return: exponent transform values
        :rtype: list of floats
        """
        pass
        
    def setValue(self, value):
        """
        setValue()
        
        Sets the values in the exponent transform of
        :py:class:`PyOpenColorIO.ExponentTransform`.
        
        :param pyData: exponent transform values
        :type pyData: list of 4 floats
        """
        pass