Uses of Interface
de.unifreiburg.twodeedoo.world.IColor

Packages that use IColor
de.unifreiburg.twodeedoo.world A world simulator (like DrScheme's world teachpack) for twodeedoo. 
de.unifreiburg.twodeedoo.world.demo Demo world for the twodeedoo world package. 
 

Uses of IColor in de.unifreiburg.twodeedoo.world
 

Methods in de.unifreiburg.twodeedoo.world with parameters of type IColor
 void AwtCanvas.drawFilledCircle(int x, int y, int radius, IColor color)
           
 void ICanvas.drawFilledCircle(int centerX, int centerY, int radius, IColor color)
          Draw a filled circle.
 void AwtCanvas.drawFilledRect(int upperLeftX, int upperLeftY, int width, int height, IColor color)
           
 void ICanvas.drawFilledRect(int upperLeftX, int upperLeftY, int width, int height, IColor color)
          Draw a filled rectangle.
 void AwtCanvas.drawLine(int x0, int y0, int x1, int y1, IColor color)
           
 void ICanvas.drawLine(int x0, int y0, int x1, int y1, IColor color)
          Draw a line.
 void AwtCanvas.drawText(int x, int y, java.lang.String msg, IColor color)
           
 void ICanvas.drawText(int x, int y, java.lang.String msg, IColor color)
          Draw text in the standard font.
 

Uses of IColor in de.unifreiburg.twodeedoo.world.demo
 

Classes in de.unifreiburg.twodeedoo.world.demo that implement IColor
 class Color