FlightGear next
VectorMath.hxx
Go to the documentation of this file.
1// VectorMath - class for vector calculations
2// Written by Keith Paterson
3//
4// This program is free software; you can redistribute it and/or
5// modify it under the terms of the GNU General Public License as
6// published by the Free Software Foundation; either version 2 of the
7// License, or (at your option) any later version.
8//
9// This program is distributed in the hope that it will be useful, but
10// WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12// General Public License for more details.
13//
14// You should have received a copy of the GNU General Public License
15// along with this program; if not, write to the Free Software
16// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
17
18#pragma once
19
20#include <array>
21
22class SGGeod;
23
25 public:
27 static std::array<double, 2> innerTangentsAngle( SGGeod m1, SGGeod m2, double r1, double r2);
29 static double innerTangentsLength( SGGeod m1, SGGeod m2, double r1, double r2);
31 static std::array<double, 2> outerTangentsAngle( SGGeod m1, SGGeod m2, double r1, double r2);
33 static double outerTangentsLength( SGGeod m1, SGGeod m2, double r1, double r2);
34};
static double outerTangentsLength(SGGeod m1, SGGeod m2, double r1, double r2)
Length of outer tangent between two circles.
static std::array< double, 2 > innerTangentsAngle(SGGeod m1, SGGeod m2, double r1, double r2)
Angles of inner tangent between two circles.
static double innerTangentsLength(SGGeod m1, SGGeod m2, double r1, double r2)
Length of inner tangent between two circles.
static std::array< double, 2 > outerTangentsAngle(SGGeod m1, SGGeod m2, double r1, double r2)
Angles of outer tangent between two circles normalized to 0-360.