#include <valfunc.h>
Inheritance diagram for ValueFunctionSS_Barb:
Public Member Functions | |
ValueFunctionSS_Barb (double newValue1y=0.5, double newValue2x=0.333, double newValue2y=1.0, double newValue3x=0.667, double newValue3y=0.5, double newValue4y=0.0) | |
virtual ValueFunction * | Clone (void) |
virtual ValueFunctionSmoothStroke * | CreateInstance (void) |
virtual ValueFunctionID | GetUniqueID (void) |
Static Public Attributes | |
static bool | bMadeTable = false |
Private Member Functions | |
CC_DECLARE_DYNAMIC (ValueFunctionSS_Barb) |
Definition at line 1200 of file valfunc.h.
|
Definition at line 1205 of file valfunc.h. 01206 : ValueFunctionSmoothStroke(newValue1y, newValue2x, newValue2y, newValue3x, newValue3y, newValue4y) { if (!bMadeTable) { MakeTable(); bMadeTable = true; } };
|
|
|
|
Implements ValueFunction. Definition at line 1208 of file valfunc.h. 01208 { ValueFunction *pClone = new ValueFunctionSS_Barb(Value1y, Value2x, Value2y, Value3x, Value3y, Value4y); return(pClone); };
|
|
Reimplemented from ValueFunctionSmoothStroke. Definition at line 1209 of file valfunc.h. 01209 { return(new ValueFunctionSS_Barb); };
|
|
Implements ValueFunction. Definition at line 1210 of file valfunc.h. 01210 { return(ValueFunctionID_SS_Barb); };
|
|
|