Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HL-3.2-MonoMigration/HeuristicLab.Visualization/IShape.cs @ 4390

Last change on this file since 4390 was 635, checked in by mstoeger, 16 years ago

Imported charting framework sources into HeuristicLab.Visualization (#294)

File size: 219 bytes
Line 
1using System.Drawing;
2
3namespace HeuristicLab.Visualization {
4  public interface IShape {
5    void Draw(Graphics graphics, Rectangle viewport, RectangleD clippingArea);
6    RectangleD BoundingBox { get; }
7  }
8}
Note: See TracBrowser for help on using the repository browser.