/** * Square as a regularpolygon. It is not much. * @author gtowell * Created: Oct 12, 2020 */ public class SquareRP extends RegularPolygon{ public SquareRP(int l) { super(4, l); this.name="square"; } }