Difference between revisions of "TPAMiddleEx"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> function TPAMiddle(const TPA: TPointArray; out x, y: Integer): Boolean; </source> ==Availability== SCAR Divi 3.26 > Current ==...")
 
Line 8: Line 8:
  
 
===Aliases===
 
===Aliases===
*MiddleTPAEx (SCAR Divi 3.20 > Current)
+
*MiddleTPAEx (SCAR Divi 3.20 > 3.35)
  
 
==Description==
 
==Description==

Revision as of 12:51, 14 July 2012

Definition

function TPAMiddle(const TPA: TPointArray; out x, y: Integer): Boolean;

Availability

SCAR Divi 3.26 > Current

Aliases

  • MiddleTPAEx (SCAR Divi 3.20 > 3.35)

Description

This function determines the center point of a given TPointArray TPA by calculating the averages of the x and y coordinates and returns them in x and y. The function returns true if the given TPointArray TPA contains 1 or more values.

Example

var
  TPA: TPointArray;
  x, y: Integer;
  
begin
  TPA := [Point(0, 0), Point(2, 2), Point(5, 10)];
  if TPAMiddleEx(TPA, x, y) then
    WriteLn('Middle-Point(' + IntToStr(x) + ',' + IntToStr(y) + ')');
end.

Output:

Middle-Point(2,4)

See Also