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.
9 lines
316 B
9 lines
316 B
#include "pch.h" // use stdafx.h in Visual Studio 2017 and earlier
|
|
#include "Const.h"
|
|
|
|
double MAXX = -1e9, MINX = 1e9, MAXY = -1e9, MINY = 1e9, MAXZ = -1e9, MINZ = 1e9; //卡箍的坐标范围
|
|
double Ycenter,Zcenter; //飞机在Y,Z两轴的中心
|
|
vector<Vec3f> vertices;
|
|
vector<Vec3u> indices;
|
|
Mesh mesh;
|
|
int intersection_model=0;
|