Difference between revisions of "TBox"

From SCAR Divi Manual
Jump to: navigation, search
 
Line 2: Line 2:
 
<source lang="scar" lines="false">
 
<source lang="scar" lines="false">
 
TBox = record
 
TBox = record
   x1, y1, x2, y2: Integer;
+
   X1, Y1, X2, Y2: Integer;
 
end;
 
end;
 
</source>
 
</source>
Line 10: Line 10:
  
 
==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==

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