Ignore:
Timestamp:
06/20/08 12:55:35 (16 years ago)
Author:
ra33
Message:

Made a whole lot of changes...

Including using polyLine etc for drawing rectangles nicer

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/gui/Vector.java

    r79 r105  
    11package org.expeditee.gui;
    22
     3import java.awt.Color;
    34import java.awt.Point;
    45
     
    1011        public float Scale;
    1112
    12         public Vector(Frame overlay, Point origin, Float scale) {
     13        public Color Foreground;
     14        public Color Background;
     15
     16        public Vector(Frame overlay, Point origin, Float scale, Color color, Color background) {
    1317                Frame = overlay;
    1418                Origin = origin;
    1519                Scale = scale;
     20                Foreground = color;
     21                Background = background;
    1622        }
    1723
Note: See TracChangeset for help on using the changeset viewer.