You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
643 B
20 lines
643 B
#ifndef EVOCATORPROBEPROPERTIES_H
|
|
#define EVOCATORPROBEPROPERTIES_H
|
|
|
|
/*************************************************************************************************/
|
|
/**
|
|
* @brief Prob Properties dto for evocator meta data.
|
|
* @author Mohammad Mohsen Talaie
|
|
* @details Evocator shuld has Prob Properties for save buffer. So Evocator save this in it`s meta
|
|
* data.
|
|
* @date 2020
|
|
*/
|
|
/*************************************************************************************************/
|
|
typedef struct EvocatorProbeProperties_t
|
|
{
|
|
bool linear;
|
|
float radius;
|
|
float fieldOfView;
|
|
}EvocatorProbeProperties_t;
|
|
|
|
#endif //EVOCATORPROBEPROPERTIES_H
|
|
|