Ignore:
Timestamp:
05/24/13 12:38:54 (12 years ago)
Author:
Eric.Larour
Message:

CHG: greatly simplified the shared/io/Print routines. Replaced
_printf_ by _pprintString_ , then replaced all _printLine_ by _printString_
and _pprintLine_ by _pprintString_
We will then replace the _printString_ by _printf_ and _pprintString_ by _printf0_

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/wrappers/PointCloudFindNeighbors/PointCloudFindNeighbors.cpp

    r14656 r15099  
    66
    77void PointCloudFindNeighborsUsage(void){/*{{{*/
    8         _printLine_("   usage:");
    9         _printLine_("   [flags]=PointCloudFindNeighbors(x,y,mindistance,multithread);\n");
    10         _printLine_("   where:");
    11         _printLine_("      x,y: list of points.");
    12         _printLine_("      mindistance: minimum distance that should exist between points in the cloud.");
    13         _printLine_("      multithread: run multithreaded or not. with multithreads, flags can get 1 and 2 values in duplicates.");
    14         _printLine_("      flags: array of flags (flag==1 means point is within mindistance of another point)");
    15         _printLine_("");
     8        _printString_("   usage:" << "\n");
     9        _printString_("   [flags]=PointCloudFindNeighbors(x,y,mindistance,multithread);" << "\n");
     10        _printString_("   where:" << "\n");
     11        _printString_("      x,y: list of points." << "\n");
     12        _printString_("      mindistance: minimum distance that should exist between points in the cloud." << "\n");
     13        _printString_("      multithread: run multithreaded or not. with multithreads, flags can get 1 and 2 values in duplicates." << "\n");
     14        _printString_("      flags: array of flags (flag==1 means point is within mindistance of another point)" << "\n");
     15        _printString_("" << "\n");
    1616}/*}}}*/
    1717WRAPPER(PointCloudFindNeighbors){
Note: See TracChangeset for help on using the changeset viewer.