Difference between revisions of "TBox"

From SCAR Divi Manual
Jump to: navigation, search
Line 1: Line 1:
 
==Definition==
 
==Definition==
<source lang="scar">
+
<source lang="scar" lines="false">
 
TBox = record
 
TBox = record
 
   x1, y1, x2, y2: Integer;
 
   x1, y1, x2, y2: Integer;
Line 10: Line 10:
  
 
==See Also==
 
==See Also==
 +
*[[TBoxArray]]
 
*[[TRect]]
 
*[[TRect]]
*[[TPoint]]
+
*[[IntToBox]]
  
 
[[Category:Types]]
 
[[Category:Types]]
 
[[Category:Structured Types]]
 
[[Category:Structured Types]]

Revision as of 20:04, 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