~valavanisalex/ubuntu/precise/inkscape/fix-943984

« back to all changes in this revision

Viewing changes to inkscape-0.47pre1/src/live_effects/spiro.h

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2009-07-02 17:09:45 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20090702170945-nn6d6zswovbwju1t
Tags: 0.47~pre1-0ubuntu1
* New upstream release.
  - Don't constrain maximization on small resolution devices (pre0)
    (LP: #348842)
  - Fixes segfault on startup (pre0)
    (LP: #391149)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
typedef struct {
 
2
    double x;
 
3
    double y;
 
4
    char ty;
 
5
} spiro_cp;
 
6
 
 
7
typedef struct spiro_seg_s spiro_seg;
 
8
 
 
9
spiro_seg *
 
10
run_spiro(const spiro_cp *src, int n);
 
11
 
 
12
void
 
13
free_spiro(spiro_seg *s);
 
14
 
 
15
void
 
16
spiro_to_bpath(const spiro_seg *s, int n, bezctx *bc);
 
17
 
 
18
double get_knot_th(const spiro_seg *s, int i);