below / iphone-bezierdemo

A Demo of the iPhone's CGPathAddQuadCurveToPoint function

Alexander v. Below (author)
Sat Nov 08 03:16:34 -0800 2008
iphone-bezierdemo / Classes / BDBezierView.h
100644 20 lines (16 sloc) 0.335 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// BDBezierView.h
// BezierDemo
//
// Created by Alexander v. Below on 07.11.08.
// Copyright 2008 AVB Software. All rights reserved.
//
 
#import <UIKit/UIKit.h>
#import "BDPointView.h"
 
@interface BDBezierView : UIView {
BDPointView * startView;
BDPointView * endView;
BDPointView * controlView;
}
- (void) setUpView;
 
@end