Cleanup: trailing space for compositor
This commit is contained in:
@@ -42,13 +42,13 @@ void PlaneTrackDeformNode::convertToOperations(NodeConverter &converter, const C
|
||||
bNode *editorNode = this->getbNode();
|
||||
MovieClip *clip = (MovieClip *) editorNode->id;
|
||||
NodePlaneTrackDeformData *data = (NodePlaneTrackDeformData *) editorNode->storage;
|
||||
|
||||
|
||||
int frame_number = context.getFramenumber();
|
||||
|
||||
|
||||
NodeInput *input_image = this->getInputSocket(0);
|
||||
NodeOutput *output_warped_image = this->getOutputSocket(0);
|
||||
NodeOutput *output_plane = this->getOutputSocket(1);
|
||||
|
||||
|
||||
PlaneTrackWarpImageOperation *warp_image_operation = new PlaneTrackWarpImageOperation();
|
||||
warp_image_operation->setMovieClip(clip);
|
||||
warp_image_operation->setTrackingObject(data->tracking_object);
|
||||
@@ -59,10 +59,10 @@ void PlaneTrackDeformNode::convertToOperations(NodeConverter &converter, const C
|
||||
warp_image_operation->setMotionBlurShutter(data->motion_blur_shutter);
|
||||
}
|
||||
converter.addOperation(warp_image_operation);
|
||||
|
||||
|
||||
converter.mapInputSocket(input_image, warp_image_operation->getInputSocket(0));
|
||||
converter.mapOutputSocket(output_warped_image, warp_image_operation->getOutputSocket());
|
||||
|
||||
|
||||
PlaneTrackMaskOperation *plane_mask_operation = new PlaneTrackMaskOperation();
|
||||
plane_mask_operation->setMovieClip(clip);
|
||||
plane_mask_operation->setTrackingObject(data->tracking_object);
|
||||
@@ -73,6 +73,6 @@ void PlaneTrackDeformNode::convertToOperations(NodeConverter &converter, const C
|
||||
plane_mask_operation->setMotionBlurShutter(data->motion_blur_shutter);
|
||||
}
|
||||
converter.addOperation(plane_mask_operation);
|
||||
|
||||
|
||||
converter.mapOutputSocket(output_plane, plane_mask_operation->getOutputSocket());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user