/GraphDraw_Mixed/GDNode.m
http://github.com/jsyedidia/nugraphdraw · Objective C · 23 lines · 13 code · 5 blank · 5 comment · 0 complexity · c6b4bb1844306b0fcbb99966c77766d6 MD5 · raw file
- // Created by Jonathan Yedidia on 5/31/08.
- // Copyright 2008. All rights reserved.
- // Objective-C code based on Aaron Hillegass'
- // "GraphLaughs" PyObjC application, available online at
- // http://weblog.bignerdranch.com/pythonex/GraphLaughs.tgz
- #import "GDNode.h"
- @implementation GDNode
- - (id)initWithPoint:(NSPoint)aPoint
- {
- [super init];
- point = aPoint;
- return self;
- }
- - (NSPoint)point
- {
- return point;
- }
- @end