Welcome to mirror list, hosted at ThFree Co, Russian Federation.

StrokeIO.h « stroke « intern « freestyle « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2334b97b70b74c18d2033d11e9e09565e0d492f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* SPDX-License-Identifier: GPL-2.0-or-later */

#pragma once

/** \file
 * \ingroup freestyle
 * \brief Functions to manage I/O for the stroke
 */

#include <iostream>

#include "Stroke.h"

#include "../system/FreestyleConfig.h"

namespace Freestyle {

ostream &operator<<(ostream &out, const StrokeAttribute &iStrokeAttribute);

ostream &operator<<(ostream &out, const StrokeVertex &iStrokeVertex);

ostream &operator<<(ostream &out, const Stroke &iStroke);

} /* namespace Freestyle */