tools/drawMapTest/main.cpp
author nemo
Fri, 12 Apr 2013 12:44:14 -0400
changeset 8906 82756a90a343
parent 4425 2314bb0c433d
permissions -rw-r--r--
I see no reason why a visual effect needs Distance. IMO square should look just fine. Untested. Oh. Also reduced flake count at Randi's request.

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}