~ubuntu-branches/ubuntu/jaunty/jamin/jaunty

« back to all changes in this revision

Viewing changes to src/spline.c

  • Committer: Bazaar Package Importer
  • Author(s): Robert Jordens
  • Date: 2005-03-24 17:08:30 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050324170830-3efg06mxys3gl55s
Tags: 0.9.0+0.95.0rc2-1
new upstream prerelease

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
*/
6
6
 
7
7
#include <stdio.h>
 
8
#include <stdlib.h>
8
9
#include <math.h>
9
10
 
10
11
#define SPLINE_COL  53
146
147
{
147
148
    int            endloop1, endloop2;
148
149
    float          coeffs[SPLINE_ROW + 1][SPLINE_COL];
149
 
    static int     valpos;
150
 
                
 
150
    static int     valpos = 0;
151
151
 
152
152
    if ((*x + *(y + pos) + *(y + (pos - 1)) + *(x + (pos - 1)) +
153
153
        *(y + (pos - 2)) - *ater) != 0.0)