Inherits from NSObject
Conforms to OALFunction
Declared in OALFunction.h

Overview

Returns the reverse of another function. * For example, a linear up ramp will become a linear down ramp: *

   | Before:      | After:       |
   |           ## | ##           |
   |         ##   |   ##         |
   |       ##     |     ##       |
   |     ##       |       ##     |
   |   ##         |         ##   |
   | ##           |           ## |

Tasks

Properties

function

The function which will have its value reversed.

@property (readwrite, retain) id<OALFunction,NSObject> function

Declared In

OALFunction.h

Class Methods

functionWithFunction:

Create a new reverse function.

+ (id)functionWithFunction:(id<OALFunction,NSObject>)function

Parameters

function

The function to reverse.

Return Value

the new reversed function.

Declared In

OALFunction.h

Instance Methods

initWithFunction:

Initialize a reverse function.

- (id)initWithFunction:(id<OALFunction,NSObject>)function

Parameters

function

The function to reverse.

Return Value

the initialized reversed function.

Declared In

OALFunction.h