public bool fits(iRoundPeg peg) { if (this.radius > peg.getRadius()) { return(true); } else { return(false); } }
public bool Fits(iRoundPeg peg) { if (peg.getRadius() <= radius) { return(true); } else { return(false); } }