From 229eef8d194e08760e3aecb1ca8439a235614064 Mon Sep 17 00:00:00 2001 From: Daniele Bariletti Date: Tue, 18 Nov 2025 16:16:12 +0100 Subject: [PATCH] Include : - aggiunto un parametro per la restituzione dei parametri di un vertice di una trimesh. --- EGkSurfTriMesh.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EGkSurfTriMesh.h b/EGkSurfTriMesh.h index 2cd362b..84d3db1 100644 --- a/EGkSurfTriMesh.h +++ b/EGkSurfTriMesh.h @@ -70,7 +70,7 @@ class __declspec( novtable) ISurfTriMesh : public ISurf virtual double GetSmoothAngle( void) const = 0 ; virtual bool GetShowEdges( void) const = 0 ; virtual bool GetVertex( int nId, Point3d& ptP) const = 0 ; - virtual bool GetVertexParam( int nId, double& dU, double& dV) const = 0 ; + virtual bool GetVertexParam( int nId, double& dU, double& dV, bool bDownScaled = true) const = 0 ; virtual int GetFirstVertex( Point3d& ptP) const = 0 ; virtual int GetNextVertex( int nId, Point3d& ptP) const = 0 ; virtual bool GetTriangle( int nId, int nIdVert[3]) const = 0 ;