MEDmeshNodeCoordinateRd.c
Aller à la documentation de ce fichier.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #include <med.h>
00020 #include <med_config.h>
00021 #include <med_outils.h>
00022 #include <string.h>
00023 #include <stdlib.h>
00024
00037 med_err MEDmeshNodeCoordinateRd(const med_idt fid,
00038 const char* const meshname,
00039 const med_int numdt,
00040 const med_int numit,
00041 const med_switch_mode switchmode,
00042 med_float* const coordinate)
00043 {
00044
00045 return _MEDmeshAdvancedRd(fid,
00046 meshname,
00047 MED_COORDINATE,
00048 MED_NO_NAME,
00049 MED_INTERNAL_UNDEF,
00050 numdt,
00051 numit,
00052 MED_NODE,
00053 MED_NONE,
00054 MED_NO_CMODE,
00055 MED_UNDEF_PFLMODE,
00056 MED_NO_PROFILE,
00057 switchmode,
00058 MED_ALL_CONSTITUENT,
00059 NULL,
00060 (unsigned char * const) coordinate);
00061
00062 }