trimPath function

Path trimPath(
  1. Path path,
  2. double startT,
  3. double stopT,
  4. bool complement,
  5. bool isSequential,
)

Implementation

Path trimPath(Path path, double startT, double stopT, bool complement,
    bool isSequential) {
  if (isSequential) {
    return _trimPathSequential(path, startT, stopT, complement);
  } else {
    return _trimPathSync(path, startT, stopT, complement);
  }
}