Welcome
Welcome to the official MyGAL documentation. Here you will find a detailed view of all the MyGAL classes.
Example
Here is a short example, to show you how simple it is to use MyGAL:
#include <MyGAL/FortuneAlgorithm.h>
int main()
{
auto points = std::vector<Vector2<double>>
{
{0.354, 0.678},
{0.632, 0.189},
{0.842, 942}
};
algorithm.bound(
Box<double>{-0.05, -0.05, 1.05, 1.05});
auto diagram = algorithm.getDiagram();
return 0;
}