TPABounds

From SCAR Divi Manual
Revision as of 19:56, 26 June 2011 by Freddy (talk | contribs) (Created page with "==Definition== <source lang="scar" lines="false"> function TPABounds(const TPA: TPointArray): TBox; </source> ==Availability== SCAR Divi 3.20 > Current ==Description== This fun...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

function TPABounds(const TPA: TPointArray): TBox;

Availability

SCAR Divi 3.20 > Current

Description

This function calculates the bounds of a given TPointArray TPA by searching the most outer coordinates of a box which can contain all of the points and returns that box as a TBox.

Aliases

  • GetTPABounds

Example

var
  TPA: TPointArray;
  Box: TBox;

begin
  TPA := [Point(0, 0), Point(2, 2), Point(5, 10)];
  Box := TPaBounds(TPA);
  WriteLn('Box(' + IntToStr(Box.x1) + ',' + IntToStr(Box.y1) + ',' +
    IntToStr(Box.x2) + ',' + IntToStr(Box.y2) + ')');
end.

Output:

Box(0,0,5,10)

See Also