|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r78174 - sandbox/gtl/boost/polygon
From: sydorchuk.andriy_at_[hidden]
Date: 2012-04-23 19:47:32
Author: asydorchuk
Date: 2012-04-23 19:47:31 EDT (Mon, 23 Apr 2012)
New Revision: 78174
URL: http://svn.boost.org/trac/boost/changeset/78174
Log:
Code styling Voronoi main header.
Text files modified:
sandbox/gtl/boost/polygon/voronoi.hpp | 21 ++++++++++++++-------
1 files changed, 14 insertions(+), 7 deletions(-)
Modified: sandbox/gtl/boost/polygon/voronoi.hpp
==============================================================================
--- sandbox/gtl/boost/polygon/voronoi.hpp (original)
+++ sandbox/gtl/boost/polygon/voronoi.hpp 2012-04-23 19:47:31 EDT (Mon, 23 Apr 2012)
@@ -37,7 +37,8 @@
typename geometry_concept<Point>::type
>::type
>::type,
-void>::type
+ void
+>::type
insert(const Point &point, VB *vb) {
vb->insert_point(x(point), y(point));
}
@@ -53,7 +54,8 @@
>::type
>::type
>::type,
-void>::type
+ void
+>::type
insert(PointIterator first, const PointIterator last, VB *vb) {
for (PointIterator it = first; it != last; ++it) {
insert(*it, vb);
@@ -68,7 +70,8 @@
typename geometry_concept<Segment>::type
>::type
>::type,
-void>::type
+ void
+>::type
insert(const Segment &segment, VB *vb) {
vb->insert_segment(x(low(segment)), y(low(segment)), x(high(segment)), y(high(segment)));
}
@@ -83,7 +86,8 @@
>::type
>::type
>::type,
-void>::type
+ void
+>::type
insert(SegmentIterator first, SegmentIterator last, VB *vb) {
for (SegmentIterator it = first; it != last; ++it) {
insert(*it, vb);
@@ -100,7 +104,8 @@
>::type
>::type
>::type,
-void>::type
+ void
+>::type
construct_voronoi(PointIterator first, PointIterator last, VD *vd) {
default_voronoi_builder builder;
insert(first, last, &builder);
@@ -117,7 +122,8 @@
>::type
>::type
>::type,
-void>::type
+ void
+>::type
construct_voronoi(SegmentIterator first, SegmentIterator last, VD *vd) {
default_voronoi_builder builder;
insert(first, last, &builder);
@@ -143,7 +149,8 @@
>::type
>::type
>::type,
-void>::type
+ void
+>::type
construct_voronoi(PointIterator p_first, PointIterator p_last,
SegmentIterator s_first, SegmentIterator s_last, VD *vd) {
default_voronoi_builder builder;
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk