| That sounds about right to me. A class is like a blueprint or template that objects (the instances or individuals) are made of. You can make many instances from one class just like you can make many cookies from one recipe, or many houses from one set of blueprints. For example: joe = REMOVED();jane=REMOVED();sally=REMOVED() from the previous question. All are boxes (instances of the class REMOVED) Each can then on it's own draw itself. joe.draw(canvas) will draw the instance called joe on the canvas jane.draw(canvas) will draw the instance called jane on the canvas, etc. Make sense? Student1594 |