From 2d99cd69a044135bd2cd77608a757343ff507765 Mon Sep 17 00:00:00 2001 From: fraguada Date: Thu, 14 Dec 2023 13:01:13 +0100 Subject: [PATCH] fix typo --- src/bindings/bnd_mesh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bindings/bnd_mesh.cpp b/src/bindings/bnd_mesh.cpp index 8ef88de9..5dae9f64 100644 --- a/src/bindings/bnd_mesh.cpp +++ b/src/bindings/bnd_mesh.cpp @@ -110,7 +110,7 @@ BND_Mesh* BND_Mesh::CreateFromSubDControlNet(class BND_SubD* subd, bool includeT if (subd) { const ON_SubD* _subd = ON_SubD::Cast(subd->GeometryPointer()); - ON_Mesh* mesh = _subd->GetControlNetMesh(nullptr, bIncludeTextureCoordinates ? ON_SubDGetControlNetMeshPriority::TextureCoordinates : ON_SubDGetControlNetMeshPriority::Geometry; + ON_Mesh* mesh = _subd->GetControlNetMesh(nullptr, includeTextureCoordinates ? ON_SubDGetControlNetMeshPriority::TextureCoordinates : ON_SubDGetControlNetMeshPriority::Geometry; if (mesh) return new BND_Mesh(mesh, nullptr); }