예제 #1
0
 //============================================================================
 /// <summary>
 /// Initialises this timestep with the field values from the typed value.
 /// </summary>
 /// <param name="timeValue">A TTypedValue that has the correct timestep structure.</param>
 //============================================================================
 public void Set(TTypedValue timeValue)
 {
     start.Set(timeValue.member(1).asInt(), (uint)timeValue.member(2).asInt(), timeValue.member(3).asDouble());
     finish.Set(timeValue.member(4).asInt(), (uint)timeValue.member(5).asInt(), timeValue.member(6).asDouble());
 }