tLinear static method

TransformationData tLinear({
  1. int? a = 1,
  2. int? b = 0,
})

Basic Transformations

  • a : a (Default: 1)

  • b : b (Default: 0)

Returns TransformationData.

Implementation

static TransformationData tLinear({int? a = 1, int? b = 0}) {
  // Call the generated class method
  return TLinear().linear(a, b);
}