関数zero_3d_data マニュアル

(The documentation of function zero_3d_data)

Last Update: 2023/7/5


◆機能・用途(Purpose)

struct _3d_data型構造体のメンバvalueの全配列要素を0.0に設定する。
Set all the array components of member value of a struct _3d_data-type structure to 0.0.


◆形式(Format)

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


◆引数(Arguments)

data 対象の構造体。関数 get_initialized_3d_data あるいは get_initialized_3d_data_direct により初期化済みのものを与える。 関数内でメンバvalueの全配列要素が0.0に設定される。
The target structure. Give a structure that has been initialized by function get_initialized_3d_data or get_initialized_3d_data_direct. Within the function, a value of 0.0 is set for all array components of member value.


◆使用例(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);
zero_3d_data(data);