Inkscape
Vector Graphics Editor
Loading...
Searching...
No Matches
geom-nodetype.h
Go to the documentation of this file.
1// SPDX-License-Identifier: GPL-2.0-or-later
2#ifndef INKSCAPE_HELPER_GEOM_NODETYPE_H
3#define INKSCAPE_HELPER_GEOM_NODETYPE_H
4
9/*
10 * Author:
11 * Johan Engelen <goejendaagh@zonnet.nl>
12 *
13 * Copyright (C) 2008 Johan Engelen
14 *
15 * Released under GNU GPL v2+, read the file 'COPYING' for more information.
16 */
17
18#include <2geom/forward.h>
19
20namespace Geom {
21
39
40
41NodeType get_nodetype(Curve const &c_incoming, Curve const &c_outgoing);
42
43
44} // namespace Geom
45
46#endif // INKSCAPE_HELPER_GEOM_NODETYPE_H
47
48/*
49 Local Variables:
50 mode:c++
51 c-file-style:"stroustrup"
52 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
53 indent-tabs-mode:nil
54 fill-column:99
55 End:
56*/
57// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :
Contains forward declarations of 2geom types.
Various utility functions.
Definition affine.h:22
NodeType
What kind of node is this? This is the value for the node->type field.
@ NODE_NONE
Discontinuous node, usually either start or endpoint of a path.
@ NODE_CUSP
This node continuously joins two segments, but the unit tangent is discontinuous.
@ NODE_SYMM
This node is symmetric.
@ NODE_SMOOTH
This node continuously joins two segments, with continuous unit tangent.
NodeType get_nodetype(Curve const &c_incoming, Curve const &c_outgoing)
NodeType