C# 클래스 System.Windows.Media.Glitz.TweenInterpolation

Provides the functionality for interpolating an animation from start to finish.
파일 보기 프로젝트 열기: nikhilk/silverlightfx 1 사용 예제들

공개 메소드들

메소드 설명
Interpolate ( double t ) : double

Implements a interpolation function that progresses an animation. This represents a function f(t) where t = [0...1] such that it is continuous and f(0) == 0 and f(1) == 1. Interpolation can be used to modify the default linear progression.

보호된 메소드들

메소드 설명
TweenInterpolation ( ) : System

Initializes an instance of TweenInterpolation.

TweenInterpolation ( bool isLinear ) : System

Initializes an instance of TweenInterpolation.

메소드 상세

Interpolate() 공개 추상적인 메소드

Implements a interpolation function that progresses an animation. This represents a function f(t) where t = [0...1] such that it is continuous and f(0) == 0 and f(1) == 1. Interpolation can be used to modify the default linear progression.
public abstract Interpolate ( double t ) : double
t double The current progress value based on linear interpolation.
리턴 double

TweenInterpolation() 보호된 메소드

Initializes an instance of TweenInterpolation.
protected TweenInterpolation ( ) : System
리턴 System

TweenInterpolation() 보호된 메소드

Initializes an instance of TweenInterpolation.
protected TweenInterpolation ( bool isLinear ) : System
isLinear bool Whether this instance represents the linear interpolation.
리턴 System