Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fraguada committed Dec 14, 2023
1 parent 39d3f8c commit 2d99cd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bindings/bnd_mesh.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 2d99cd6

Please sign in to comment.