patternize method

Cube patternize(
  1. Cube to
)

Returns the patternized Cube to solve the pattern from this cube to to cube.

Implementation

Cube patternize(Cube to) {
  return to.inverse().multiply(this);
}