2013-01-26 17:49:48 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2023-10-20 18:32:54 +00:00
|
|
|
* Copyright (C) 2018-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
2013-01-26 17:49:48 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
#ifndef TRIGO_H
|
|
|
|
#define TRIGO_H
|
2016-01-12 16:33:33 +00:00
|
|
|
|
2019-12-05 14:03:15 +00:00
|
|
|
#include <cmath>
|
2017-10-19 21:15:13 +00:00
|
|
|
#include <math/vector2d.h>
|
2022-01-15 01:12:24 +00:00
|
|
|
#include <geometry/eda_angle.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2013-09-27 12:30:35 +00:00
|
|
|
/**
|
2020-03-04 13:35:33 +00:00
|
|
|
* Test if \a aTestPoint is on line defined by \a aSegStart and \a aSegEnd.
|
|
|
|
*
|
|
|
|
* This function is faster than #TestSegmentHit() because \a aTestPoint should be exactly on
|
2023-10-20 18:32:54 +00:00
|
|
|
* the line. This only works for horizontal, vertical, and 45 degree line segments.
|
2020-03-04 13:35:33 +00:00
|
|
|
*
|
|
|
|
* @param aSegStart The first point of the line segment.
|
|
|
|
* @param aSegEnd The second point of the line segment.
|
|
|
|
* @param aTestPoint The point to test.
|
|
|
|
*
|
|
|
|
* @return true if the point is on the line segment.
|
2013-09-27 12:30:35 +00:00
|
|
|
*/
|
2022-01-01 06:04:08 +00:00
|
|
|
bool IsPointOnSegment( const VECTOR2I& aSegStart, const VECTOR2I& aSegEnd,
|
|
|
|
const VECTOR2I& aTestPoint );
|
2013-09-27 12:30:35 +00:00
|
|
|
|
2013-09-21 18:09:41 +00:00
|
|
|
/**
|
2020-03-04 13:35:33 +00:00
|
|
|
* Test if two lines intersect.
|
2013-09-21 18:09:41 +00:00
|
|
|
*
|
|
|
|
* @param a_p1_l1 The first point of the first line.
|
|
|
|
* @param a_p2_l1 The second point of the first line.
|
|
|
|
* @param a_p1_l2 The first point of the second line.
|
|
|
|
* @param a_p2_l2 The second point of the second line.
|
2019-05-25 19:01:54 +00:00
|
|
|
* @param aIntersectionPoint is filled with the intersection point if it exists
|
2023-10-20 18:32:54 +00:00
|
|
|
* @return bool true if the two segments defined by four points intersect.
|
2013-09-21 18:09:41 +00:00
|
|
|
* (i.e. if the 2 segments have at least a common point)
|
|
|
|
*/
|
2021-12-29 21:30:11 +00:00
|
|
|
bool SegmentIntersectsSegment( const VECTOR2I& a_p1_l1, const VECTOR2I& a_p2_l1,
|
|
|
|
const VECTOR2I& a_p1_l2, const VECTOR2I& a_p2_l2,
|
|
|
|
VECTOR2I* aIntersectionPoint = nullptr );
|
2013-09-21 18:09:41 +00:00
|
|
|
|
2023-10-20 18:32:54 +00:00
|
|
|
/**
|
|
|
|
* Calculate the new point of coord coord pX, pY, for a rotation center 0, 0.
|
2011-09-20 13:57:40 +00:00
|
|
|
*/
|
2022-01-18 11:44:55 +00:00
|
|
|
void RotatePoint( int *pX, int *pY, const EDA_ANGLE& aAngle );
|
2011-09-20 13:57:40 +00:00
|
|
|
|
2022-01-18 11:44:55 +00:00
|
|
|
inline void RotatePoint( VECTOR2I& point, const EDA_ANGLE& aAngle )
|
2021-12-29 13:44:32 +00:00
|
|
|
{
|
2022-01-18 11:44:55 +00:00
|
|
|
RotatePoint( &point.x, &point.y, aAngle );
|
2021-12-29 13:44:32 +00:00
|
|
|
}
|
|
|
|
|
2022-01-16 01:06:25 +00:00
|
|
|
|
2023-10-20 18:32:54 +00:00
|
|
|
/**
|
|
|
|
* Calculate the new point of coord coord pX, pY, for a rotation center cx, cy.
|
2011-09-20 13:57:40 +00:00
|
|
|
*/
|
2022-01-18 11:44:55 +00:00
|
|
|
void RotatePoint( int *pX, int *pY, int cx, int cy, const EDA_ANGLE& aAngle );
|
2017-10-19 21:15:13 +00:00
|
|
|
|
2022-01-18 11:44:55 +00:00
|
|
|
inline void RotatePoint( VECTOR2I& point, const VECTOR2I& centre, const EDA_ANGLE& aAngle )
|
2021-12-29 21:30:11 +00:00
|
|
|
{
|
2022-01-18 11:44:55 +00:00
|
|
|
RotatePoint( &point.x, &point.y, centre.x, centre.y, aAngle );
|
2021-12-29 21:30:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-10-20 18:32:54 +00:00
|
|
|
/**
|
|
|
|
* Calculate the new coord point point for a rotation center 0, 0.
|
2011-09-20 13:57:40 +00:00
|
|
|
*/
|
2022-01-18 11:44:55 +00:00
|
|
|
void RotatePoint( double* pX, double* pY, const EDA_ANGLE& aAngle );
|
2022-01-13 17:27:36 +00:00
|
|
|
|
2022-01-18 11:44:55 +00:00
|
|
|
inline void RotatePoint( VECTOR2D& point, const EDA_ANGLE& aAngle )
|
2022-01-04 23:00:00 +00:00
|
|
|
{
|
2022-01-18 11:44:55 +00:00
|
|
|
RotatePoint( &point.x, &point.y, aAngle );
|
2022-01-04 23:00:00 +00:00
|
|
|
}
|
|
|
|
|
2022-01-18 11:44:55 +00:00
|
|
|
void RotatePoint( double* pX, double* pY, double cx, double cy, const EDA_ANGLE& aAngle );
|
2022-01-13 17:27:36 +00:00
|
|
|
|
2022-01-18 11:44:55 +00:00
|
|
|
inline void RotatePoint( VECTOR2D& point, const VECTOR2D& aCenter, const EDA_ANGLE& aAngle )
|
2022-01-04 23:00:00 +00:00
|
|
|
{
|
2022-01-18 11:44:55 +00:00
|
|
|
RotatePoint( &point.x, &point.y, aCenter.x, aCenter.y, aAngle );
|
2022-01-04 23:00:00 +00:00
|
|
|
}
|
2009-06-13 17:06:07 +00:00
|
|
|
|
2018-12-08 15:26:47 +00:00
|
|
|
/**
|
2020-03-04 13:35:33 +00:00
|
|
|
* Determine the center of an arc or circle given three points on its circumference.
|
|
|
|
*
|
2023-10-20 18:32:54 +00:00
|
|
|
* @param aStart The starting point of the circle (equivalent to aEnd).
|
|
|
|
* @param aMid The point on the arc, half-way between aStart and aEnd.
|
|
|
|
* @param aEnd The ending point of the circle (equivalent to aStart).
|
|
|
|
* @return The center of the circle.
|
2018-12-08 15:26:47 +00:00
|
|
|
*/
|
2021-07-17 19:56:18 +00:00
|
|
|
const VECTOR2I CalcArcCenter( const VECTOR2I& aStart, const VECTOR2I& aMid, const VECTOR2I& aEnd );
|
|
|
|
const VECTOR2D CalcArcCenter( const VECTOR2D& aStart, const VECTOR2D& aMid, const VECTOR2D& aEnd );
|
2022-02-07 01:16:28 +00:00
|
|
|
const VECTOR2D CalcArcCenter( const VECTOR2D& aStart, const VECTOR2D& aEnd,
|
2022-01-16 21:15:20 +00:00
|
|
|
const EDA_ANGLE& aAngle );
|
2018-12-08 15:26:47 +00:00
|
|
|
|
2021-01-03 01:21:20 +00:00
|
|
|
/**
|
2023-10-20 18:32:54 +00:00
|
|
|
* Return the middle point of an arc, half-way between aStart and aEnd.
|
2021-01-10 13:04:21 +00:00
|
|
|
*
|
2023-10-20 18:32:54 +00:00
|
|
|
* There are two possible solutions which can be found by toggling aMinArcAngle. The behavior
|
|
|
|
* is undefined for semicircles (i.e. 180 degree arcs).
|
|
|
|
*
|
|
|
|
* @param aStart The starting point of the arc (for calculating the radius).
|
|
|
|
* @param aEnd The end point of the arc (for determining the arc angle).
|
|
|
|
* @param aCenter The center point of the arc.
|
2021-01-03 01:21:20 +00:00
|
|
|
* @param aMinArcAngle If true, returns the point that results in the smallest arc angle.
|
2023-10-20 18:32:54 +00:00
|
|
|
* @return The middle point of the arc.
|
2021-01-03 01:21:20 +00:00
|
|
|
*/
|
2021-07-17 19:56:18 +00:00
|
|
|
const VECTOR2I CalcArcMid( const VECTOR2I& aStart, const VECTOR2I& aEnd, const VECTOR2I& aCenter,
|
|
|
|
bool aMinArcAngle = true );
|
2021-01-03 01:21:20 +00:00
|
|
|
|
2021-12-29 19:02:50 +00:00
|
|
|
inline double EuclideanNorm( const VECTOR2I& vector )
|
|
|
|
{
|
|
|
|
// this is working with doubles
|
|
|
|
return hypot( vector.x, vector.y );
|
|
|
|
}
|
|
|
|
|
2023-10-20 18:32:54 +00:00
|
|
|
/**
|
|
|
|
* Compute the distance between a line and a reference point.
|
|
|
|
*
|
|
|
|
* Reference: http://mathworld.wolfram.com/Point-LineDistance2-Dimensional.html
|
|
|
|
*
|
|
|
|
* @param linePointA Point on line.
|
|
|
|
* @param linePointB Point on line.
|
|
|
|
* @param referencePoint Reference point.
|
|
|
|
*/
|
2022-01-01 06:04:08 +00:00
|
|
|
inline double DistanceLinePoint( const VECTOR2I& linePointA, const VECTOR2I& linePointB,
|
|
|
|
const VECTOR2I& referencePoint )
|
2013-05-01 17:32:36 +00:00
|
|
|
{
|
2022-01-18 11:44:55 +00:00
|
|
|
// Some of the multiple double casts are redundant. However in the previous definition
|
|
|
|
// the cast was (implicitly) done too late, just before the division (EuclideanNorm gives
|
|
|
|
// a double so from int it would be promoted); that means that the whole expression were
|
2013-05-01 17:32:36 +00:00
|
|
|
// vulnerable to overflow during int multiplications
|
2020-10-05 10:41:14 +00:00
|
|
|
return fabs( ( static_cast<double>( linePointB.x - linePointA.x ) *
|
|
|
|
static_cast<double>( linePointA.y - referencePoint.y ) -
|
|
|
|
static_cast<double>( linePointA.x - referencePoint.x ) *
|
|
|
|
static_cast<double>( linePointB.y - linePointA.y) )
|
2013-05-01 17:32:36 +00:00
|
|
|
/ EuclideanNorm( linePointB - linePointA ) );
|
|
|
|
}
|
2010-02-04 17:46:12 +00:00
|
|
|
|
2023-10-20 18:32:54 +00:00
|
|
|
/**
|
|
|
|
* Test if two points are near each other.
|
|
|
|
*
|
|
|
|
* @param pointA First point.
|
|
|
|
* @param pointB Second point.
|
|
|
|
* @param threshold The maximum distance.
|
|
|
|
* @return true if \a pointA is within \a threshold of \a pointB otherwise false.
|
|
|
|
*/
|
2022-01-01 06:04:08 +00:00
|
|
|
inline bool HitTestPoints( const VECTOR2I& pointA, const VECTOR2I& pointB, double threshold )
|
2013-05-01 17:32:36 +00:00
|
|
|
{
|
2022-01-01 06:04:08 +00:00
|
|
|
VECTOR2I vectorAB = pointB - pointA;
|
2013-05-01 17:32:36 +00:00
|
|
|
|
2022-01-18 11:44:55 +00:00
|
|
|
// Compare the distances squared. The double is needed to avoid overflow during int
|
|
|
|
// multiplication
|
2020-11-10 18:07:27 +00:00
|
|
|
double sqdistance = (double)vectorAB.x * vectorAB.x + (double)vectorAB.y * vectorAB.y;
|
2013-05-01 17:32:36 +00:00
|
|
|
|
|
|
|
return sqdistance < threshold * threshold;
|
|
|
|
}
|
2010-02-04 17:46:12 +00:00
|
|
|
|
2010-11-12 16:59:16 +00:00
|
|
|
/**
|
2020-03-04 13:35:33 +00:00
|
|
|
* Test if \a aRefPoint is with \a aDistance on the line defined by \a aStart and \a aEnd..
|
|
|
|
*
|
2013-01-26 17:49:48 +00:00
|
|
|
* @param aRefPoint = reference point to test
|
2009-06-13 17:06:07 +00:00
|
|
|
* @param aStart is the first end-point of the line segment
|
|
|
|
* @param aEnd is the second end-point of the line segment
|
|
|
|
* @param aDist = maximum distance for hit
|
|
|
|
*/
|
2021-12-29 21:30:11 +00:00
|
|
|
bool TestSegmentHit( const VECTOR2I& aRefPoint, const VECTOR2I& aStart, const VECTOR2I& aEnd,
|
2021-07-26 19:35:12 +00:00
|
|
|
int aDist );
|
2009-06-13 17:06:07 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
/**
|
|
|
|
* Return the length of a line segment defined by \a aPointA and \a aPointB.
|
|
|
|
*
|
|
|
|
* See also EuclideanNorm and Distance for the single vector or four scalar versions.
|
|
|
|
*
|
|
|
|
* @return Length of a line (as double)
|
|
|
|
*/
|
|
|
|
inline double GetLineLength( const VECTOR2I& aPointA, const VECTOR2I& aPointB )
|
|
|
|
{
|
2024-03-08 23:07:21 +00:00
|
|
|
return hypot( (double) aPointA.x - aPointB.x, (double) aPointA.y - aPointB.y );
|
2022-01-01 06:04:08 +00:00
|
|
|
}
|
|
|
|
|
2013-05-02 18:06:58 +00:00
|
|
|
// These are the usual degrees <-> radians conversion routines
|
|
|
|
inline double DEG2RAD( double deg ) { return deg * M_PI / 180.0; }
|
|
|
|
inline double RAD2DEG( double rad ) { return rad * 180.0 / M_PI; }
|
|
|
|
|
|
|
|
// These are the same *but* work with the internal 'decidegrees' unit
|
|
|
|
inline double RAD2DECIDEG( double rad ) { return rad * 1800.0 / M_PI; }
|
|
|
|
|
2020-02-28 14:03:09 +00:00
|
|
|
/* These are templated over T (and not simply double) because Eeschema
|
2013-05-02 18:06:58 +00:00
|
|
|
is still using int for angles in some place */
|
|
|
|
|
2023-10-20 18:32:54 +00:00
|
|
|
/**
|
|
|
|
* Normalize angle to be in the 0.0 .. 360.0 range: angle is in 1/10 degrees.
|
|
|
|
*/
|
2017-01-23 20:30:11 +00:00
|
|
|
template <class T> inline T NormalizeAnglePos( T Angle )
|
2013-05-02 18:06:58 +00:00
|
|
|
{
|
|
|
|
while( Angle < 0 )
|
|
|
|
Angle += 3600;
|
|
|
|
while( Angle >= 3600 )
|
|
|
|
Angle -= 3600;
|
2017-01-23 20:30:11 +00:00
|
|
|
return Angle;
|
|
|
|
}
|
2020-02-28 14:03:09 +00:00
|
|
|
|
2017-01-23 20:30:11 +00:00
|
|
|
template <class T> inline void NORMALIZE_ANGLE_POS( T& Angle )
|
|
|
|
{
|
|
|
|
Angle = NormalizeAnglePos( Angle );
|
2013-05-02 18:06:58 +00:00
|
|
|
}
|
|
|
|
|
2017-01-23 20:30:11 +00:00
|
|
|
|
2023-10-20 18:32:54 +00:00
|
|
|
/**
|
|
|
|
* Normalize angle to be in the -180.0 .. 180.0 range.
|
|
|
|
*/
|
2017-01-23 20:30:11 +00:00
|
|
|
template <class T> inline T NormalizeAngle180( T Angle )
|
2013-05-02 18:06:58 +00:00
|
|
|
{
|
|
|
|
while( Angle <= -1800 )
|
|
|
|
Angle += 3600;
|
2021-07-26 19:35:12 +00:00
|
|
|
|
2013-05-02 18:06:58 +00:00
|
|
|
while( Angle > 1800 )
|
|
|
|
Angle -= 3600;
|
2021-07-26 19:35:12 +00:00
|
|
|
|
2017-01-23 20:30:11 +00:00
|
|
|
return Angle;
|
2013-05-02 18:06:58 +00:00
|
|
|
}
|
2020-02-28 14:03:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test if an arc from \a aStartAngle to \a aEndAngle crosses the positive X axis (0 degrees).
|
|
|
|
*
|
|
|
|
* Testing is performed in the quadrant 1 to quadrant 4 direction (counter-clockwise).
|
|
|
|
*
|
|
|
|
* @param aStartAngle The arc start angle in degrees.
|
|
|
|
* @param aEndAngle The arc end angle in degrees.
|
|
|
|
*/
|
|
|
|
inline bool InterceptsPositiveX( double aStartAngle, double aEndAngle )
|
|
|
|
{
|
|
|
|
double end = aEndAngle;
|
|
|
|
|
2020-03-04 13:35:33 +00:00
|
|
|
if( aStartAngle > aEndAngle )
|
2020-02-28 14:03:09 +00:00
|
|
|
end += 360.0;
|
|
|
|
|
2020-03-04 13:35:33 +00:00
|
|
|
return aStartAngle < 360.0 && end > 360.0;
|
2020-02-28 14:03:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test if an arc from \a aStartAngle to \a aEndAngle crosses the negative X axis (180 degrees).
|
|
|
|
*
|
|
|
|
* Testing is performed in the quadrant 1 to quadrant 4 direction (counter-clockwise).
|
|
|
|
*
|
|
|
|
* @param aStartAngle The arc start angle in degrees.
|
|
|
|
* @param aEndAngle The arc end angle in degrees.
|
|
|
|
*/
|
|
|
|
inline bool InterceptsNegativeX( double aStartAngle, double aEndAngle )
|
|
|
|
{
|
|
|
|
double end = aEndAngle;
|
|
|
|
|
2020-03-04 13:35:33 +00:00
|
|
|
if( aStartAngle > aEndAngle )
|
2020-02-28 14:03:09 +00:00
|
|
|
end += 360.0;
|
|
|
|
|
2020-03-04 13:35:33 +00:00
|
|
|
return aStartAngle < 180.0 && end > 180.0;
|
2020-02-28 14:03:09 +00:00
|
|
|
}
|
2013-05-02 18:06:58 +00:00
|
|
|
|
2024-03-20 22:47:44 +00:00
|
|
|
/**
|
|
|
|
* Calculate the area of a parallelogram defined by \a aPointA, \a aPointB, and \a aPointC.
|
|
|
|
* B ______________________
|
|
|
|
* / /
|
|
|
|
* / /
|
|
|
|
* /______________________/
|
|
|
|
* A C
|
|
|
|
* The area of a parallelogram is the cross product of the vectors A->B and A->C.
|
|
|
|
* The order of the vertices is not important, the result will be the same (modulo sign).
|
|
|
|
*/
|
|
|
|
template <class T>
|
|
|
|
inline typename VECTOR2<T>::extended_type
|
|
|
|
ParallelogramArea( const VECTOR2<T>& aPointA, const VECTOR2<T>& aPointB, const VECTOR2<T>& aPointC )
|
|
|
|
{
|
|
|
|
VECTOR2<T> v1 = aPointB - aPointA;
|
|
|
|
VECTOR2<T> v2 = aPointC - aPointA;
|
|
|
|
return v1.Cross( v2 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test if a point hits a line segment within a given distance. This is a faster version of
|
|
|
|
* TestSegmentHit() that does not calculate the distance.
|
|
|
|
*/
|
|
|
|
bool TestSegmentHitFast( const VECTOR2I& aRefPoint, const VECTOR2I& aStart, const VECTOR2I& aEnd,
|
|
|
|
int aDist );
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
#endif
|