| 42 | } |
| 43 | |
| 44 | void ModulatedParameter::resetComputation() |
| 45 | { |
| 46 | // Back to default value |
| 47 | _instValue.setType(_type, false); |
| 48 | _prstValue.setType(_type, true); |
| 49 | |
| 50 | // Not computed yet |
| 51 | _computed = false; |
| 52 | _computedValue.dwValue = 0; |
| 53 | |
| 54 | // No modulation yet |
| 55 | clearModulations(); |
| 56 | } |
| 57 | |
| 58 | void ModulatedParameter::initValue(AttributeValue value, bool isPrst) |
| 59 | { |