示例#1
0
 public PathDriver(EasingFunctionHandler handler) : this(1000, handler)
 {
 }
示例#2
0
 public PathDriver(Double duration, EasingFunctionHandler handler) : this()
 {
     this.Duration = duration;
     this.Handler  = handler ?? KnownEasingFuctionTypes.Linear.GetHandler();
 }