18 lines
500 B
C
18 lines
500 B
C
/**
|
|
* \file hmp_export.h
|
|
* \date 02/08/2022
|
|
* \author JackCarterSmith
|
|
* \copyright GPL-v3.0
|
|
* \brief Export datas to heightmap PNG and Waveform OBJ format.
|
|
*/
|
|
|
|
#ifndef SRC_HMP_EXPORT_H_
|
|
#define SRC_HMP_EXPORT_H_
|
|
|
|
#ifndef NO_PNG_SUPPORT
|
|
unsigned char exportHeightmapPNG(const T_TERRAIN* terrain, const char* out_path, T_PROG_OPTIONS* p_opts);
|
|
#endif
|
|
unsigned char exportHeightmapOBJ(const T_TERRAIN* terrain_struct, const char *out_path, T_PROG_OPTIONS* p_opts);
|
|
|
|
#endif /* SRC_HMP_EXPORT_H_ */
|