6 * $Date: 2012-07-05 16:45:20 +0200 (Do, 05. Jul 2012) $
7 ***************************************************************/
10 * \brief Implementation of class Overlap
12 * \author Rene Weiskircher
15 * This file is part of the Open Graph Drawing Framework (OGDF).
19 * See README.txt in the root directory of the OGDF installation for details.
22 * This program is free software; you can redistribute it and/or
23 * modify it under the terms of the GNU General Public License
24 * Version 2 or 3 as published by the Free Software Foundation;
25 * see the file LICENSE.txt included in the packaging of this file
29 * This program is distributed in the hope that it will be useful,
30 * but WITHOUT ANY WARRANTY; without even the implied warranty of
31 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
32 * GNU General Public License for more details.
35 * You should have received a copy of the GNU General Public
36 * License along with this program; if not, write to the Free
37 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
38 * Boston, MA 02110-1301, USA.
40 * \see http://www.gnu.org/copyleft/gpl.html
41 ***************************************************************/
44 #include <ogdf/internal/energybased/Overlap.h>
48 Overlap::Overlap(GraphAttributes
&AG
) : NodePairEnergy("Overlap",AG
){}
50 double Overlap::computeCoordEnergy(node v1
, node v2
, const DPoint
&p1
, const DPoint
&p2
)
53 IntersectionRectangle
i1(shape(v1
)), i2(shape(v2
));
56 IntersectionRectangle intersection
= i1
.intersection(i2
);
57 double area
= intersection
.area();
59 OGDF_ASSERT(area
> -0.00001);
62 double minArea
= min(i1
.area(),i2
.area());
63 double energy
= area
/ minArea
;