Merge pull request #133 from lzhbrian/master

Fix some typo
This commit is contained in:
Marco Callieri 2017-07-04 15:19:49 +02:00 committed by GitHub
commit 70b9dd7fc4
6 changed files with 8 additions and 8 deletions

View File

@ -25,7 +25,7 @@
/*!
* \defgroup io Binary Input/Ouput Abstraction Layer
* \defgroup io Binary Input/Output Abstraction Layer
*/
typedef union {

View File

@ -190,9 +190,9 @@ void ShowUsage(char* ex)
printf( "Usage: %s\n" , ex );
printf( "\t --%s <input points>\n" , In.name );
printf( "\t[--%s <ouput triangle mesh>]\n" , Out.name );
printf( "\t[--%s <output triangle mesh>]\n" , Out.name );
printf( "\t[--%s <ouput voxel grid>]\n" , VoxelGrid.name );
printf( "\t[--%s <output voxel grid>]\n" , VoxelGrid.name );
#ifndef FAST_COMPILE
printf( "\t[--%s <b-spline degree>=%d]\n" , Degree.name , Degree.value );

View File

@ -191,9 +191,9 @@ void ShowUsage( char* ex )
printf( "Usage: %s\n" , ex );
printf( "\t --%s <input points>\n" , In.name );
printf( "\t[--%s <ouput triangle mesh>]\n" , Out.name );
printf( "\t[--%s <output triangle mesh>]\n" , Out.name );
printf( "\t[--%s <ouput voxel grid>]\n" , VoxelGrid.name );
printf( "\t[--%s <output voxel grid>]\n" , VoxelGrid.name );
#ifndef FAST_COMPILE
printf( "\t[--%s <b-spline degree>=%d]\n" , Degree.name , Degree.value );

View File

@ -56,7 +56,7 @@ void ShowUsage( char* ex )
printf( "Usage: %s\n" , ex );
printf( "\t --%s <input polygon mesh>\n" , In.name );
printf( "\t[--%s <trimming value>]\n" , Trim.name );
printf( "\t[--%s <ouput polygon mesh>]\n" , Out.name );
printf( "\t[--%s <output polygon mesh>]\n" , Out.name );
printf( "\t[--%s <smoothing iterations>=%d]\n" , Smooth.name , Smooth.value );
printf( "\t[--%s <relative area of islands>=%f]\n" , IslandAreaRatio.name , IslandAreaRatio.value );
printf( "\t[--%s]\n" , PolygonMesh.name );

View File

@ -2,7 +2,7 @@ meshlabserver [logargs] [args]
where logargs can be:
-d filename dump on a text file a list of all the
filtering functions
-l filename log of the filters is ouput on a file
-l filename log of the filters is output on a file
where args can be:
-p filename meshlab project (.mlp) to be loaded
-w filename [-x] output meshlab project (.mlp) to be saved.

View File

@ -50,7 +50,7 @@ void ShowUsage(char* ex)
printf("Usage: %s\n",ex);
printf("\t--in <input points>\n");
printf("\t--out <ouput triangle mesh>\n");
printf("\t--out <output triangle mesh>\n");
printf("\t[--depth <maximum reconstruction depth>]\n");
printf("\t\t Running at depth d corresponds to solving on a 2^d x 2^d x 2^d\n");