関数free_3d_data マニュアル

(The documentation of function free_3d_data)

Last Update: 2023/7/5


◆機能・用途(Purpose)

struct _3d_data型構造体のメンバindex,valueの動的メモリを解放する。
Release dynamic memories for members index and value of a struct _3d_data-type structure.


◆形式(Format)

#include <3d_data/initialize.h>
inline void free_3d_data(struct _3d_data ∗data)


◆引数(Arguments)

data 動的メモリを解放したい構造体のアドレス。 構造体に&を付けて与えることを想定している。 関数内でメンバindex, valueの動的メモリが解放される。
The address of the structure to release the dynamic memory; giving a structure with & is assumed. Within the function, dynamic memories for members index and value are released.


◆使用例(Example)

struct _3d_data data =get_initialized_3d_data_direct(2,3,4,0.1,-1.0,12.3,0.2,0.5,0.3);
free_3d_data(&data);