ddd91b02eb
- aggiunti prototipi per IntersTriaTria e IntersSurfTmSurfTm - aggiunto a Triangle3d il metodo GetLocalBBox - aggiornamenti vari dei prototipi.
29 lines
1.1 KiB
C
29 lines
1.1 KiB
C
//----------------------------------------------------------------------------
|
|
// EgalTech 2018-2018
|
|
//----------------------------------------------------------------------------
|
|
// File : EGkIntersSurfTmSurfTm.h Data : 27.08.18 Versione : 1.9h3
|
|
// Contenuto : Dichiarazione delle funzioni intersezione SurfTriMesh/SurfTriMesh.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 27.08.18 DS Creazione modulo.
|
|
//
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include "/EgtDev/Include/EGkSurfTriMesh.h"
|
|
|
|
//----------------------- Macro per import/export ----------------------------
|
|
#undef EGK_EXPORT
|
|
#if defined( I_AM_EGK) // da definirsi solo nella DLL
|
|
#define EGK_EXPORT __declspec( dllexport)
|
|
#else
|
|
#define EGK_EXPORT __declspec( dllimport)
|
|
#endif
|
|
|
|
//-----------------------------------------------------------------------------
|
|
EGK_EXPORT bool IntersSurfTmSurfTm( const ISurfTriMesh& Stm1, const ISurfTriMesh& Stm2,
|
|
PNTVECTOR& vPnt, BIPNTVECTOR& vBpt, TRIA3DVECTOR& vTria) ;
|