You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
312 B
C
26 lines
312 B
C
2 years ago
|
#ifndef PLANE3D_H
|
||
|
#define PLANE3D_H
|
||
|
//三维飞机模型类
|
||
|
#include <QString>
|
||
|
|
||
|
#include "Engine/UGDatasetVector.h"
|
||
|
#include "Engine/UGRecordset.h"
|
||
|
|
||
|
using namespace UGC;
|
||
|
|
||
|
class Plane3D
|
||
|
{
|
||
|
public:
|
||
|
Plane3D();
|
||
|
|
||
|
// void
|
||
|
|
||
|
private:
|
||
|
UGDatasetVector* dv;
|
||
|
|
||
|
private:
|
||
|
void addPlane();
|
||
|
};
|
||
|
|
||
|
#endif // PLANE3D_H
|