src/spg_icvfxpatterns/PatternGenerators/colorPatch.py [157:189]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @property
    def color_range_min(cls):
        """ The getter for the class attribute color_range_min

        :return: The value stored within the color_range_min CategorizedAttribute
        """
        return cls._color_range_min.value

    @color_range_min.setter
    def color_range_min(cls, value):
        """ Setter for the class attribute color_range_min

        :param value: the value we want to store within the color_range_min class attribute, inside the
        CategorizedAttribute
        """
        cls._color_range_min.value = value

    @property
    def color_range_max(cls):
        """ The getter for the class attribute color_range_max

        :return: The value stored within the color_range_max CategorizedAttribute
        """
        return cls._color_range_max.value

    @color_range_max.setter
    def color_range_max(cls, value):
        """ Setter for the class attribute color_range_max

        :param value: the value we want to store within the color_range_max class attribute, inside the
        CategorizedAttribute
        """
        cls._color_range_max.value = value
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/spg_icvfxpatterns/PatternGenerators/linearSteppedColors.py [117:147]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @property
    def color_range_min(cls):
        """ The getter for the class attribute color_range_min

        :return: The value stored within the color_range_min CategorizedAttribute
        """
        return cls._color_range_min.value

    @color_range_min.setter
    def color_range_min(cls, value):
        """ Setter for the class attribute color_range_min

        :param value: the value we want to store within the color_range_min class attribute, inside the CategorizedAttribute
        """
        cls._color_range_min.value = value

    @property
    def color_range_max(cls):
        """ The getter for the class attribute color_range_max

        :return: The value stored within the color_range_max CategorizedAttribute
        """
        return cls._color_range_max.value

    @color_range_max.setter
    def color_range_max(cls, value):
        """ Setter for the class attribute color_range_max

        :param value: the value we want to store within the color_range_max class attribute, inside the CategorizedAttribute
        """
        cls._color_range_max.value = value
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



