/usr/include/CGAL/Qt/PainterOstream.h is in libcgal-qt4-dev 4.2-5ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | // Copyright (c) 2008 GeometryFactory Sarl (France).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org).
// You can redistribute it and/or modify it under the terms of the GNU
// General Public License as published by the Free Software Foundation,
// either version 3 of the License, or (at your option) any later version.
//
// Licensees holding a valid commercial license may use this file in
// accordance with the commercial license agreement provided with the software.
//
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
//
// $URL$
// $Id$
//
//
// Author(s) : Andreas Fabri <Andreas.Fabri@geometryfactory.com>
// Laurent Rineau <Laurent.Rineau@geometryfactory.com>
#ifndef CGAL_QT_PAINTER_OSTREAM_H
#define CGAL_QT_PAINTER_OSTREAM_H
#include <QPainter>
#include <QPen>
#include <QRectF>
#include <QPainterPath>
#include <CGAL/Qt/Converter.h>
namespace CGAL {
template <class CK>
class Circular_arc_point_2;
template <class CK>
class Circular_arc_2;
template <class CK>
class Line_arc_2;
namespace internal {
template < class K >
struct Is_circular_kernel : public has_Circular_arc_point_2< K >
{ };
template < class K, bool b = Is_circular_kernel< K >::value >
struct Circular_kernel_2_types
{
struct Circular_arc_point_2 { };
struct Circular_arc_2 { };
struct Line_arc_2 { };
};
template < class K >
struct Circular_kernel_2_types< K, true >
{
typedef typename K::Circular_arc_point_2 Circular_arc_point_2;
typedef typename K::Circular_arc_2 Circular_arc_2;
typedef typename K::Line_arc_2 Line_arc_2;
};
}
namespace Qt {
template <typename K>
class PainterOstream {
private:
QPainter* qp;
Converter<K> convert;
typedef typename K::Point_2 Point_2;
typedef typename K::Segment_2 Segment_2;
typedef typename K::Ray_2 Ray_2;
typedef typename K::Line_2 Line_2;
typedef typename K::Triangle_2 Triangle_2;
typedef typename K::Iso_rectangle_2 Iso_rectangle_2;
typedef typename K::Circle_2 Circle_2;
typedef typename internal::Circular_kernel_2_types<K>::Circular_arc_point_2
Circular_arc_point_2;
typedef typename internal::Circular_kernel_2_types<K>::Circular_arc_2
Circular_arc_2;
typedef typename internal::Circular_kernel_2_types<K>::Line_arc_2
Line_arc_2;
public:
PainterOstream(QPainter* p, QRectF rect = QRectF())
: qp(p), convert(rect)
{}
PainterOstream& operator<<(const Point_2& p)
{
qp->drawPoint(convert(p));
return *this;
}
PainterOstream& operator<<(const Segment_2& s)
{
qp->drawLine(convert(s.source()), convert(s.target()));
return *this;
}
PainterOstream& operator<<(const Ray_2& r)
{
qp->drawLine(convert(r));
return *this;
}
PainterOstream& operator<<(const Line_2& l)
{
qp->drawLine(convert(l));
return *this;
}
PainterOstream& operator<<(const Triangle_2& t)
{
qp->drawPolygon(convert(t));
return *this;
}
PainterOstream& operator<<(const Iso_rectangle_2& r)
{
qp->drawRect(convert(r));
return *this;
}
PainterOstream& operator<<(const Bbox_2& bb)
{
qp->drawRect(convert(bb));
return *this;
}
PainterOstream& operator<<(const Circle_2& c)
{
qp->drawEllipse(convert(c.bbox()));
return *this;
}
PainterOstream& operator<<(const Circular_arc_point_2& p)
{
typedef typename K::Point_2 Point_2;
(*this) << Point_2(to_double(p.x()), to_double(p.y()));
return *this;
}
PainterOstream& operator<<(const Circular_arc_2& arc)
{
const typename K::Circle_2 & circ = arc.supporting_circle();
const typename K::Point_2 & center = circ.center();
const typename K::Circular_arc_point_2 & source = arc.source();
const typename K::Circular_arc_point_2 & target = arc.target();
double asource = std::atan2( -to_double(source.y() - center.y()),
to_double(source.x() - center.x()));
double atarget = std::atan2( -to_double(target.y() - center.y()),
to_double(target.x() - center.x()));
std::swap(asource, atarget);
double aspan = atarget - asource;
if(aspan < 0.)
aspan += 2 * CGAL_PI;
const double coeff = 180*16/CGAL_PI;
qp->drawArc(convert(circ.bbox()),
(int)(asource * coeff),
(int)(aspan * coeff));
return *this;
}
PainterOstream& operator<<(const Line_arc_2& arc)
{
(*this) << Segment_2(Point_2(to_double(arc.source().x()), to_double(arc.source().y())),
Point_2(to_double(arc.target().x()), to_double(arc.target().y())));
return *this;
}
void draw_parabola_segment(const Point_2& center, const Line_2& line,
const Point_2& source, const Point_2& target)
{
if (CGAL::collinear(source,target,center))
qp->drawLine(convert(source), convert(target));
else
{
const Point_2 proj_source = line.projection(source);
const Point_2 proj_target = line.projection(target);
const Point_2 intersection = circumcenter(proj_source,
proj_target,
center);
// Property: "intersection" is the intersection of the two tangent
// lines in source and target.
QPainterPath path;
path.moveTo(convert(source));
path.quadTo(convert(intersection), convert(target));
qp->drawPath(path);
}
}
};
} // namespace Qt
} // namespace CGAL
#endif // CGAL_QT_PAINTER_OSTREAM_H
|