-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPathFeatures.m
More file actions
36 lines (27 loc) · 988 Bytes
/
Copy pathPathFeatures.m
File metadata and controls
36 lines (27 loc) · 988 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
//
// PathFeatures.m
// VisualFeedback
//
// Created by Nicole Lehrer on 10/24/12.
//
//
#import "PathFeatures.h"
@implementation PathFeatures
@synthesize positiveHorizontalMagnitude = _positiveHorizontalMagnitude;
@synthesize negativeHorizontalMagnitude = _negativeHorizontalMagnitude;
@synthesize positiveVerticalMagnitude = _positiveVerticalMagnitude;
@synthesize negativeVerticalMagnitude = _negativeVerticalMagnitude;
@synthesize positiveHorizontalCategory = _positiveHorizontalCategory;
@synthesize negativeHorizontalCategory = _negativeHorizontalCategory;
@synthesize positiveVerticalCategory = _positiveVerticalCategory;
@synthesize negativeVerticalCategory = _negativeVerticalCategory;
@synthesize horizontalComponentForPositiveVertical = _horizontalComponentForPositiveVertical;
@synthesize horizontalComponentForNegativeVertical = _horizontalComponentForNegativeVertical;
- (id)init
{
self = [super init];
if (self != nil) {
}
return self;
}
@end