shift method

void shift(
  1. Vector3 delta
)

Implementation

void shift(Vector3 delta) {
  return applyOverPoints(func: (pt) => pt + delta);
}