diff options
Diffstat (limited to 'Source/SPGeometryDataView.h')
-rw-r--r-- | Source/SPGeometryDataView.h | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/Source/SPGeometryDataView.h b/Source/SPGeometryDataView.h index a2a620bb..3ff72110 100644 --- a/Source/SPGeometryDataView.h +++ b/Source/SPGeometryDataView.h @@ -27,7 +27,21 @@ @interface SPGeometryDataView : NSView { - + 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; } +- (id)initWithCoordinates:(NSDictionary*)coord; +- (void)setMax:(NSArray*)bbox; +- (NSPoint)normalizePoint:(NSPoint)aPoint; +- (NSImage*)image; + @end |