stretchToFitDepth method

void stretchToFitDepth(
  1. double depth, {
  2. Vector3? aboutPoint,
  3. Vector3 aboutEdge = ORIGIN,
})

Implementation

void stretchToFitDepth(double depth,
    {Vector3? aboutPoint, Vector3 aboutEdge = ORIGIN}) {
  return setDepth(depth,
      aboutPoint: aboutPoint, aboutEdge: aboutEdge, stretch: true);
}