operator * method

  1. @override
T operator *(
  1. double operand
)
override

Implementation

@override
T operator *(double operand) {
  return (super * operand)
    ..zoom = this().zoom * operand
    ..rotateX = this().rotateX * operand
    ..rotateY = this().rotateY * operand
    ..translateX = this().translateX * operand
    ..translateY = this().translateY * operand
    ..translateZ = this().translateZ * operand
    ..transformAlignment = this().transformAlignment * operand;
}