copyFrom method

Implementation

DiveTransformInfo copyFrom(DiveTransformInfo info) {
  return copyWith(
    pos: info.pos,
    rot: info.rot,
    scale: info.scale,
    alignment: info.alignment,
    boundsType: info.boundsType,
    boundsAlignment: info.boundsAlignment,
    bounds: info.bounds,
  );
}