Code

Node tool: fix handle retraction with non-cusp nodes
[inkscape.git] / src / sp-metric.h
1 #ifndef INKSCAPE_SP_METRIC_H
2 #define INKSCAPE_SP_METRIC_H
4 /** Known metrics so far.  (I don't know why this doesn't include pica.) */
5 enum SPMetric {
6     NONE,
7     SP_MM,
8     SP_CM,
9     SP_IN,
10     SP_FT,
11     SP_PT,
12     SP_PC,
13     SP_PX,
14     SP_M
15 };
17 #endif /* !INKSCAPE_SP_METRIC_H */
19 /*
20   Local Variables:
21   mode:c++
22   c-file-style:"stroustrup"
23   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
24   indent-tabs-mode:nil
25   fill-column:99
26   End:
27 */
28 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :