mirror of https://github.com/CGAL/cgal
181 lines
4.9 KiB
C++
181 lines
4.9 KiB
C++
// Copyright(c) 2022 GeometryFactory (France).
|
|
// All rights reserved.
|
|
//
|
|
// This file is part of CGAL (www.cgal.org).
|
|
//
|
|
// $URL$
|
|
// $Id$
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
|
|
//
|
|
// Author(s) : Andreas Fabri
|
|
|
|
#ifndef CGAL_DRAW_CT2_H
|
|
#define CGAL_DRAW_CT2_H
|
|
|
|
#include <CGAL/license/Triangulation_2.h>
|
|
#include <CGAL/Qt/Basic_viewer_qt.h>
|
|
|
|
#include <CGAL/Constrained_triangulation_2.h>
|
|
#include <CGAL/Triangulation_2/internal/In_domain.h>
|
|
|
|
#ifdef CGAL_USE_BASIC_VIEWER
|
|
|
|
#include <CGAL/Qt/init_ogl_context.h>
|
|
|
|
namespace CGAL
|
|
{
|
|
|
|
// Viewer class for T2
|
|
template<class T2, class InDomainPmap>
|
|
class SimpleConstrainedTriangulation2ViewerQt : public Basic_viewer_qt
|
|
{
|
|
typedef Basic_viewer_qt Base;
|
|
typedef typename T2::Vertex_handle Vertex_const_handle;
|
|
typedef typename T2::Finite_edges_iterator Edge_const_handle;
|
|
typedef typename T2::Finite_faces_iterator Facet_const_handle;
|
|
typedef typename T2::Point Point;
|
|
|
|
public:
|
|
/// Construct the viewer.
|
|
/// @param at2 the t2 to view
|
|
/// @param title the title of the window
|
|
/// @param anofaces if true, do not draw faces (faces are not computed; this can be
|
|
/// useful for very big object where this time could be long)
|
|
SimpleConstrainedTriangulation2ViewerQt(QWidget* parent, const T2& at2,
|
|
InDomainPmap ipm,
|
|
const char* title="Basic CDT2 Viewer",
|
|
bool anofaces=false) :
|
|
// First draw: vertices; edges, faces; multi-color; no inverse normal
|
|
Base(parent, title, true, true, true, false, false),
|
|
t2(at2),
|
|
ipm(ipm),
|
|
m_nofaces(anofaces)
|
|
{
|
|
compute_elements();
|
|
}
|
|
|
|
protected:
|
|
void compute_face(Facet_const_handle fh)
|
|
{
|
|
CGAL::IO::Color c = get(ipm, fh)? CGAL::IO::yellow() : CGAL::IO::white();
|
|
face_begin(c);
|
|
|
|
add_point_in_face(fh->vertex(0)->point());
|
|
add_point_in_face(fh->vertex(1)->point());
|
|
add_point_in_face(fh->vertex(2)->point());
|
|
|
|
face_end();
|
|
}
|
|
|
|
void compute_edge(Edge_const_handle eh)
|
|
{
|
|
CGAL::IO::Color c = t2.is_constrained(*eh)? CGAL::IO::green() : CGAL::IO::black();
|
|
add_segment(eh->first->vertex(eh->first->cw(eh->second))->point(),
|
|
eh->first->vertex(eh->first->ccw(eh->second))->point(),
|
|
c);
|
|
}
|
|
|
|
void compute_vertex(Vertex_const_handle vh)
|
|
{ add_point(vh->point()); }
|
|
|
|
void compute_elements()
|
|
{
|
|
clear();
|
|
|
|
if (!m_nofaces)
|
|
{
|
|
for (typename T2::Finite_faces_iterator it=t2.finite_faces_begin();
|
|
it!=t2.finite_faces_end(); ++it)
|
|
{ compute_face(it); }
|
|
}
|
|
|
|
for (typename T2::Finite_edges_iterator it=t2.finite_edges_begin();
|
|
it!=t2.finite_edges_end(); ++it)
|
|
{ compute_edge(it); }
|
|
|
|
for (typename T2::Finite_vertices_iterator it=t2.finite_vertices_begin();
|
|
it!=t2.finite_vertices_end(); ++it)
|
|
{ compute_vertex(it); }
|
|
}
|
|
|
|
virtual void keyPressEvent(QKeyEvent *e)
|
|
{
|
|
// Test key pressed:
|
|
// const ::Qt::KeyboardModifiers modifiers = e->modifiers();
|
|
// if ((e->key()==Qt::Key_PageUp) && (modifiers==Qt::NoButton)) { ... }
|
|
|
|
// Call: * compute_elements() if the model changed, followed by
|
|
// * redraw() if some viewing parameters changed that implies some
|
|
// modifications of the buffers
|
|
// (eg. type of normal, color/mono)
|
|
// * update() just to update the drawing
|
|
|
|
// Call the base method to process others/classicals key
|
|
Base::keyPressEvent(e);
|
|
}
|
|
|
|
protected:
|
|
const T2& t2;
|
|
InDomainPmap ipm;
|
|
bool m_nofaces;
|
|
};
|
|
|
|
// Specialization of draw function.
|
|
#define CGAL_T2_TYPE CGAL::Constrained_triangulation_2<Gt, Tds, Itag>
|
|
|
|
template<class Gt, class Tds, class Itag, class InDomainPmap>
|
|
void draw(const CGAL_T2_TYPE& at2,
|
|
InDomainPmap ipm)
|
|
{
|
|
const char* title="Constrained_triangulation_2 Basic Viewer";
|
|
bool nofill=false;
|
|
|
|
#if defined(CGAL_TEST_SUITE)
|
|
bool cgal_test_suite=true;
|
|
#else
|
|
bool cgal_test_suite=qEnvironmentVariableIsSet("CGAL_TEST_SUITE");
|
|
#endif
|
|
|
|
if (!cgal_test_suite)
|
|
{
|
|
CGAL::Qt::init_ogl_context(4,3);
|
|
int argc=1;
|
|
const char* argv[2]={"t2_viewer", nullptr};
|
|
QApplication app(argc,const_cast<char**>(argv));
|
|
SimpleConstrainedTriangulation2ViewerQt<CGAL_T2_TYPE, InDomainPmap>
|
|
mainwindow(app.activeWindow(), at2, ipm, title, nofill);
|
|
mainwindow.show();
|
|
app.exec();
|
|
}
|
|
}
|
|
|
|
|
|
template<class Gt, class Tds, class Itag>
|
|
void draw(const CGAL_T2_TYPE& at2)
|
|
{
|
|
internal::In_domain<CGAL_T2_TYPE> in_domain;
|
|
draw(at2, in_domain);
|
|
}
|
|
|
|
#undef CGAL_T2_TYPE
|
|
|
|
} // End namespace CGAL
|
|
|
|
#else
|
|
|
|
namespace CGAL {
|
|
// Specialization of draw function.
|
|
#define CGAL_T2_TYPE CGAL::Constrained_triangulation_2<Gt, Tds, Itag>
|
|
|
|
template<class Gt, class Tds, class Itag, class InDomainPmap>
|
|
void draw(const CGAL_T2_TYPE& ,
|
|
InDomainPmap )
|
|
{}
|
|
#undef CGAL_T2_TYPE
|
|
|
|
} // End namespace CGAL
|
|
|
|
#endif // CGAL_USE_BASIC_VIEWER
|
|
|
|
#endif // CGAL_DRAW_CT2_H
|