ret << "Unstructured mesh with name : \"" << getName() << "\"\n";
ret << "Mesh dimension : " << _mesh_dim << "\nSpace dimension : ";
if(_coords!=0)
- ret << getSpaceDimension() << "\n";
+ {
+ const int spaceDim=getSpaceDimension();
+ ret << spaceDim << "\nInfo attached on space dimension : ";
+ for(int i=0;i<spaceDim;i++)
+ ret << "\"" << _coords->getInfoOnComponent(i) << "\" ";
+ ret << "\n";
+ }
else
ret << msg0 << "\n";
ret << "Number of nodes : ";