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'''...")
 
 
(3 intermediate revisions by the same user not shown)
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;
 
end;
 
end;
 
</source>
 
</source>
 +
 +
==Availability==
 +
SCAR Divi 3.00 > Current
  
 
==Description==
 
==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 [http://en.wikipedia.org/wiki/Rectangle rectangular] box.
+
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 [http://en.wikipedia.org/wiki/Rectangle rectangular] box.
  
 
==See Also==
 
==See Also==
 +
*[[TBoxArray]]
 
*[[TRect]]
 
*[[TRect]]
*[[TPoint]]
+
*[[IntToBox]]
 +
 
 +
[[Category:Types]]
 +
[[Category:Structured Types]]

Latest revision as of 11:49, 25 July 2012

Definition

TBox = record
  X1, Y1, X2, Y2: Integer;
end;

Availability

SCAR Divi 3.00 > Current

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