| OLD | NEW |
| 1 // | 1 // |
| 2 // NSBezierPath+MCAdditions.m | 2 // NSBezierPath+MCAdditions.m |
| 3 // | 3 // |
| 4 // Created by Sean Patrick O'Brien on 4/1/08. | 4 // Created by Sean Patrick O'Brien on 4/1/08. |
| 5 // Copyright 2008 MolokoCacao. All rights reserved. | 5 // Copyright 2008 MolokoCacao. All rights reserved. |
| 6 // | 6 // |
| 7 | 7 |
| 8 #import "NSBezierPath+MCAdditions.h" | 8 #import "NSBezierPath+MCAdditions.h" |
| 9 | 9 |
| 10 #import "third_party/GTM/AppKit/GTMNSBezierPath+CGPath.h" | 10 #import "third_party/GTM/AppKit/GTMNSBezierPath+CGPath.h" |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 | 179 |
| 180 /* Stroke the path. */ | 180 /* Stroke the path. */ |
| 181 [self stroke]; | 181 [self stroke]; |
| 182 | 182 |
| 183 /* Restore the previous graphics context. */ | 183 /* Restore the previous graphics context. */ |
| 184 [thisContext restoreGraphicsState]; | 184 [thisContext restoreGraphicsState]; |
| 185 [self setLineWidth:lineWidth]; | 185 [self setLineWidth:lineWidth]; |
| 186 } | 186 } |
| 187 | 187 |
| 188 @end | 188 @end |
| OLD | NEW |