Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/scene_graph/IndexedFaceSet.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 A Set of indexed faces to represent a surface object | * \brief A Set of indexed faces to represent a surface object | ||||
| */ | */ | ||||
| #include <memory.h> | #include <memory.h> | ||||
| #include <stdio.h> | #include <stdio.h> | ||||
| //! inherits from class Rep | //! inherits from class Rep | ||||
| #include "Rep.h" | #include "Rep.h" | ||||
| #include "../system/FreestyleConfig.h" | |||||
| namespace Freestyle { | namespace Freestyle { | ||||
| class IndexedFaceSet : public Rep { | class IndexedFaceSet : public Rep { | ||||
| public: | public: | ||||
| /** Triangles description style: */ | /** Triangles description style: */ | ||||
| enum TRIANGLES_STYLE { | enum TRIANGLES_STYLE { | ||||
| TRIANGLE_STRIP, | TRIANGLE_STRIP, | ||||
| TRIANGLE_FAN, | TRIANGLE_FAN, | ||||
| ▲ Show 20 Lines • Show All 273 Lines • Show Last 20 Lines | |||||