2 * Copyright (c) 2014 - 2017 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
4 * Copyright (C) 1989 - 1992 Free Software Foundation, Inc.
5 * Written by James Clark (jjc@jclark.com)
7 * This is free software; you can redistribute it and/or modify it under
8 * the terms of the GNU General Public License as published by the Free
9 * Software Foundation; either version 2, or (at your option) any later
12 * This is distributed in the hope that it will be useful, but WITHOUT ANY
13 * WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 * You should have received a copy of the GNU General Public License along
18 * with groff; see the file COPYING. If not, write to the Free Software
19 * Foundation, 51 Franklin St - Fifth Floor, Boston, MA 02110-1301, USA.
23 #include "pic-config.h"
32 position(double, double );
34 position(const place
&);
35 position
&operator+=(const position
&);
36 position
&operator-=(const position
&);
37 position
&operator*=(double);
38 position
&operator/=(double);
41 position
operator-(const position
&);
42 position
operator+(const position
&, const position
&);
43 position
operator-(const position
&, const position
&);
44 position
operator/(const position
&, double);
45 position
operator*(const position
&, double);
47 double operator*(const position
&, const position
&);
48 int operator==(const position
&, const position
&);
49 int operator!=(const position
&, const position
&);
51 double hypot(const position
&a
);
53 typedef position distance
;