Fixed order of smoother parameters in the documentation. (Thanks to Takashi Michikawa for the info).

(cherry picked from commit af50ec1e51b981f73efcd23c19b1c9ac762f646f)
This commit is contained in:
Jan Möbius
2016-01-29 09:10:59 +01:00
parent c5cfef8742
commit cd777c7b6b

View File

@@ -20,8 +20,8 @@ The smoothers directly work on an OpenMesh. The following example shows how to u
// Initialize smoother with input mesh // Initialize smoother with input mesh
OpenMesh::Smoother::JacobiLaplaceSmootherT<MyMesh> smoother(mesh); OpenMesh::Smoother::JacobiLaplaceSmootherT<MyMesh> smoother(mesh);
smoother.initialize( C0, //Continuity smoother.initialize( Tangential_and_Normal, //Smooth direction
Tangential_and_Normal) //Smooth direction C0) //Continuity
// Execute 3 smooth steps // Execute 3 smooth steps
smoother.smooth(3); smoother.smooth(3);