source:
trunk/sources/HeuristicLab.Visualization/IShape.cs
@
1196
Last change on this file since 1196 was 635, checked in by mstoeger, 16 years ago | |
---|---|
File size: 219 bytes |
Rev | Line | |
---|---|---|
[635] | 1 | using System.Drawing; |
2 | ||
3 | namespace 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.