summaryrefslogtreecommitdiff
path: root/tikzit/src/osx/CALayer+DrawLabel.h
blob: 32282d97b998a42db365ef4674c51251b1d68c24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
//  CALayer+DrawLabel.h
//  TikZiT
//
//  Created by Aleks Kissinger on 09/05/2011.
//  Copyright 2011 Aleks Kissinger. All rights reserved.
//

#import <Cocoa/Cocoa.h>
#import <QuartzCore/CoreAnimation.h>

@class Transformer;

@interface CALayer(DrawLabel)

- (void)drawLabel:(NSString*)label
		  atPoint:(NSPoint)pt
		inContext:(CGContextRef)context
	   usingTrans:(Transformer*)t;

@end