Blender V4.3
NodeDrawingStyle.cpp
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2012-2022 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
11#include "NodeDrawingStyle.h"
12
13namespace Freestyle {
14
16{
17 v.visitNodeDrawingStyle(*this);
18
19 v.visitNodeDrawingStyleBefore(*this);
20 v.visitDrawingStyle(_DrawingStyle);
21 for (vector<Node *>::iterator node = _Children.begin(), end = _Children.end(); node != end;
22 ++node)
23 {
24 (*node)->accept(v);
25 }
26 v.visitNodeDrawingStyleAfter(*this);
27}
28
29} /* 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:62
OperationNode * node
inherits from class Rep
Definition AppCanvas.cpp:20