Go to the documentation of this file.00001 @class TransferPoint;
00002
00008 @interface TransferFunction : NSObject {
00009
00010 @private
00011
00012 int transferResolution;
00013 NSMutableArray *transferPoints;
00014 }
00015
00016
00017
00018 @property (nonatomic) int transferResolution;
00019
00020
00021
00022 @property (nonatomic, retain) NSMutableArray *transferPoints;
00023
00030 - (id)init;
00038 - (TransferPoint*)getTransferPoint:(int)idx;
00044 - (void)nodeChanged:(NSNotification *)notification;
00045
00046 @end