sampleInto method

void sampleInto(
  1. double time,
  2. Matrix4 matrix
)

Implementation

void sampleInto(double time, Matrix4 matrix) {
  for (final channel in channels) {
    channel.sampleInto(time, matrix);
  }
}