paintutils.drawBox

From ComputerCraft Wiki
Revision as of 19:28, 29 January 2015 by MKlegoman357 (Talk | contribs) (Created the page for the missing function)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search


Grid Redstone.png  Function paintutils.drawBox
Draws a box from (startX, startY) to (endX, endY) in the specified color. Requires version 1.64 or newer.


(startX, startY) is the corner opposite to (endX, endY). ie.: if (startX, startY) indicates the top-left corner then (endX, endY) would indicate the bottom-right corner.
Syntax paintutils.drawBox(number startX, number startY, number endX, number endY [, number color])
Returns None
Part of ComputerCraft
API paintutils

Examples

Grid paper.png  Example
Draws a lime box which's top-left corner is at (2, 3) and bottom-right corner is at (10, 7).
Code
paintutils.drawBox(2, 3, 10, 7, colors.lime)