23 lines
927 B
C
23 lines
927 B
C
//----------------------------------------------------------------------------
|
|
// EgalTech 2013-2013
|
|
//----------------------------------------------------------------------------
|
|
// File : CurveAux.h Data : 22.11.13 Versione : 1.3a1
|
|
// Contenuto : Dichiarazione di alcune funzioni di utilità per le curve.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 22.11.13 DS Creazione modulo.
|
|
//
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include "/EgtDev/Include/EGkCurve.h"
|
|
|
|
//----------------------------------------------------------------------------
|
|
bool IsClosed( const ICurve& crvC) ;
|
|
bool GetPoint( const ICurve& crvC, double dU, Point3d& ptPos) ;
|
|
bool GetPointTang( const ICurve& crvC, double dU, Point3d& ptPos, Vector3d& vtTang) ;
|
|
bool GetPointTangNormCurv( const ICurve& crvC, double dU, Point3d& ptPos, Vector3d& vtT, Vector3d& vtN, double& dCurv) ;
|