1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
|
#include <fstream>
#include <boost/config.hpp>
#include <boost/version.hpp>
// CGAL headers
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Stream_lines_2.h>
#include <CGAL/Runge_kutta_integrator_2.h>
#include <CGAL/Regular_grid_2.h>
// Qt headers
#include <QtGui>
#include <QString>
#include <QActionGroup>
#include <QFileDialog>
#include <QInputDialog>
// GraphicsView items and event filters (input classes)
#include <CGAL/Qt/StreamLinesGraphicsItem.h>
#include <CGAL/Qt/RegularGridVectorFieldGraphicsItem.h>
// for viewportsBbox
#include <CGAL/Qt/utility.h>
#include <CGAL/IO/WKT.h>
// the two base classes
#include "ui_Stream_lines_2.h"
#include <CGAL/Qt/DemosMainWindow.h>
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef CGAL::Regular_grid_2<K> Regular_grid;
typedef CGAL::Runge_kutta_integrator_2<Regular_grid> Runge_kutta_integrator;
typedef CGAL::Stream_lines_2<Regular_grid, Runge_kutta_integrator> Stream_lines;
typedef CGAL::Stream_lines_2<Regular_grid, Runge_kutta_integrator>::Stream_line_iterator_2 Stream_line_iterator;
typedef CGAL::Stream_lines_2<Regular_grid, Runge_kutta_integrator>::Point_iterator_2 Point_iterator;
typedef CGAL::Stream_lines_2<Regular_grid, Runge_kutta_integrator>::Point_2 Point_2;
typedef CGAL::Stream_lines_2<Regular_grid, Runge_kutta_integrator>::Vector_2 Vector;
typedef K::Iso_rectangle_2 Iso_rectangle_2;
class MainWindow :
public CGAL::Qt::DemosMainWindow,
public Ui::Stream_lines_2
{
Q_OBJECT
private:
Stream_lines * stream_lines;
Runge_kutta_integrator * runge_kutta_integrator;
Regular_grid * regular_grid;
double density;
double ratio;
double integrating;
int sampling;
QGraphicsScene scene;
CGAL::Qt::StreamLinesGraphicsItem<Stream_lines,K> * sli;
CGAL::Qt::RegularGridVectorFieldGraphicsItem<Regular_grid,K> * rgi;
public:
MainWindow();
public Q_SLOTS:
void on_actionLoadPoints_triggered();
void on_actionClear_triggered();
void on_actionSavePoints_triggered();
void on_actionRecenter_triggered();
virtual void open(QString fileName);
private:
void generate();
Q_SIGNALS:
void changed();
};
MainWindow::MainWindow()
: DemosMainWindow(), density(12.0), ratio(1.6), integrating(1.0), sampling(1)
{
setupUi(this);
this->graphicsView->setAcceptDrops(false);
// Manual handling of actions
//
QObject::connect(this->actionQuit, SIGNAL(triggered()),
this, SLOT(close()));
//
// Setup the scene and the view
//
scene.setItemIndexMethod(QGraphicsScene::NoIndex);
scene.setSceneRect(-100, -100, 100, 100);
this->graphicsView->setScene(&scene);
// Turn the vertical axis upside down
this->graphicsView->transform().scale(1, -1);
// The navigation adds zooming and translation functionality to the
// QGraphicsView
this->addNavigation(this->graphicsView);
this->setupStatusBar();
this->setupOptionsMenu();
this->addAboutDemo(":/cgal/help/about_Stream_lines_2.html");
this->addAboutCGAL();
this->addRecentFiles(this->menuFile, this->actionQuit);
connect(this, SIGNAL(openRecentFile(QString)),
this, SLOT(open(QString)));
}
/*
* Qt Automatic Connections
* https://doc.qt.io/qt-5/designer-using-a-ui-file.html#automatic-connections
*
* setupUi(this) generates connections to the slots named
* "on_<action_name>_<signal_name>"
*/
void
MainWindow::on_actionClear_triggered()
{
Q_EMIT( changed());
}
void
MainWindow::generate()
{
stream_lines = new Stream_lines(*regular_grid, *runge_kutta_integrator, density, ratio, sampling);
sli = new CGAL::Qt::StreamLinesGraphicsItem<Stream_lines, K>(stream_lines);
rgi = new CGAL::Qt::RegularGridVectorFieldGraphicsItem<Regular_grid, K>(regular_grid);
QObject::connect(this, SIGNAL(changed()),
sli, SLOT(modelChanged()));
rgi->setVerticesPen(QPen(Qt::red, 3, Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin));
rgi->setEdgesPen(QPen(Qt::gray, 0, Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin));
sli->setEdgesPen(QPen(Qt::blue, 0, Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin));
scene.addItem(sli);
scene.addItem(rgi);
on_actionRecenter_triggered();
Q_EMIT( changed());
}
void
MainWindow::on_actionLoadPoints_triggered()
{
QString fileName = QFileDialog::getOpenFileName(this,
tr("Open grid file"),
"."
,tr("WKT files (*.wkt *.WKT)")
);
if(! fileName.isEmpty()){
open(fileName);
}
}
void
MainWindow::open(QString fileName)
{
// wait cursor
QApplication::setOverrideCursor(Qt::WaitCursor);
std::ifstream ifs(qPrintable(fileName));
runge_kutta_integrator = new Runge_kutta_integrator(integrating);
double iXSize, iYSize;
iXSize = iYSize = 512;
if(fileName.endsWith(".wkt", Qt::CaseInsensitive))
{
std::vector<std::vector<Point_2> > mp;
int size= -1;
do
{
std::vector<Point_2> ps;
CGAL::IO::read_multi_point_WKT(ifs, ps);
if(size == -1)
size = static_cast<int>(ps.size());
else if(ps.size() > 0 && size != static_cast<int>(ps.size()))
ps.resize(size);
else if(ps.size() == 0)
continue;
mp.push_back(ps);
}while(ifs.good() && !ifs.eof());
regular_grid = new Regular_grid(size, static_cast<int>(mp.size()), iXSize, iYSize);
/*fill the grid with the appropriate values*/
for (unsigned int i=0;i<static_cast<unsigned int>(size);++i)
for (unsigned int j=0;j<mp.size();++j)
{
regular_grid->set_field(i, j, Vector(mp[j][i].x(), mp[j][i].y()));
}
}
else{
unsigned int x_samples, y_samples;
ifs >> x_samples;
ifs >> y_samples;
regular_grid = new Regular_grid(x_samples, y_samples, iXSize, iYSize);
/*fill the grid with the appropriate values*/
for (unsigned int i=0;i<x_samples;i++)
for (unsigned int j=0;j<y_samples;j++)
{
double xval, yval;
ifs >> xval;
ifs >> yval;
regular_grid->set_field(i, j, Vector(xval, yval));
}
}
ifs.close();
// default cursor
QApplication::restoreOverrideCursor();
this->addToRecentFiles(fileName);
generate();
Q_EMIT( changed());
}
void
MainWindow::on_actionSavePoints_triggered()
{
QString fileName = QFileDialog::getSaveFileName(this,
tr("Save points"),
".",
tr("WKT files (*.wkt *.WKT)"));
if(! fileName.isEmpty()){
std::ofstream ofs(qPrintable(fileName));
std::vector<std::vector<Point_2> >mp;
mp.resize(regular_grid->get_dimension().second);
for (int i=0;i<regular_grid->get_dimension().first;++i)
{
mp[i].reserve(regular_grid->get_dimension().second);
for (int j=0;j<regular_grid->get_dimension().second;++j)
{
mp[i].push_back(Point_2(regular_grid->get_field(j,i).x(),
regular_grid->get_field(j,i).y()));
}
CGAL::IO::write_multi_point_WKT(ofs, mp[i]);
}
ofs.close();
}
}
void
MainWindow::on_actionRecenter_triggered()
{
this->graphicsView->setSceneRect(rgi->boundingRect());
this->graphicsView->fitInView(rgi->boundingRect(), Qt::KeepAspectRatio);
}
#include <CGAL/Qt/resources.h>
int main(int argc, char **argv)
{
QApplication app(argc, argv);
app.setOrganizationDomain("geometryfactory.com");
app.setOrganizationName("GeometryFactory");
app.setApplicationName("Stream_lines_2 demo");
// Import resources from libCGAL (Qt6).
// See https://doc.qt.io/qt-5/qdir.html#Q_INIT_RESOURCE
CGAL_QT_INIT_RESOURCES;
Q_INIT_RESOURCE(Stream_lines_2);
MainWindow mainWindow;
mainWindow.show();
return app.exec();
}
#include "Stream_lines_2.moc"
|