About 253,000 results
Open links in new tab
  1. rect () / Reference / Processing.org

    A rectangle is a four-sided shape with every angle at ninety degrees. By default, the first two parameters set the location of the upper-left corner, the third sets the width, and the fourth sets …

  2. Rectangle packing study - OpenProcessing

    Applying this template will reset your sketch and remove all your changes. Are you sure you would like to continue? Please choose the appropriate issue with this sketch. We will review …

  3. Rectangle packing - Wikipedia

    Rectangle packing is a packing problem where the objective is to determine whether a given set of small rectangles can be placed inside a given large polygon, such that no two small …

  4. In this paper, we present a new approach to rectangle packing. Specifically, we cast the problem of optimally packing a set of rectangles with fixed orientations as a meta-CSP.

  5. Suppose you need to cut rectangular objects from a sheet of metal with a laser while creating as little waste as possible. This problem is closely related to determining the optimal packing of …

  6. rectangle-packing · GitHub Topics · GitHub

    Dec 13, 2025 · A solver to find a solution of the 2D rectangle packing problem by simulated annealing (SA) optimization.

  7. Given a set of rectangles with fixed orientations, we want to find an enclosing rectangle of minimum area that contains them all with no overlap. Many simple scheduling tasks can be …

  8. Rectangle | Learning Processing 2nd Edition

    // Example 23-3: Using a java.awt.Rectangle object import java.awt.Rectangle; // This sketch uses two Rectangle objects. rect1 = new Rectangle(100, 75, 50, 50); .

  9. Rectangle packing problems are a subset of packing problems where the goal is to pack a single container or multiple containers as efficient as possible with different shapes and sizes.

  10. The rectangle packing problem consists of find-ing an enclosing rectangle of smallest area that can contain a given set of rectangles without overlap. Our algorithm picks the x-coordinates of …