1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 |
|
---|
22 | using System;
|
---|
23 | using System.Drawing;
|
---|
24 |
|
---|
25 | namespace HeuristicLab.Visualization {
|
---|
26 | public class Ellipse : RectangularPrimitiveBase {
|
---|
27 | public Ellipse(IChart chart, PointD lowerLeft, PointD upperRight)
|
---|
28 | : base(chart, lowerLeft, upperRight) {
|
---|
29 | }
|
---|
30 | public Ellipse(IChart chart, PointD lowerLeft, PointD upperRight, Pen pen, Brush brush)
|
---|
31 | : base(chart, lowerLeft, upperRight, pen, brush) {
|
---|
32 | }
|
---|
33 |
|
---|
34 | public override bool ContainsPoint(PointD point) {
|
---|
35 | if (base.ContainsPoint(point)) return true;
|
---|
36 |
|
---|
37 | PointD midpoint;
|
---|
38 | PointD focus1;
|
---|
39 | PointD focus2;
|
---|
40 | Offset focus1_point;
|
---|
41 | Offset focus2_point;
|
---|
42 |
|
---|
43 | double a = Size.Width / 2; // half length of horizontal axis
|
---|
44 | double b = Size.Height / 2; // half length of vertical axis
|
---|
45 | midpoint = LowerLeft + new Offset(a, b);
|
---|
46 |
|
---|
47 | if (a >= b) {
|
---|
48 | double e = Math.Sqrt(a * a - b * b); // linear eccentricity
|
---|
49 | focus1 = new PointD(midpoint.X - e, midpoint.Y);
|
---|
50 | focus2 = new PointD(midpoint.X + e, midpoint.Y);
|
---|
51 | } else {
|
---|
52 | double e = Math.Sqrt(b * b - a * a); // linear eccentricity
|
---|
53 | focus1 = new PointD(midpoint.X, midpoint.Y - e);
|
---|
54 | focus2 = new PointD(midpoint.X, midpoint.Y + e);
|
---|
55 | }
|
---|
56 | focus1_point = focus1 - point;
|
---|
57 | focus2_point = focus2 - point;
|
---|
58 |
|
---|
59 | return focus1_point.Length + focus2_point.Length <= 2 * Math.Max(a, b);
|
---|
60 | }
|
---|
61 |
|
---|
62 | public override void Draw(Graphics graphics) {
|
---|
63 | var p = Chart.TransformWorldToPixel(new PointD(LowerLeft.X, LowerLeft.Y + Size.Height));
|
---|
64 | var s = Chart.TransformWorldToPixel(Size);
|
---|
65 | if (Brush != null)
|
---|
66 | graphics.FillEllipse(Brush, p.X, p.Y, s.Width, s.Height);
|
---|
67 | graphics.DrawEllipse(Pen, p.X, p.Y, s.Width, s.Height);
|
---|
68 | base.Draw(graphics);
|
---|
69 | }
|
---|
70 | }
|
---|
71 | }
|
---|