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.
18 lines
342 B
18 lines
342 B
#ifndef SCENGENZOOMGATE_H
|
|
#define SCENGENZOOMGATE_H
|
|
|
|
#include <QMetaType>
|
|
|
|
typedef struct ScenGenZoomGate_t
|
|
{
|
|
float startAzimuth; //x
|
|
float endAzimuth; //x
|
|
float startAxial; //z
|
|
float endAxial; //z
|
|
bool linear;
|
|
bool VirtualConvex;
|
|
}ScenGenZoomGate_t;
|
|
|
|
Q_DECLARE_METATYPE(ScenGenZoomGate_t)
|
|
|
|
#endif //SCENGENZOOMGATE_H
|
|
|