#include "medusa/bits/domains/PolytopeShape.hpp"
#include "gtest/gtest.h"
TEST(Domains, PolytopeShapeUsageExample) {
PolytopeShape<Vec2d> poly({{0.0, -2.0}, {1.0, -1.0}, {2.0, 0.0}, {1.0, 1.0}, {0.0, 2.0},
{-1.0, 1.0}, {-2.0, 0.0}, {-1.0, -1.0}});
if (poly.contains({2.3, 4.5})) {
}
std::cout << poly << std::endl;
auto d = poly.discretizeBoundaryWithStep(0.1);
(void) d;
}
TEST(Domains, PolytopeShapeCast) {
PolygonShape<Vec2d> poly({{0.0, -2.0}, {1.0, -1.0}, {2.0, 0.0}, {1.0, 1.0}, {0.0, 2.0},
{-1.0, 1.0}, {-2.0, 0.0}, {-1.0, -1.0}});
PolytopeShape<Vec2d> poly2 = poly;
EXPECT_EQ(poly.points(), poly2.points());
}
}