19 lines
478 B
C
19 lines
478 B
C
![]() |
#pragma once
|
||
|
#include <BWAPI.h>
|
||
|
#include <vector>
|
||
|
namespace BWTA
|
||
|
{
|
||
|
class Polygon : public std::vector <BWAPI::Position>
|
||
|
{
|
||
|
public:
|
||
|
Polygon();
|
||
|
Polygon(const Polygon& b);
|
||
|
double getArea() const;
|
||
|
double getPerimeter() const;
|
||
|
BWAPI::Position getCenter() const;
|
||
|
bool isInside(BWAPI::Position p) const;
|
||
|
BWAPI::Position getNearestPoint(BWAPI::Position p) const;
|
||
|
const std::vector<Polygon>& getHoles() const;
|
||
|
std::vector<Polygon> holes;
|
||
|
};
|
||
|
}
|