sp-spiral.h revision 51dc158adbe2c9d1df3c941cbf78b90944d1afc2
#ifndef SEEN_SP_SPIRAL_H
#define SEEN_SP_SPIRAL_H
/*
* Authors:
* Mitsuru Oka <oka326@parkcity.ne.jp>
* Lauris Kaplinski <lauris@kaplinski.com>
*
* Copyright (C) 1999-2002 Lauris Kaplinski
* Copyright (C) 2000-2001 Ximian, Inc.
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "sp-shape.h"
#define noSPIRAL_VERBOSE
#define SP_EPSILON 1e-5
#define SP_HUGE 1e5
#define SPIRAL_TOLERANCE 3.0
#define SP_TYPE_SPIRAL (sp_spiral_get_type ())
/**
* A spiral Shape.
*
* The Spiral shape is defined as:
* \verbatim
x(t) = rad * t^exp cos(2 * Pi * revo*t + arg) + cx
y(t) = rad * t^exp sin(2 * Pi * revo*t + arg) + cy \endverbatim
* where spiral curve is drawn for {t | t0 <= t <= 1}. The rad and arg
* parameters can also be represented by transformation.
*
* \todo Should I remove these attributes?
*/
float exp; ///< Spiral expansion factor
float revo; ///< Spiral revolution factor
float rad; ///< Spiral radius
float arg; ///< Spiral argument
float t0;
};
/// The SPSpiral vtable.
struct SPSpiralClass {
};
virtual Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags);
virtual void snappoints(std::vector<Inkscape::SnapCandidatePoint> &p, Inkscape::SnapPreferences const *snapprefs);
};
/* Standard Gtk function */
GType sp_spiral_get_type (void);
/* Lowlevel interface */
gdouble t);
gdouble t,
#endif // SEEN_SP_SPIRAL_H