|
Blender
V2.59
|
#include "../CMP_util.h"Go to the source code of this file.
Functions | |
| static void | node_composit_exec_rotate (void *UNUSED(data), bNode *node, bNodeStack **in, bNodeStack **out) |
| static void | node_composit_init_rotate (bNode *node) |
| void | register_node_type_cmp_rotate (ListBase *lb) |
Variables | |
| static bNodeSocketType | cmp_node_rotate_in [] |
| static bNodeSocketType | cmp_node_rotate_out [] |
Definition in file CMP_rotate.c.
| static void node_composit_exec_rotate | ( | void * | UNUSEDdata, |
| bNode * | node, | ||
| bNodeStack ** | in, | ||
| bNodeStack ** | out | ||
| ) | [static] |
Definition at line 50 of file CMP_rotate.c.
References alloc_compbuf(), bicubic_interpolation(), bilinear_interpolation(), CB_RGBA, cos(), bNode::custom1, bNodeStack::data, free_compbuf(), IMB_allocImBuf(), IMB_freeImBuf(), M_PI, neareast_interpolation(), CompBuf::rect, ImBuf::rect_float, sin(), typecheck_compbuf(), bNodeStack::vec, CompBuf::x, CompBuf::xof, CompBuf::y, and CompBuf::yof.
Referenced by register_node_type_cmp_rotate().
| static void node_composit_init_rotate | ( | bNode * | node | ) | [static] |
Definition at line 125 of file CMP_rotate.c.
References bNode::custom1.
Referenced by register_node_type_cmp_rotate().
| void register_node_type_cmp_rotate | ( | ListBase * | lb | ) |
Definition at line 130 of file CMP_rotate.c.
References CMP_NODE_ROTATE, NODE_CLASS_DISTORT, node_composit_exec_rotate(), node_composit_init_rotate(), NODE_OPTIONS, node_type_base(), node_type_exec(), node_type_init(), node_type_size(), and nodeRegisterType().
Referenced by registerCompositNodes().
bNodeSocketType cmp_node_rotate_in[] [static] |
{
{ SOCK_RGBA, 1, "Image", 0.8f, 0.8f, 0.8f, 1.0f, 0.0f, 1.0f},
{ SOCK_VALUE, 1, "Degr", 0.0f, 0.0f, 0.0f, 0.0f, -10000.0f, 10000.0f},
{ -1, 0, "" }
}
Definition at line 39 of file CMP_rotate.c.
bNodeSocketType cmp_node_rotate_out[] [static] |
{
{ SOCK_RGBA, 0, "Image", 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f},
{ -1, 0, "" }
}
Definition at line 44 of file CMP_rotate.c.