defaultTransformMatrixRotation static method

Matrix4 defaultTransformMatrixRotation(
  1. double value,
  2. double scaleValue
)

Implementation

static Matrix4 defaultTransformMatrixRotation(
    double value, double scaleValue) {
  return Matrix4.rotationX(value)..rotateY(value)..scale(scaleValue);
}