From cf027a7dbb77d1df42bb005817523a86f12eb2c2 Mon Sep 17 00:00:00 2001 From: Haarm-Pieter Duiker Date: Tue, 1 Sep 2015 12:21:22 -0700 Subject: [PATCH] A comment missed the last commit --- aces_1.0.0/python/aces_ocio/colorspaces/arri.py | 24 ++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/aces_1.0.0/python/aces_ocio/colorspaces/arri.py b/aces_1.0.0/python/aces_ocio/colorspaces/arri.py index d4cd531..6b57b4a 100644 --- a/aces_1.0.0/python/aces_ocio/colorspaces/arri.py +++ b/aces_1.0.0/python/aces_ocio/colorspaces/arri.py @@ -34,19 +34,29 @@ def create_log_c(gamut, lut_resolution_1d, aliases): """ - Object description. - - LogC to ACES. + Creates colorspace covering the conversion from LogC to ACES, with various transfer + functions and encoding gamuts covered Parameters ---------- - parameter : type - Parameter description. + gamut : str + The name of the encoding gamut to use. + transfer_function : str + The name of the transfer function to use + exposure_index : str + The exposure index to use + lut_directory : str or unicode + The directory to use when generating LUTs + lut_resolution_1d : int + The resolution of generated 1D LUTs + aliases : list of str + Aliases for this colorspace Returns ------- - type - Return value description. + ColorSpace + A ColorSpace container class referencing the LUTs, matrices and identifying + information for the requested colorspace. """ name = '%s (EI%s) - %s' % (transfer_function, exposure_index, gamut) -- 1.7.10.4