Strip::Split

Background

This method generates two strips by splitting this strip object at the point `splitAt`, and storing the first half into this Strip, and the second half into `bottom`.

Prototype

void Split( int splitAt, Strip & bottom )

Parameters

  • int splitAt: The point to split this strip at, which must be in the extent of this strip.
  • Strip & bottom: The Strip object to store the bottom half of the strip into.