Matrix4Node constructor

Matrix4Node([
  1. dynamic value
])

Implementation

Matrix4Node([value]) : super('mat4') {
  generateLength = 2;
  this.value = value ?? new Matrix4();
}