5int main(
int argc,
char* argv[])
7 int m = argc > 1 ? std::stoi(argv[1]) : 1000;
8 int n = argc > 2 ? std::stoi(argv[2]) : 1000;
9 int p = argc > 3 ? std::stoi(argv[3]) : 100;
13 std::string A =
"Voronoi.csv";
Represents a Voronoi diagram.
void Grow()
Grows the Voronoi diagram.
void WriteDataToCSV(std::string &filename)
void Nucleate(long long myseed)
Nucleates the Voronoi diagram with the specified seed.