OffsetTPA

From SCAR Divi Manual
Revision as of 00:04, 20 October 2011 by Freddy (talk | contribs) (Created page with "==Definition== <source lang="scar" lines="false"> procedure OffsetTPA(var TPA: TPointArray; const XOffset, YOffset: Integer); </source> ==Availability== SCAR Divi 3.28 > Current...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

procedure OffsetTPA(var TPA: TPointArray; const XOffset, YOffset: Integer);

Availability

SCAR Divi 3.28 > Current

Description

Offsets the points a given TPointArray TPA by XOffset for the x component and YOffset for the y component.

Example

var
  TPA: TPointArray;

begin
  TPA := [Point(5, 6), Point(0, 0), Point(1, 1)];
  OffsetTPA(TPA, 3, 2);
  WriteLn('TPointArray: ' + TPAToStr(TPA));
end.

Output:

TPointArray: (8,8);(3,2);(4,3)