Blender  V3.3
Classes | Enumerations
The data model of the compositor

Classes

class  blender::compositor::NodeInput
 NodeInput are sockets that can receive data/input. More...
 
class  blender::compositor::NodeOutput
 NodeOutput are sockets that can send data/input. More...
 
class  blender::compositor::NodeOperation
 NodeOperation contains calculation logic. More...
 

Enumerations

enum class  blender::compositor::DataType { blender::compositor::Value = 0 , blender::compositor::Vector = 1 , blender::compositor::Color = 2 }
 possible data types for sockets More...
 
enum class  blender::compositor::ResizeMode {
  blender::compositor::Center = NS_CR_CENTER , blender::compositor::None = NS_CR_NONE , blender::compositor::Align = 100 , blender::compositor::FitWidth = NS_CR_FIT_WIDTH ,
  blender::compositor::FitHeight = NS_CR_FIT_HEIGHT , blender::compositor::FitAny = NS_CR_FIT , blender::compositor::Stretch = NS_CR_STRETCH
}
 Resize modes of inputsockets How are the input and working resolutions matched. More...
 

Detailed Description

Enumeration Type Documentation

◆ DataType

possible data types for sockets

Enumerator
Value 

Value data type.

Vector 

Vector data type.

Color 

Color data type.

Definition at line 30 of file COM_defines.h.

◆ ResizeMode

Resize modes of inputsockets How are the input and working resolutions matched.

Enumerator
Center 

Center the input image to the center of the working area of the node, no resizing occurs.

None 

No resizing or translation.

Align 

Input image is translated so that its bottom left matches the bottom left of the working area of the node, no resizing occurs.

FitWidth 

Fit the width of the input image to the width of the working area of the node.

FitHeight 

Fit the height of the input image to the height of the working area of the node.

FitAny 

Fit the width or the height of the input image to the width or height of the working area of the node, image will be larger than the working area.

Stretch 

Fit the width and the height of the input image to the width and height of the working area of the node, image will be equally larger than the working area.

Definition at line 46 of file COM_NodeOperation.h.