From ae5e873c2ac7bbb797f9e53bd85d1569389e528c Mon Sep 17 00:00:00 2001 From: Luigi Malomo Date: Tue, 11 Feb 2020 17:15:00 +0100 Subject: [PATCH] minor fixes --- vcg/simplex/face/topology.h | 2 +- wrap/igl/arap_parametrization.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/vcg/simplex/face/topology.h b/vcg/simplex/face/topology.h index 82d3f485..004067c8 100644 --- a/vcg/simplex/face/topology.h +++ b/vcg/simplex/face/topology.h @@ -889,7 +889,7 @@ void VFDetach(FaceType & f, int z) /// Append a face in VF list of vertex f->V(z) template -void VFAppend(FaceType* & f, int z) +void VFAppend(FaceType * f, int z) { typename FaceType::VertexType *v = f->V(z); if (v->VFp()!=0) diff --git a/wrap/igl/arap_parametrization.h b/wrap/igl/arap_parametrization.h index e1952704..0a472c85 100644 --- a/wrap/igl/arap_parametrization.h +++ b/wrap/igl/arap_parametrization.h @@ -35,6 +35,7 @@ * Example of usage: * MeshType m; * ... + * vcg::tri::UpdateBounding::Box(m); * vcg::tri::UpdateFlags::Clear(m); * vcg::tri::UpdateFlags::VertexBorderFromNone(m); * vcg::tri::OptimizeUV_ARAP(m);