Blender  V3.3
NodeDrawingStyle.cpp
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
9 #include "NodeDrawingStyle.h"
10 
11 namespace Freestyle {
12 
14 {
15  v.visitNodeDrawingStyle(*this);
16 
17  v.visitNodeDrawingStyleBefore(*this);
18  v.visitDrawingStyle(_DrawingStyle);
19  for (vector<Node *>::iterator node = _Children.begin(), end = _Children.end(); node != end;
20  ++node) {
21  (*node)->accept(v);
22  }
23  v.visitNodeDrawingStyleAfter(*this);
24 }
25 
26 } /* namespace Freestyle */
Class to define a Drawing Style to be applied to the underlying children. Inherits from NodeGroup.
ATTR_WARN_UNUSED_RESULT const BMVert * v
virtual void accept(SceneVisitor &v)
vector< Node * > _Children
Definition: NodeGroup.h:64
OperationNode * node
inherits from class Rep
Definition: AppCanvas.cpp:18