From f098d8508c0feca649f13b70821c5d02bdb08ff7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Mon, 20 Apr 2015 18:39:41 +0200 Subject: [PATCH] use mathjax for the matrix --- .../include/CGAL/vcm_estimate_normals.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Point_set_processing_3/include/CGAL/vcm_estimate_normals.h b/Point_set_processing_3/include/CGAL/vcm_estimate_normals.h index 2d851dc0198..459dc3da5ff 100644 --- a/Point_set_processing_3/include/CGAL/vcm_estimate_normals.h +++ b/Point_set_processing_3/include/CGAL/vcm_estimate_normals.h @@ -219,11 +219,11 @@ vcm_convolve (ForwardIterator first, /// `R` should be set to the minimum local feature size of the surface while `r` can be set to zero. /// /// The Voronoi covariance matrix of each vertex is stored in a array `a` of length 6 and is as follow: -/// \verbatim -/// a[0] a[1] a[2] -/// a[1] a[3] a[4] -/// a[2] a[4] a[5] -/// \endverbatim +/// \f$ \begin{bmatrix} +/// a[0] & a[1] & a[2] \\ +/// a[1] & a[3] & a[4] \\ +/// a[2] & a[4] & a[5] \\ +/// \end{bmatrix}\f$ /// /// @tparam ForwardIterator iterator over input points. /// @tparam PointPMap is a model of `ReadablePropertyMap` with a value_type = `Kernel::Point_3`.