diff options
Diffstat (limited to 'Source/SPGeometryDataView.h')
-rw-r--r-- | Source/SPGeometryDataView.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/Source/SPGeometryDataView.h b/Source/SPGeometryDataView.h index 3ff72110..c40cff97 100644 --- a/Source/SPGeometryDataView.h +++ b/Source/SPGeometryDataView.h @@ -29,14 +29,15 @@ { NSString *type; NSArray *coordinates; - double x_min; - double x_max; - double y_min; - double y_max; - double width; - double height; - double zoom_factor; - double margin_offset; + CGFloat x_min; + CGFloat x_max; + CGFloat y_min; + CGFloat y_max; + CGFloat width; + CGFloat height; + CGFloat zoom_factor; + CGFloat margin_offset; + } - (id)initWithCoordinates:(NSDictionary*)coord; |