-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAppController.h
More file actions
41 lines (34 loc) · 803 Bytes
/
AppController.h
File metadata and controls
41 lines (34 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//
// AppController.h
// Replicator
//
// Created by test on 10/17/09.
// Copyright 2009 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import <QuartzCore/QuartzCore.h>
@interface AppController : NSObject {
IBOutlet NSView *view;
CALayer *rootLayer;
CALayer *sublayerOne;
CALayer *sublayerTwo;
CAReplicatorLayer *replicatorNorth;
CAReplicatorLayer *replicatorEast;
CAReplicatorLayer *replicatorSouth;
CAReplicatorLayer *replicatorWest;
}
- (void)animateIn;
- (void)rollAnimation;
- (void)zoomIn;
- (void)createNorthQuad;
- (void)createSouthQuad;
- (void)centerX;
- (void)centerY;
- (void)spreadX;
- (void)spreadY;
- (void)rotateCameraAngle;
- (void)animateTopOut;
- (void)animateBottomOut;
- (void)reverseAnimationTopOut;
- (void)reverseAnimationBottomOut;
@end