Difference between revisions of "TBox"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar"> TBox = record x1, y1, x2, y2: Integer; end; </source> ==Description== TBox is a structured type that holds a set of 2 coordinates ('''x1'''...")
 
Line 12: Line 12:
 
*[[TRect]]
 
*[[TRect]]
 
*[[TPoint]]
 
*[[TPoint]]
 +
 +
[[Category:Types]]
 +
[[Category:Structured Types]]

Revision as of 11:32, 26 June 2011

Definition

TBox = record
  x1, y1, x2, y2: Integer;
end;

Description

TBox is a structured type that holds a set of 2 coordinates (x1, y1) and (x2, y2) which specify the upper-left and lower-right points of a rectangular box.

See Also