From cd777c7b6ba3c198a7e6d9eb591c8bdeb43cf8c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Fri, 29 Jan 2016 09:10:59 +0100 Subject: [PATCH] Fixed order of smoother parameters in the documentation. (Thanks to Takashi Michikawa for the info). (cherry picked from commit af50ec1e51b981f73efcd23c19b1c9ac762f646f) --- Doc/smoother.docu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/smoother.docu b/Doc/smoother.docu index 216a6983..ea388bee 100644 --- a/Doc/smoother.docu +++ b/Doc/smoother.docu @@ -20,8 +20,8 @@ The smoothers directly work on an OpenMesh. The following example shows how to u // Initialize smoother with input mesh OpenMesh::Smoother::JacobiLaplaceSmootherT smoother(mesh); - smoother.initialize( C0, //Continuity - Tangential_and_Normal) //Smooth direction + smoother.initialize( Tangential_and_Normal, //Smooth direction + C0) //Continuity // Execute 3 smooth steps smoother.smooth(3);