関数read_3d_data マニュアル

(The documentation of function read_3d_data)

Last Update: 2023/7/10


◆機能・用途(Purpose)

struct _3d_data型構造体を任意の形式のファイルから読み込む。 各形式のファイルを読み込む関数を呼び出すための親関数。
Read a struct _3d_data-type structure from a file of arbitrary formats; a parent function from which functions for individual file formats are called.


◆形式(Format)

##include <3d_data/readwrite.h>
inline struct _3d_data read_3d_data(const char ∗inputfile)


◆引数(Arguments)

inputfile 入力ファイル名。拡張子も含めて指定すること。 ファイル形式は拡張子によって自動判別される。
The input file name including the extension. The file format is automatically identified from the extension.


◆戻り値(Return value)

ファイルinputfileから読み込んだstruct _3d_data型構造体。
A structure read from the file inputfile.


◆使用例(Example)

struct _3d_data data=read_3d_data("data.3d");