Flycut/UI/RoundRecBezierPath.h
2016-04-09 23:18:45 +08:00

20 lines
517 B
Objective-C
Executable file

//
// RoundRecBezierPath.h
// Flycut
//
// Flycut by Gennadiy Potapov and contributors. Based on Jumpcut by Steve Cook.
// Copyright 2011 General Arcade. All rights reserved.
//
// This code is open-source software subject to the MIT License; see the homepage
// at <https://github.com/TermiT/Flycut> for details.
//
#import <AppKit/AppKit.h>
#import <AppKit/NSBezierPath.h>
@interface NSBezierPath (RoundRecBezierPath)
+(NSBezierPath*)bezierPathWithRoundRectInRect:(NSRect)aRect radius:(float)radius;
@end