fixed_translating static method

OnAnimateMatrix4 fixed_translating(
  1. Point3 fixed
)

Implementation

static OnAnimateMatrix4 fixed_translating(Point3 fixed) =>
    (matrix4, value) => matrix4
      ..perspectiveIdentity
      ..translateOf(value + fixed);