- Timestamp:
- 06/22/12 17:26:51 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/modules/KMLMeshWrite/KMLMeshWrite.cpp
r12516 r12518 118 118 119 119 void KMLMeshWriteUsage(void){ 120 if(true)_pprintLine_("KMLMeshWrite - KML mesh writer module:");121 if(true)_pprintLine_("");122 if(true)_pprintLine_(" This module writes the mesh of a model as KML polygons into the specified KML file.");123 if(true)_pprintLine_("");124 if(true)_pprintLine_(" Usage:");125 if(true)_pprintLine_(" ierror=KMLMeshWrite(name,notes,elem,nodecon,lat,long,part,data,cmap,kmlfile);");126 if(true)_pprintLine_("");127 if(true)_pprintLine_(" name model name (string, may be empty)");128 if(true)_pprintLine_(" notes model notes (string or cell array of strings, may be empty)");129 if(true)_pprintLine_(" elem elements (double array)");130 if(true)_pprintLine_(" nodecon nodal connectivity array (double array, may be empty)");131 if(true)_pprintLine_(" lat nodal latititudes (double vector)");132 if(true)_pprintLine_(" long nodal longitudes (double vector)");133 if(true)_pprintLine_(" part nodal partitions (double vector, may be empty)");134 if(true)_pprintLine_(" data nodal or element data (double vector, may be empty)");135 if(true)_pprintLine_(" cmap color map (double nx3 array, may be empty)");136 if(true)_pprintLine_(" kmlfile KML file name (string)");137 if(true)_pprintLine_("");138 if(true)_pprintLine_(" ierror error flag (double, non-zero for error)");139 if(true)_pprintLine_("");140 if(true)_pprintLine_(" Example:");141 if(true)_pprintLine_(" KMLMeshWrite(md.name,md.notes,md.elements,md.nodeconnectivity,md.lat,md.long,md.part,md.fm_criterion,options.cmap,filekml);");142 if(true)_pprintLine_("");120 _pprintLine_("KMLMeshWrite - KML mesh writer module:"); 121 _pprintLine_(""); 122 _pprintLine_(" This module writes the mesh of a model as KML polygons into the specified KML file."); 123 _pprintLine_(""); 124 _pprintLine_(" Usage:"); 125 _pprintLine_(" ierror=KMLMeshWrite(name,notes,elem,nodecon,lat,long,part,data,cmap,kmlfile);"); 126 _pprintLine_(""); 127 _pprintLine_(" name model name (string, may be empty)"); 128 _pprintLine_(" notes model notes (string or cell array of strings, may be empty)"); 129 _pprintLine_(" elem elements (double array)"); 130 _pprintLine_(" nodecon nodal connectivity array (double array, may be empty)"); 131 _pprintLine_(" lat nodal latititudes (double vector)"); 132 _pprintLine_(" long nodal longitudes (double vector)"); 133 _pprintLine_(" part nodal partitions (double vector, may be empty)"); 134 _pprintLine_(" data nodal or element data (double vector, may be empty)"); 135 _pprintLine_(" cmap color map (double nx3 array, may be empty)"); 136 _pprintLine_(" kmlfile KML file name (string)"); 137 _pprintLine_(""); 138 _pprintLine_(" ierror error flag (double, non-zero for error)"); 139 _pprintLine_(""); 140 _pprintLine_(" Example:"); 141 _pprintLine_(" KMLMeshWrite(md.name,md.notes,md.elements,md.nodeconnectivity,md.lat,md.long,md.part,md.fm_criterion,options.cmap,filekml);"); 142 _pprintLine_(""); 143 143 }
Note:
See TracChangeset
for help on using the changeset viewer.