//---------------------------------------------------------------------------- // EgalTech 2024 //---------------------------------------------------------------------------- // File : EGkSbzStandard.h Data : 14.02.24 Versione : 2.6b2 // Contenuto : Dichiarazione funzioni per creazione superfici Sbz // standard : Box, Pyramid, Cylinder, Sphere, Cone. // // // Modifiche : 14.02.24 DB Creazione modulo. // // //---------------------------------------------------------------------------- #pragma once #include "/EgtDev/Include/EGkSurfBezier.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 ISurfBezier* CreateBezierSphere( const Point3d& ptCenter, double dR) ;