Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/scene_graph/Node.h
| /* SPDX-License-Identifier: GPL-2.0-or-later */ | /* SPDX-License-Identifier: GPL-2.0-or-later */ | ||||
| #pragma once | #pragma once | ||||
| /** \file | /** \file | ||||
| * \ingroup freestyle | * \ingroup freestyle | ||||
| * \brief Abstract class for scene graph nodes. Inherits from BaseObject which defines the addRef | * \brief Abstract class for scene graph nodes. Inherits from BaseObject which defines the addRef | ||||
| * release mechanism. | * release mechanism. | ||||
| */ | */ | ||||
| #include "SceneVisitor.h" | #include "SceneVisitor.h" | ||||
| #include "../system/BaseObject.h" | #include "../system/BaseObject.h" | ||||
| #include "../system/FreestyleConfig.h" | |||||
| #include "../system/Precision.h" | #include "../system/Precision.h" | ||||
| #include "../geometry/BBox.h" | #include "../geometry/BBox.h" | ||||
| #include "../geometry/Geom.h" | #include "../geometry/Geom.h" | ||||
| using namespace std; | using namespace std; | ||||
| namespace Freestyle { | namespace Freestyle { | ||||
| ▲ Show 20 Lines • Show All 78 Lines • Show Last 20 Lines | |||||