~ubuntu-branches/ubuntu/saucy/xmountains/saucy

« back to all changes in this revision

Viewing changes to artist.c

  • Committer: Bazaar Package Importer
  • Author(s): Miguel Gea Milvaques (Xerako)
  • Date: 2004-09-13 01:02:01 UTC
  • mfrom: (1.1.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040913010201-mgjh8ic2aabie2kq
Tags: 2.7-2
fixed lintian errors: binary goes to /usr/bin and menu entries need
quoting (Thanks to Sergio Talens Oliag)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 */
4
4
#include <math.h>
5
5
#include <stdio.h>
 
6
#include <stdlib.h>
6
7
#include "paint.h"
7
8
#include "crinkle.h"
8
9
 
9
 
char artist_Id[] = "$Id: artist.c,v 1.40 1997/12/03 17:21:10 spb Exp spb $";
 
10
char artist_Id[] = "$Id: artist.c,v 1.40 1997/12/03 17:21:10 spb Exp $";
10
11
#define SIDE 1.0
11
12
#ifndef PI
12
13
#define PI 3.14159265
426
427
Height *b;
427
428
Height *shadow;
428
429
{
429
 
  int i, j, coord, last;
 
430
  int i, coord, last;
430
431
  Col *res, col;
431
432
 
432
433
  /* this routine returns a perspective view of the surface */
818
819
  return(res);
819
820
}
820
821
 
 
822
void blank_region(int lx, int ly, int ux, int uy);
 
823
void flush_region(int x, int y, int w, int h);
 
824
void scroll_screen(int dist);
 
825
void plot_pixel(int x, int y, Gun value);
 
826
 
821
827
/* }}} */
822
828
/* {{{  void plot_column(g)*/
823
829
void plot_column(g)