| IAnimationValueTraitsTMultiply Method |
Multiplies an animation value by a given factor.
Namespace: DigitalRune.Animation.TraitsAssembly: DigitalRune.Animation (in DigitalRune.Animation.dll) Version: 1.4.0.0 (1.4.1.14427)
Syntax void Multiply(
ref T value,
int factor,
ref T result
)
Sub Multiply (
ByRef value As T,
factor As Integer,
ByRef result As T
)
void Multiply(
T% value,
int factor,
T% result
)
abstract Multiply :
value : 'T byref *
factor : int *
result : 'T byref -> unit
Parameters
- value
- Type: T
In: The value. - factor
- Type: SystemInt32
The factor. - result
- Type: T
Out: The product of value and factor.
See Also