TransformationController constructor

TransformationController([
  1. Matrix4? value
])

Create an instance of TransformationController.

The value defaults to the identity matrix, which corresponds to no transformation.

Implementation

TransformationController([Matrix4? value]) : super(value ?? Matrix4.identity());