Skip to content

Commit

Permalink
Implement "colour.LUT*D.as_LUT" methods and "colour.io.LUT_to_LUT" de…
Browse files Browse the repository at this point in the history
…finition.
  • Loading branch information
KelSolaar committed Aug 18, 2018
1 parent 4044df2 commit 598e062
Show file tree
Hide file tree
Showing 3 changed files with 401 additions and 6 deletions.
6 changes: 4 additions & 2 deletions colour/io/luts/__init__.py
Expand Up @@ -12,13 +12,15 @@
import os

from colour.utilities import CaseInsensitiveMapping, filter_kwargs
from .lut import AbstractLUTSequenceOperator, LUT1D, LUT2D, LUT3D, LUTSequence
from .lut import (AbstractLUTSequenceOperator, LUT1D, LUT2D, LUT3D,
LUTSequence, LUT_to_LUT)
from .iridas_cube import read_LUT_IridasCube, write_LUT_IridasCube
from .sony_spi1d import read_LUT_SonySPI1D, write_LUT_SonySPI1D
from .sony_spi3d import read_LUT_SonySPI3D, write_LUT_SonySPI3D

__all__ = [
'AbstractLUTSequenceOperator', 'LUT1D', 'LUT2D', 'LUT3D', 'LUTSequence'
'AbstractLUTSequenceOperator', 'LUT1D', 'LUT2D', 'LUT3D', 'LUTSequence',
'LUT_to_LUT'
]
__all__ += ['read_LUT_IridasCube', 'write_LUT_IridasCube']
__all__ += ['read_LUT_SonySPI1D', 'write_LUT_SonySPI1D']
Expand Down

0 comments on commit 598e062

Please sign in to comment.