blob: 88ec5bff42a0b1462f3d227bea79925fb390929b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
//
// Copyright 2006 Johannes Hofmann <Johannes.Hofmann@gmx.de>
//
// This software may be used and distributed according to the terms
// of the GNU General Public License, incorporated herein by reference.
#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;
}
|