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.
 
 
 

26 lines
418 B

#include "stdafx.h"
#include "Const.h"
#include <cmath>
#include <vector>
#include <queue>
#include <map>
#include <iostream>
#include <fstream>
#include <sstream>
using namespace std;
// 连接器数据类型
struct Connector
{
string id, name, partnumber;
P coord, dir;
int ID; // 程序内部ID
int bundleNodeID; // 属于的bundleNode
Connector()
{
bundleNodeID = 0;
ID = 0;
}
} connectors[M];
int connectorNum;