Index: /issm/trunk/src/mex/ContourToMesh/ContourToMesh.cpp
===================================================================
--- /issm/trunk/src/mex/ContourToMesh/ContourToMesh.cpp	(revision 2406)
+++ /issm/trunk/src/mex/ContourToMesh/ContourToMesh.cpp	(revision 2407)
@@ -119,7 +119,5 @@
 void ContourToMeshUsage(void)
 {
-	printf("   usage:\n");
-	printf("   [in_nod,in_elem]=ContourToMesh(index,x,y,contours,interptype,edgevalue);\n\n");
-	printf("   where:\n");
+	printf("   CONTOURTOMESH - Flag the elements or nodes inside a contour\n\n");
 	printf("      index,x,y: delaunay triangulation.\n");
 	printf("      contours: structure holding sets of vertices making open contours.\n");
@@ -129,5 +127,11 @@
 	printf("              or of size 0 otherwise.\n");
 	printf("      in_elem: vector of flags (0 or 1), of size nel if interptype is set to 'element' or 'element and node', \n");
-	printf("               or of size 0 otherwise.\n");
+	printf("               or of size 0 otherwise.\n\n");
+	printf("      Usage: \n");
+	printf("         [in_nod,in_elem]=ContourToMesh(index,x,y,contours,interptype,edgevalue)\n\n");
+	printf("      Exemple: \n");
+	printf("         in_nod=ContourToMesh(md.elements,md.x,md.y,expread('Contour.exp'),'node',1)\n");
+	printf("         in_elements=ContourToMesh(md.elements,md.x,md.y,expread('Contour.exp'),'element',0)\n");
+	printf("         [in_nodes,in_elements]=ContourToMesh(md.elements,md.x,md.y,expread('Contour.exp'),'element and node',0)\n");
 	printf("\n");
 }
