Gets the inverse of an animation value.

Namespace: DigitalRune.Animation.Traits
Assembly: DigitalRune.Animation (in DigitalRune.Animation.dll) Version: 1.1.0.0 (1.1.0.9503)

Syntax

C#
public void Invert(
	ref AvatarExpression value,
	ref AvatarExpression inverse
)
Visual Basic
Public Sub Invert ( _
	ByRef value As AvatarExpression, _
	ByRef inverse As AvatarExpression _
)
Visual C++
public:
virtual void Invert(
	AvatarExpression% value, 
	AvatarExpression% inverse
) sealed

Parameters

value
Type: AvatarExpression%
In: The animation value.
inverse
Type: AvatarExpression%
Out: The inverse of value.

Implements

IAnimationValueTraits<(Of <(<'T>)>)>..::..Invert(T%, T%)

Exceptions

ExceptionCondition
System..::..NotSupportedExceptionAvatarExpression does not have an inverse.

See Also