appendDouble6 method

void appendDouble6(
  1. Pointer<syz_Handle> targetHandle,
  2. double time,
  3. Properties property,
  4. Double6 value, {
  5. InterpolationTypes interpolationType = InterpolationTypes.linear,
})

Append a double6 value.

Implementation

void appendDouble6(
  final Pointer<syz_Handle> targetHandle,
  final double time,
  final Properties property,
  final Double6 value, {
  final InterpolationTypes interpolationType = InterpolationTypes.linear,
}) =>
    _commands.add(
      AutomationAppendPropertyCommand(
        targetHandle,
        time,
        property,
        value,
        interpolationType: interpolationType,
      ),
    );