Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/12/08 18:48:01 (16 years ago)
Author:
bspisic
Message:

#424
Implemented zooming

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Visualization/WorldShape.cs

    r928 r984  
    2121
    2222      graphics.SetClip(innerViewport);
    23      
     23
    2424      foreach (IShape shape in shapes) {
    2525        shape.Draw(graphics, innerViewport, this.clippingArea);
    2626      }
    27      
     27
    2828      graphics.Restore(gstate);
    2929    }
     
    4848      shapes.Add(shape);
    4949    }
     50
     51    public bool RemoveShape(IShape shape) {
     52      return shapes.Remove(shape);
     53    }
    5054  }
    5155}
Note: See TracChangeset for help on using the changeset viewer.