curve.h revision ac566a07dccb893f08bb6f5666d2a471778e7317
#ifndef SEEN_DISPLAY_CURVE_H
#define SEEN_DISPLAY_CURVE_H
/** \file
* Wrapper around an array of NArtBpath objects.
*
* Author:
* Lauris Kaplinski <lauris@kaplinski.com>
*
* Copyright (C) 2000 Lauris Kaplinski
* Copyright (C) 2000-2001 Ximian, Inc.
* Copyright (C) 2002 Lauris Kaplinski
* Copyright (C) 2008 Johan Engelen
*
* Released under GNU GPL
*/
#include "libnr/nr-forward.h"
#define SP_CURVE_LENSTEP 32
struct SPObject;
/// Wrapper around Geom::PathVector.
/* Constructors */
guint get_segment_count() const;
guint nodes_in_path() const;
void reset();
void closepath();
void closepath_current();
bool is_empty() const;
bool is_closed() const;
SPCurve * create_reverse() const;
void backspace();
// Don't implement these:
};
#endif /* !SEEN_DISPLAY_CURVE_H */
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :