/** just a blob round my end position */
public void paint( Graphics g)
{
g.setColor( colour);
g.fillOval( end.x - radius, end.y - radius,
2 * radius, 2 * radius);
}
paint which describes
how a BlobHand paints itself on a
Graphics object.
setColor of the
Graphics object to set the colour it
wants.fillOval of the
Graphics object to draw a filled circle at
its end positionpublic means that any other object can call
this methodvoid means that this method doesn't return
any value
give me feedback on this page // show previous feedback on this page