ColorRamp(bpy_struct)#

base class — bpy_struct

class bpy.types.ColorRamp(bpy_struct)#

Color ramp mapping a scalar value to a color

color_mode#

Set color mode to use for interpolation

Type:

enum in [‘RGB’, ‘HSV’, ‘HSL’], default ‘RGB’

elements#
Type:

ColorRampElements bpy_prop_collection of ColorRampElement, (readonly)

hue_interpolation#

Set color interpolation

Type:

enum in [‘NEAR’, ‘FAR’, ‘CW’, ‘CCW’], default ‘NEAR’

interpolation#

Set interpolation between color stops

Type:

enum in [‘EASE’, ‘CARDINAL’, ‘LINEAR’, ‘B_SPLINE’, ‘CONSTANT’], default ‘LINEAR’

evaluate(position)#

Evaluate Color Ramp

Parameters:

position (float in [0, 1]) – Position, Evaluate Color Ramp at position

Returns:

Color, Color at given position

Return type:

float array of 4 items in [-inf, inf]

classmethod bl_rna_get_subclass(id, default=None)#
Parameters:

id (string) – The RNA type identifier.

Returns:

The RNA type or default when not found.

Return type:

bpy.types.Struct subclass

classmethod bl_rna_get_subclass_py(id, default=None)#
Parameters:

id (string) – The RNA type identifier.

Returns:

The class or default when not found.

Return type:

type

Inherited Properties#

Inherited Functions#

References#