Skip to content

Instantly share code, notes, and snippets.

@estebanroblesluna
Last active December 20, 2015 04:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save estebanroblesluna/6070367 to your computer and use it in GitHub Desktop.
Save estebanroblesluna/6070367 to your computer and use it in GitHub Desktop.
- (void) createFigureAt: (id) aPoint on: (id) aDrawing
{
var frame = CGRectMake(aPoint.x, aPoint.y, 100, 50);
var newFigure = [SimpleRectangleFigure frame: frame];
[aDrawing addFigure: newFigure];
[self activateSelectionTool];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment