Spostati prototipi di funz in EGkPolyLine.h

This commit is contained in:
LorenzoM
2021-06-30 11:17:00 +02:00
parent bd2cb827e9
commit c2e0d3ce14
+8 -8
View File
@@ -134,18 +134,18 @@ typedef std::vector<PolyLine> POLYLINEVECTOR ; // vettore di PolyLine
typedef std::list<PolyLine> POLYLINELIST ; // lista di PolyLine
//----------------------------------------------------------------------------
/*static*/ bool
bool
ChangePolyLineStart( const Point3d& ptNewStart, PolyLine& Loop, double dTol = EPS_SMALL) ;
// nSegNum 0-based
/*static*/ bool
PointPositionOnPolyLine( const Point3d& ptPoint, /*const*/ PolyLine& Loop, int& nSegNum, double& dParOnSeg, double dTol = EPS_SMALL) ;
/*static*/ bool
IsPointInsidePolyLine( const Point3d& ptP, /*const*/ PolyLine& plPoly) ;
/*static*/ bool
bool
PointPositionOnPolyLine( const Point3d& ptPoint, const PolyLine& Loop, int& nSegNum, double& dParOnSeg, double dTol = EPS_SMALL) ;
bool
IsPointInsidePolyLine( const Point3d& ptP, const PolyLine& plPoly) ;
bool
DistPointPolyLine( const Point3d& ptP, const PolyLine& plPoly, double& dPointPolyLineDist) ;
/*static*/ bool
bool
SplitPolyLineAtPoint( const Point3d& ptPoint, /*const*/ PolyLine& Loop, PolyLine& Loop1, PolyLine& Loop2, double dTol = EPS_SMALL) ;
/*static*/ bool
bool
AddPolyLineToPolyLine( PolyLine& Poly, PolyLine& PolyToAdd, double dTol = EPS_SMALL) ;
//----------------------------------------------------------------------------