/// <summary>
 ///     Sets the get tranform delegate.
 /// </summary>
 /// <param name="delegate">The delegate.</param>
 /// <exception cref="System.ArgumentNullException"></exception>
 public void SetGetTranformDelegate([NotNull] GetTranformDelegate @delegate)
 {
     if (@delegate == null)
     {
         throw new ArgumentNullException(nameof(@delegate));
     }
     _getTranform = @delegate;
 }
 /// <summary>
 ///     Sets the get tranform delegate.
 /// </summary>
 /// <param name="delegate">The delegate.</param>
 /// <exception cref="System.ArgumentNullException"></exception>
 public void SetGetTranformDelegate([NotNull] GetTranformDelegate @delegate)
 {
     if (@delegate == null) throw new ArgumentNullException(nameof(@delegate));
     _getTranform = @delegate;
 }