~danieljabailey/inkscape/arc_node_editor

« back to all changes in this revision

Viewing changes to src/ui/tool/node-types.h

  • Committer: Daniel Bailey
  • Date: 2016-05-15 20:44:44 UTC
  • Revision ID: d@nielbailey.com-20160515204444-tak344mvzf55nhwk
Added support for editting arc segments in the node editor

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
/** Types of segments supported in the node tool. */
29
29
enum SegmentType {
30
30
    SEGMENT_STRAIGHT, ///< Straight linear segment
31
 
    SEGMENT_CUBIC_BEZIER ///< Bezier curve with two control points
 
31
    SEGMENT_CUBIC_BEZIER, ///< Bezier curve with two control points
 
32
    SEGMENT_ELIPTICAL_ARC ///< Eliptical arc (two radii, rotation, size flag, direction flag)
32
33
};
33
34
 
34
35
} // namespace UI