I would like to determine if a certain point is contained within a 'rectangle'. The 'rectangle' will be made up of latitude/longitude coordinates (given northWest and southEast coordinate points)... so basically here are the parameters:
public boolean hasPoint(LatLon northWest, LatLon southEast, LatLon point) {}
The LatLon class just has: double latitude; double longitude;
I have no idea how to start this... any help will be appreciated.