mirror of https://github.com/CGAL/cgal
Add support for circular arcs
This commit is contained in:
parent
95dd6eb40f
commit
138cac3cea
|
|
@ -29,6 +29,8 @@ This is typically the visible area of the widget where the unbounded object is d
|
||||||
|
|
||||||
\ccMethod{PainterOstream<K> operator<<(K::Circle_2);}{Draws a circle.}
|
\ccMethod{PainterOstream<K> operator<<(K::Circle_2);}{Draws a circle.}
|
||||||
|
|
||||||
|
\ccMethod{PainterOstream<K> operator<<(K::Circular_arc_2);}{Draws a circular arc.}
|
||||||
|
|
||||||
\ccMethod{PainterOstream<K> operator<<(std::list<K::Point_2>);}{Draws a polyline. In order to close it the first and last point must be equal. }
|
\ccMethod{PainterOstream<K> operator<<(std::list<K::Point_2>);}{Draws a polyline. In order to close it the first and last point must be equal. }
|
||||||
|
|
||||||
\ccMethod{PainterOstream<K> operator<<(Bbox_2);}{Draws an iso rectangle.}
|
\ccMethod{PainterOstream<K> operator<<(Bbox_2);}{Draws an iso rectangle.}
|
||||||
|
|
|
||||||
|
|
@ -23,6 +23,7 @@ This package provides some classes which allow to use \cgal\ classes in
|
||||||
|
|
||||||
\ccRefIdfierPage{CGAL::Qt::GraphicsViewInput}\\
|
\ccRefIdfierPage{CGAL::Qt::GraphicsViewInput}\\
|
||||||
\ccRefIdfierPage{CGAL::Qt::GraphicsViewCircleInput<K>}\\
|
\ccRefIdfierPage{CGAL::Qt::GraphicsViewCircleInput<K>}\\
|
||||||
|
\ccRefIdfierPage{CGAL::Qt::GraphicsViewCircularArcInput<K>}\\
|
||||||
\ccRefIdfierPage{CGAL::Qt::GraphicsViewIsoRectangleInput<K>}\\
|
\ccRefIdfierPage{CGAL::Qt::GraphicsViewIsoRectangleInput<K>}\\
|
||||||
\ccRefIdfierPage{CGAL::Qt::GraphicsViewPolylineInput<K>}
|
\ccRefIdfierPage{CGAL::Qt::GraphicsViewPolylineInput<K>}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,9 @@
|
||||||
\input{GraphicsView_ref/GraphicsViewPolylineInput.tex}
|
\input{GraphicsView_ref/GraphicsViewPolylineInput.tex}
|
||||||
\input{GraphicsView_ref/GraphicsViewIsoRectangleInput.tex}
|
\input{GraphicsView_ref/GraphicsViewIsoRectangleInput.tex}
|
||||||
\input{GraphicsView_ref/GraphicsViewCircleInput.tex}
|
\input{GraphicsView_ref/GraphicsViewCircleInput.tex}
|
||||||
|
\input{GraphicsView_ref/GraphicsViewCircularArcInput.tex}
|
||||||
\input{GraphicsView_ref/GraphicsItem.tex}
|
\input{GraphicsView_ref/GraphicsItem.tex}
|
||||||
|
\input{GraphicsView_ref/CircularArcGraphicsItem.tex}
|
||||||
\input{GraphicsView_ref/TriangulationGraphicsItem.tex}
|
\input{GraphicsView_ref/TriangulationGraphicsItem.tex}
|
||||||
\input{GraphicsView_ref/ConstrainedTriangulationGraphicsItem.tex}
|
\input{GraphicsView_ref/ConstrainedTriangulationGraphicsItem.tex}
|
||||||
\input{GraphicsView_ref/VoronoiGraphicsItem.tex}
|
\input{GraphicsView_ref/VoronoiGraphicsItem.tex}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue