style cleanup: compositor, pointer syntax, function brace placement, line length
This commit is contained in:
@@ -26,14 +26,15 @@
|
||||
#include "COM_DotproductOperation.h"
|
||||
#include "COM_SetVectorOperation.h"
|
||||
|
||||
NormalNode::NormalNode(bNode* editorNode): Node(editorNode)
|
||||
NormalNode::NormalNode(bNode *editorNode): Node(editorNode)
|
||||
{}
|
||||
|
||||
void NormalNode::convertToOperations(ExecutionSystem *graph, CompositorContext * context) {
|
||||
void NormalNode::convertToOperations(ExecutionSystem *graph, CompositorContext * context)
|
||||
{
|
||||
InputSocket *inputSocket = this->getInputSocket(0);
|
||||
OutputSocket *outputSocket = this->getOutputSocket(0);
|
||||
OutputSocket *outputSocketDotproduct = this->getOutputSocket(1);
|
||||
bNode* editorNode = this->getbNode();
|
||||
bNode *editorNode = this->getbNode();
|
||||
|
||||
SetVectorOperation * operationSet = new SetVectorOperation();
|
||||
bNodeSocket * insock = (bNodeSocket*)editorNode->outputs.first;
|
||||
|
||||
Reference in New Issue
Block a user