/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package figures;
import java.util.ArrayList;
import java.util.Iterator;
/**
*
* @author m10bma2
*/
public class Shape {
public double Area;
//public abstract double getArea();
public boolean Equals(Shape a,Shape b){
if (a.Area == b.Area){
return true;
}else{
return false;
}
}
}