about summary refs log tree commit diff stats
path: root/ext/wittle_generator/Test.cpp
blob: 5eaef5a89a05813ecdb9bffec97de69d498ea42e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "Generate.h"

int main(int, char**) {
  Generate generator;
  generator.setFlag(Generate::RegularStartEnd);
  /*generator.generate(4 * 2 + 1, 4 * 2 + 1,
                     {{{Decoration::Triangle | Decoration::Orange, 6}}});*/
  generator.generate(
      4 * 2 + 1, 4 * 2 + 1,
      {{{Decoration::Poly | Decoration::Can_Rotate | Decoration::Yellow, 1},
        {Decoration::Poly | Decoration::Yellow, 1},
        {Decoration::Gap, 6}}});

  return 0;
}