summaryrefslogtreecommitdiff
path: root/src/Projection.cxx
blob: d6dbd34a83a8f95fdfd1dcc5b052497fba36ed02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

#include <stdio.h>
#include <math.h>

#include "Projection.H"

Projection::Projection() {
  pi_d = asin(1.0) * 2.0;
};

void
Projection::get_coordinates(double a_view, double a_nick,
		const ViewParams *parms, double *x, double *y) {
  fprintf(stderr, "Error: Projection::set_coordinates()\n");
}

int 
Projection::comp_params(const Hill *m1, const Hill *m2, ViewParams *parms) {
  fprintf(stderr, "Error: Projection::comp_params()\n");
  return 1;
}