Files
test2/source/blender/freestyle/intern/stroke/StrokeLayer.h
Campbell Barton c434782e3a File headers: SPDX License migration
Use a shorter/simpler license convention, stops the header taking so
much space.

Follow the SPDX license specification: https://spdx.org/licenses

- C/C++/objc/objc++
- Python
- Shell Scripts
- CMake, GNUmakefile

While most of the source tree has been included

- `./extern/` was left out.
- `./intern/cycles` & `./intern/atomic` are also excluded because they
  use different header conventions.

doc/license/SPDX-license-identifiers.txt has been added to list SPDX all
used identifiers.

See P2788 for the script that automated these edits.

Reviewed By: brecht, mont29, sergey

Ref D14069
2022-02-11 09:14:36 +11:00

90 lines
1.5 KiB
C++

/* SPDX-License-Identifier: GPL-2.0-or-later */
#pragma once
/** \file
* \ingroup freestyle
* \brief Class to define a layer of strokes.
*/
#include <deque>
#ifdef WITH_CXX_GUARDEDALLOC
# include "MEM_guardedalloc.h"
#endif
namespace Freestyle {
class Stroke;
class StrokeRenderer;
class StrokeLayer {
public:
typedef std::deque<Stroke *> stroke_container;
protected:
stroke_container _strokes;
public:
StrokeLayer()
{
}
StrokeLayer(const stroke_container &iStrokes)
{
_strokes = iStrokes;
}
StrokeLayer(const StrokeLayer &iBrother)
{
_strokes = iBrother._strokes;
}
virtual ~StrokeLayer();
/** Render method */
void ScaleThickness(float iFactor);
void Render(const StrokeRenderer *iRenderer);
void RenderBasic(const StrokeRenderer *iRenderer);
/** clears the layer */
void clear();
/** accessors */
inline stroke_container::iterator strokes_begin()
{
return _strokes.begin();
}
inline stroke_container::iterator strokes_end()
{
return _strokes.end();
}
inline int strokes_size() const
{
return _strokes.size();
}
inline bool empty() const
{
return _strokes.empty();
}
/** modifiers */
inline void setStrokes(stroke_container &iStrokes)
{
_strokes = iStrokes;
}
inline void AddStroke(Stroke *iStroke)
{
_strokes.push_back(iStroke);
}
#ifdef WITH_CXX_GUARDEDALLOC
MEM_CXX_CLASS_ALLOC_FUNCS("Freestyle:StrokeLayer")
#endif
};
} /* namespace Freestyle */