From 2425304b2eb69bb8e3192f4ecd1b42469dc0761b Mon Sep 17 00:00:00 2001 From: Daniele Bariletti Date: Thu, 21 Sep 2023 14:44:44 +0200 Subject: [PATCH] Include : - introdotto l'uso della grafica di default per le ExtDim importate da 3dm. --- EExImport3dm.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/EExImport3dm.h b/EExImport3dm.h index caed097..5465f8a 100644 --- a/EExImport3dm.h +++ b/EExImport3dm.h @@ -28,7 +28,9 @@ class __declspec( novtable) IImport3dm { public : virtual ~IImport3dm( void) {} - virtual bool Import( const std::string& sFile, IGeomDB* pGDB, int nIdGroup, double dScaleFactor = 1) = 0 ; + virtual bool Import( const std::string& sFile, IGeomDB* pGDB, int nIdGroup, double dScaleFactor = 1, + double dTextHeight = 2.0, double dExtLine = 5.0, double dArrLen = 5.0, double dTextDist = 2.0, + bool bLenIsMM = true, int nDecDig = -2, std::string sFont = "ModernPropS.Nfe") = 0 ; } ; //-----------------------------------------------------------------------------