SmoothOperation constructor

SmoothOperation({
  1. SmoothMatrix4OperationType? operation,
  2. double? rotationX,
  3. double? rotationY,
  4. double? rotationZ,
  5. double? scaleX,
  6. double? scaleY,
  7. Dimension? translateX,
  8. Dimension? translateY,
})

Implementation

SmoothOperation({
  this.operation,
  this.rotationX,
  this.rotationY,
  this.rotationZ,
  this.scaleX,
  this.scaleY,
  this.translateX,
  this.translateY,
})  : assert(translateX == null || translateX.isAbsolute),
      assert(translateY == null || translateY.isAbsolute);