Authored by Joseph G

Reworked the includes a little.

... ... @@ -6,10 +6,6 @@
*
*/
#define RMLatLong CLLocationCoordinate2D
typedef struct {
double x, y;
} RMXYPoint;
... ... @@ -23,9 +19,6 @@ typedef struct {
RMXYSize size;
} RMXYRect;
RMXYPoint RMScaleXYPointAboutPoint(RMXYPoint point, float factor, RMXYPoint pivot);
RMXYRect RMScaleXYRectAboutPoint (RMXYRect rect, float factor, RMXYPoint pivot);
RMXYPoint RMTranslateXYPointBy (RMXYPoint point, RMXYSize delta);
... ...
... ... @@ -49,7 +49,8 @@ typedef struct {
} CLLocationCoordinate2D;
#endif
typedef CLLocationCoordinate2D RMLatLong;
#endif
\ No newline at end of file
... ...
... ... @@ -11,6 +11,7 @@
#import "proj_api.h"
#import "RMFoundation.h"
#import "RMLatLong.h"
@interface RMProjection : NSObject {
... ...