Jim
My first question is: is that really the way you want to do this? In the hierarchy you sdescribed you are basically saying that a Rect is a Meth or behaves like a Meth. Which is fine if there is some functionality you can factor out of a Rect into a Meth. If this is a school assignment and you have to do it this way then you're stuck but it doesn't look like good OO design from what you've said.
The problem you're having is that no-where in the code do you have any Point objects. You need a Point object(s) to call the Point methods on.
I normally think of an interface as abstrating behavior while you can use a Base class (abstract or concrete) to abstract structure. For example it makes more sense to me to have a Rect object made up of Point objects, or you could have Rect object that has one Point object as its origin and then to lengths to represent its height and width.
You can do what it is you're trying to do, but in the Rect class you are going to need at least one Point object. The Rect class is going to get he methods declared in the Meth interface, now you need something in the Rect class to call those methods on.
From what you've described the Rect always has one point at (0,0) so create a point object in the Rect class in the constructor set it to (0,0). Now you can use that Point object to call the methods in the Point class. So you can get the coordinates of that point and do what you need to do with them. IF you are beng forced to use the interface to work with the Points then in the interface you would put whatever methods you're going to need. You could have a getNextPoint method that works on a Point object and takes a length and a width as arguments and returns a Point object that has the coordinates you need.
Then with that Point you can move to the next one. In the method that calls getNextPoint you'll need to determine exactly what values to put in for the arguments - I'll leave that for you.
Keep in mind there are probably quite a few ways to solve this, others will surely post their sugestions too.
Hope that helps