summaryrefslogtreecommitdiff
path: root/src/ProjectionCylindrical.H
blob: d7d877929fe53f6263b802f8e6b00d7d7a949af5 (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
27
28
29
30
31
//
// 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.

#ifndef PROJECTIONCYLINDRICAL_H
#define PROJECTIONCYLINDRICAL_H

#include "ProjectionLSQ.H"

class ProjectionCylindrical : public ProjectionLSQ {
	public:

#define ARGS double c_view, double c_nick, double c_tilt, double scale, double k0, double k1, double m_view, double m_nick

		virtual double mac_x(ARGS);
		virtual double mac_y(ARGS);
        virtual double mac_x_dc_view(ARGS);
		virtual double mac_x_dc_nick(ARGS);
		virtual double mac_x_dc_tilt(ARGS);
		virtual double mac_x_dscale(ARGS);
		virtual double mac_y_dc_view(ARGS);
		virtual double mac_y_dc_nick(ARGS);
		virtual double mac_y_dc_tilt(ARGS);
		virtual double mac_y_dscale(ARGS);

#undef ARGS

};
#endif