<?xml version="1.0" encoding="utf-8" standalone="yes"?>

<?xml-stylesheet href="./_c74_ref.xsl" type="text/xsl"?>

<!--This is an automatically generated file. DO NOT EDIT THIS FILE DIRECTLY. Rather, use the _ref.xml files found in the 'edits' folder.-->
<c74object name="jit.lcd" module="jit" category="Jitter Generators">
	<digest>
		QuickDraw wrapper
	</digest>
	<description>
		The <o>jit.lcd</o> object is a wrapper for many QuickDraw commands.
	</description>
	<!--METADATA-->
	<metadatalist>
		<metadata name="author">
			Cycling '74
		</metadata>
		<metadata name="tag">
			Jitter
		</metadata>
		<metadata name="tag">
			Jitter Generators
		</metadata>
	</metadatalist>
	<!--INLETS-->
	<inletlist>
		<inlet id="0" type="INLET_TYPE">
			<digest>
				messages
			</digest>
			<description>
				TEXT_HERE
			</description>
		</inlet>
		<inlet id="1" type="INLET_TYPE">
			<digest>
				messages
			</digest>
			<description>
				TEXT_HERE
			</description>
		</inlet>
	</inletlist>
	<!--OUTLETS-->
	<outletlist>
		<outlet id="0" type="matrix">
			<digest>
				out
			</digest>
			<description>
				TEXT_HERE
			</description>
		</outlet>
		<outlet id="1" type="matrix">
			<digest>
				dumpout
			</digest>
			<description>
				TEXT_HERE
			</description>
		</outlet>
	</outletlist>
	<!--MOP-->
	<mop matrixinputcount="0" matrixoutputcount="1">
		<matrixoutput name="out" planelink="1" typelink="1" dimlink="1" minplanecount="4" maxplanecount="4" mindimcount="1" maxdimcount="32">
			<types>
				char
			</types>
		</matrixoutput>
	</mop>
	<!--MESSAGES-->
	<methodlist>
		<method name="brgb">
			<arglist>
				<arg name="red" type="int" />
				<arg name="green" type="int" />
				<arg name="blue" type="int" />
			</arglist>
			<digest>
				Set the background color
			</digest>
			<description>
				Sets the current background color. All values should be in the range 0-255.
			</description>
		</method>
		<method name="ascii">
			<arglist>
				<arg name="character" type="int" />
			</arglist>
			<digest>
				Write an ASCII character
			</digest>
			<description>
				Writes the ASCII character specified by the <i>character</i> argument at the current pen location using the current font and textmode, then moves the pen position to the right of that character. Numbers that exceed the 0-255 range are restricted to that range with a modulus operation.
			</description>
		</method>
		<method name="clearpicts">
			<arglist />
			<digest>
				Delete all of the object's named pictures.
			</digest>
			<description>
				The word <m>clearpicts</m>, followed by a symbol, deletes all of an <o>lcd</o> object's named pictures from memory so that they can no longer be drawn. To remove the images from the <o>lcd</o> object's display, the command should be followed by a <m>clear</m> message.
			</description>
		</method>
		<method name="clipoval">
			<arglist>
				<arg name="left" type="int" />
				<arg name="top" type="int" />
				<arg name="bottom" type="int" />
				<arg name="right" type="int" />
			</arglist>
			<digest>
				Clip drawing commands to an oval
			</digest>
			<description>
				Clips drawing commands to the oval specified by <i>left top right bottom</i> The arguments are specified in pixels, relative to the top left corner of the viewing area.
			</description>
		</method>
		<method name="clippoly">
			<arglist>
				<arg name="x/y int pairs" type="list" />
			</arglist>
			<digest>
				Clip drawing commands to the polygon
			</digest>
			<description>
				Clips drawing commands to the polygon specified by the up to 254 <i>x/y-pairs</i> arguments. These integer pairs are specified in pixels, relative to the top left corner of the viewing area.
			</description>
		</method>
		<method name="cliprect">
			<arglist>
				<arg name="left" type="int" />
				<arg name="top" type="int" />
				<arg name="bottom" type="int" />
				<arg name="right" type="int" />
			</arglist>
			<digest>
				Clip drawing commands to a specified rectanglar area
			</digest>
			<description>
				Clips drawing commands to the rectangle specified by <i>left</i>, <i>top</i>, <i>right</i>, and <i>bottom</i> arguments. These integer arguments are specified in pixels, relative to the top left corner of the viewing area.
			</description>
		</method>
		<method name="cliprgn">
			<arglist />
			<digest>
				TEXT_HERE
			</digest>
			<description>
				TEXT_HERE
			</description>
		</method>
		<method name="cliproundrect">
			<arglist>
				<arg name="left" type="int" />
				<arg name="top" type="int" />
				<arg name="bottom" type="int" />
				<arg name="right" type="int" />
				<arg name="horizontal-roundness" type="int" />
				<arg name="vertical-roundness" type="int" />
			</arglist>
			<digest>
				Clip drawing commands to a rounded rectangle
			</digest>
			<description>
				Clips drawing commands to the rounded rectangle specified by <i>left</i>, <i>top</i>, <i>right</i>, <i>bottom</i>, <i>horizontal-roundness</i>, and <i>vertical-roundness</i> arguments. These integer arguments are specified in pixels, relative to the top left corner of the viewing area.
			</description>
		</method>
		<method name="color">
			<arglist>
				<arg name="color-index" type="int" />
			</arglist>
			<digest>
				Set the current pen color
			</digest>
			<description>
				Sets the current pen color to the value specified by the <i>color-index</i> argument.
			</description>
		</method>
		<method name="deletepict">
			<arglist>
				<arg name="any symbol" optional="0" type="list" />
			</arglist>
			<digest>
				Delete a named picture
			</digest>
			<description>
				The word <m>deletepict</m>, followed by a symbol, deletes the named the picture from memory so that it can no longer be drawn. To remove the image from the <o>lcd</o> object's display, the command should be followed by a <m>clear</m> message.
			</description>
		</method>
		<method name="drawpict">
			<arglist>
				<arg name="pict-name" type="symbol" />
				<arg name="x-offset" type="int" />
				<arg name="y-offset" type="int" />
				<arg name="width" type="int" />
				<arg name="height" type="int" />
				<arg name="src-x-offset" type="int" />
				<arg name="src-y-offset" type="int" />
				<arg name="src-width" type="int" />
				<arg name="src-height" type="int" />
			</arglist>
			<digest>
				Draw a named picture or matrix
			</digest>
			<description>
				Draws the named picture or matrix. A destination rectangle into which the picture is scaled and drawn may optionally be specified by the <i>x-offset</i>, <i>y-offset</i>, <i>width</i>, and <i>height</i> integer arguments. A source rectangle that specifies the area of the picture to use in the operation may also be optionally specified by the <i>src-x-offset</i>, <i>src-y-offset</i>, <i>src-width</i>, and <i>src-height</i> integer arguments. The position of the destination and source rectangles are relative to the top left corner of the <o>jit.lcd</o> object's display area. Unless otherwise specified, both rectangles are set to be the same size as the picture. All arguments are optional and default to zero. The current penmode will used as the transfer mode.
			</description>
		</method>
		<method name="closeregion">
			<arglist />
			<digest>
				TEXT_HERE
			</digest>
			<description>
				TEXT_HERE
			</description>
		</method>
		<method name="deleteregion">
			<arglist />
			<digest>
				TEXT_HERE
			</digest>
			<description>
				TEXT_HERE
			</description>
		</method>
		<method name="clearregions">
			<arglist />
			<digest>
				TEXT_HERE
			</digest>
			<description>
				TEXT_HERE
			</description>
		</method>
		<method name="font">
			<arglist>
				<arggroup type="mutex">
					<arg name="font-id" type="int" />
					<arg name="font-name" type="symbol" />
				</arggroup>
				<arg name="font-size" type="int" unit="points" />
			</arglist>
			<digest>
				Set the current font name and size
			</digest>
			<description>
				Sets the current font name and size. Fonts can be specified by either their ID number or name. Font size is specified in points.
			</description>
		</method>
		<method name="framearc">
			<arglist>
				<arg name="left" type="int" />
				<arg name="top" type="int" />
				<arg name="bottom" type="int" />
				<arg name="right" type="int" />
				<arg name="start-angle" type="int" />
				<arg name="arc-length" type="int" />
				<arggroup type="mutex">
					<arg name="color-index" type="int" />
					<arggroup>
						<arg name="red" type="int" />
						<arg name="green" type="int" />
						<arg name="blue" type="int" />
					</arggroup>
				</arggroup>
			</arglist>
			<digest>
				Paint the outline of an arc
			</digest>
			<description>
				Paints the outline of an arc. The <i>left</i>, <i>top</i>, <i>right</i>, and <i>bottom</i> arguments describe the top and bottom extremities in pixels of an oval across which the arc will be drawn, and the <i>start-angle</i> and <i>arc-length</i> arguments describe the position of the arc with respect to the oval. The location of the oval/arc is relative to the top left corner of the <o>jit.lcd</o> object's display area. A color may also optionally be specified using a single number that selects a color from Max's color palette (similar to the <m>color</m> message), or by using three additional numbers that describe an RGB value (similar to the <m>frgb</m> message). The width of the line segment describing the arc is set using the <m>pensize</m> message to the <o>jit.lcd</o> object.
			</description>
		</method>
		<method name="frameoval">
			<arglist>
				<arg name="left" type="int" />
				<arg name="top" type="int" />
				<arg name="bottom" type="int" />
				<arg name="right" type="int" />
				<arggroup type="mutex">
					<arg name="color-index" type="int" />
					<arggroup>
						<arg name="red" type="int" />
						<arg name="green" type="int" />
						<arg name="blue" type="int" />
					</arggroup>
				</arggroup>
			</arglist>
			<digest>
				Draw the unfilled outline of an oval
			</digest>
			<description>
				Draws the unfilled outline of an oval. The <i>left</i>, <i>top</i>, <i>right</i>, and <i>bottom</i> integer arguments describe the top and bottom extremities in pixels of the oval. The location of the oval is relative to the top left corner of the <o>jit.lcd</o> object's display area. Optional additional arguments to specify the color of the border may also follow. If a single integer argument is used, it specifies a color from Max's color palette. Three integer arguments specify an RGB color. The width of the border of the oval is set using the <m>pensize</m> message to the <o>jit.lcd</o> object.
			</description>
		</method>
		<method name="framepoly">
			<arglist>
				<arg name="x/y int pairs" type="list" />
			</arglist>
			<digest>
				Draw the unfilled outline of a polygon arguments.
			</digest>
			<description>
				Draws the unfilled outline of a polygon specified by up to 254 integer <i>x/y-pair</i> arguments. Each integer pair specifies a pixels relative to the top left corner of the <o>jit.lcd</o> object's display area. A polygon is closed by specifying an x/y pair having the same values as the first integer pair. The width of the border of the polygon is set using the <m>pensize</m> message to the <o>jit.lcd</o> object.
			</description>
		</method>
		<method name="framerect">
			<arglist>
				<arg name="left" type="int" />
				<arg name="top" type="int" />
				<arg name="bottom" type="int" />
				<arg name="right" type="int" />
				<arggroup type="mutex">
					<arg name="color-index" type="int" />
					<arggroup>
						<arg name="red" type="int" />
						<arg name="green" type="int" />
						<arg name="blue" type="int" />
					</arggroup>
				</arggroup>
			</arglist>
			<digest>
				Draw the unfilled outline of a rectangle
			</digest>
			<description>
				Draws the unfilled outline of a rectangle specified by the <i>left</i>, <i>top</i>, <i>right</i>, and <i>bottom</i> integer arguments. The edge positions are specified as pixels relative to the top left corner of the <o>jit.lcd</o> object's display area. Optional additional arguments to specify the color of the border may also follow. If a single integer argument is used, it specifies a color from Max's color palette. Three integer arguments specify an RGB color. The width of the border of the rectangle is set using the <m>pensize</m> message to the <o>jit.lcd</o> object.
			</description>
		</method>
		<method name="framergn">
			<arglist />
			<digest>
				TEXT_HERE
			</digest>
			<description>
				TEXT_HERE
			</description>
		</method>
		<method name="frameroundrect">
			<arglist>
				<arg name="left" type="int" />
				<arg name="top" type="int" />
				<arg name="bottom" type="int" />
				<arg name="right" type="int" />
				<arg name="horizontal-roundness" type="int" />
				<arg name="vertical-roundness" type="int" />
				<arggroup type="mutex">
					<arg name="color-index" type="int" />
					<arggroup>
						<arg name="red" type="int" />
						<arg name="green" type="int" />
						<arg name="blue" type="int" />
					</arggroup>
				</arggroup>
			</arglist>
			<digest>
				Draw the unfilled outline of a rounded rectangle
			</digest>
			<description>
				Draws the unfilled outline of a rounded rectangle. The <i>left</i>, <i>top</i>, <i>right</i>, and <i>bottom</i> integer arguments describe the top and bottom extremities of the rectangle, and the The <i>horizontal-roundness</i> and <i>vertical-roundness]</i> integer arguments specify the amount of corner rounding in pixels. The location of the rounded rectangle is relative to the top left corner of the <o>jit.lcd</o> object's display area. Optional additional arguments to specify the color of the border may also follow. If a single integer argument is used, it specifies a color from Max's color palette. Three integer arguments specify an RGB color. The width of the border of the rectangle is set using the <m>pensize</m> message to the <o>jit.lcd</o> object.
			</description>
		</method>
		<method name="frgb">
			<arglist>
				<arg name="red" type="int" />
				<arg name="green" type="int" />
				<arg name="blue" type="int" />
			</arglist>
			<digest>
				Set the current foreground color
			</digest>
			<description>
				Sets the current foreground color. All arguments should be in the range 0-255.
			</description>
		</method>
		<method name="getpenloc">
			<arglist />
			<digest>
				Get and output the current pen location
			</digest>
			<description>
				Sends the x and y coordinates of the current pen location out the right outlet of the object as a list in the form <m>penloc</m>  <i>x-offset</i>  <i>y-offset</i>. The numbers represent local coordinates relative to the top left corner of the <o>jit.lcd</o> object's display area. The first number is the number of pixels to the right of that corner, and the second number is the number of pixels down from that corner.
			</description>
		</method>
		<method name="getpixel">
			<arglist>
				<arg name="x-offset" type="int" />
				<arg name="y-offset" type="int" />
			</arglist>
			<digest>
				Get and output the color of a specified pixel
			</digest>
			<description>
				Sends the color of the pixel specified by the x and y offset arguments and the coordinates out the object's right outlet as a list in the form <m>pixel</m>  <i>red</i>  <i>green</i>  <i>blue</i>  <i>x-offset</i>  <i>y-offset</i>. The three color values should be in the range 0-255. The pixel location is specified relative to the top left corner of the <o>jit.lcd</o> object's display area. If a pixel is out of range, the <m>getpixel</m> message will output <m>pixel 0 0 0 x y</m>, where <i>x</i> and <i>y</i> are the out of range location specified.
			</description>
		</method>
		<method name="move">
			<arglist>
				<arg name="x-offset" type="int" />
				<arg name="y-offset" type="int" />
			</arglist>
			<digest>
				Move the pen position relative to its current location
			</digest>
			<description>
				Moves the pen position relative to its current location. The new location is specified by the two integer <i>x-offset</i> and <i>x-offset</i> arguments. Positive values for the <i>x-offset</i> and <i>x-offset</i> arguments move the pen position to the right or down, and negative arguments move it up or to the left.
			</description>
		</method>
		<method name="line">
			<arglist>
				<arg name="x-offset" type="int" />
				<arg name="y-offset" type="int" />
			</arglist>
			<digest>
				Draw a line from the current pen position to a relative point.
			</digest>
			<description>
				Draws a line from the current pen position to the relative point specified by two integer <i>x-offset</i> and <i>x-offset</i> arguments. The endpoint of the line becomes the new pen position. Positive values for the <i>x-offset</i> and <i>x-offset</i> arguments draw the line to the right or down, and negative arguments draw up or to the left.
			</description>
		</method>
		<method name="moveto">
			<arglist>
				<arg name="x-offset" type="int" />
				<arg name="y-offset" type="int" />
			</arglist>
			<digest>
				Set a new pen position
			</digest>
			<description>
				Sets the pen position at which the next graphic instruction will be drawn. The new location is specified by the two integer <i>x-offset</i> and <i>x-offset</i> arguments that are relative to the top left corner of the <o>jit.lcd</o> object's display area.
			</description>
		</method>
		<method name="lineto">
			<arglist>
				<arg name="x-offset" type="int" />
				<arg name="y-offset" type="int" />
			</arglist>
			<digest>
				Draw a line from the current pen position to a specified point
			</digest>
			<description>
				Draws a line from the current pen position to the relative point specified by two integer <i>x-offset</i> and <i>x-offset</i> arguments. Positive values for the <i>x-offset</i> and <i>x-offset</i> arguments draw the line to the right or down, and negative arguments draw up or to the left.
			</description>
		</method>
		<method name="linesegment">
			<arglist>
				<arg name="x-start" type="int" />
				<arg name="y-start" type="int" />
				<arg name="x-end" type="int" />
				<arg name="y-end" type="int" />
				<arggroup type="mutex">
					<arg name="color-index" type="int" />
					<arggroup>
						<arg name="red" type="int" />
						<arg name="green" type="int" />
						<arg name="blue" type="int" />
					</arggroup>
				</arggroup>
			</arglist>
			<digest>
				Draw a line segment
			</digest>
			<description>
				Draws a line segment. The <i>x-start</i>, <i>y-start</i>, <i>x-end</i>, and <i>y-end</i> arguments specify the start and end points of the line segment. The location of the start and end points is relative to the top left corner of the <o>jit.lcd</o> object's display area. Optional additional arguments to specify the color of the line segment may also follow. If a single integer argument is used, it specifies a color from Max's color palette. Three integer arguments specify an RGB color. The width of the line segment is set using the <m>pensize</m> message to the <o>jit.lcd</o> object.
			</description>
		</method>
		<method name="oprgb">
			<arglist>
				<arg name="red" type="int" />
				<arg name="green" type="int" />
				<arg name="blue" type="int" />
			</arglist>
			<digest>
				Set the opcode color used in some of the <o>jit.lcd</o> object's transfermodes
			</digest>
			<description>
				Sets the current opcode color used in some of the <o>jit.lcd</o> object's transfermodes, such as &quot;blend&quot;. All arguments should be in the range 0-255.
			</description>
		</method>
		<method name="noclip">
			<arglist />
			<digest>
				Remove clipping area that may be in place
			</digest>
			<description>
				Removes any clipping area that may be in place.
			</description>
		</method>
		<method name="paintarc">
			<arglist>
				<arg name="left" type="int" />
				<arg name="top" type="int" />
				<arg name="bottom" type="int" />
				<arg name="right" type="int" />
				<arg name="start-angle" type="int" />
				<arg name="arc-length" type="int" />
				<arggroup type="mutex">
					<arg name="color-index" type="int" />
					<arggroup>
						<arg name="red" type="int" />
						<arg name="green" type="int" />
						<arg name="blue" type="int" />
					</arggroup>
				</arggroup>
			</arglist>
			<digest>
				Paint an arc
			</digest>
			<description>
				Paints an arc. The <i>left</i>, <i>top</i>, <i>right</i>, and <i>bottom</i> integer arguments describe the top and bottom extremities in pixels of an oval across which the arc will be drawn, and the <i>start-angle</i> and <i>arc-length</i> arguments describe the position of the arc with respect to the oval. The location of the oval/arc is relative to the top left corner of the <o>jit.lcd</o> object's display area. Optional additional arguments to specify the color of the arc may also follow. If a single integer argument is used, it specifies a color from Max's color palette. Three integer arguments specify an RGB color.
			</description>
		</method>
		<method name="paintoval">
			<arglist>
				<arg name="left" type="int" />
				<arg name="top" type="int" />
				<arg name="bottom" type="int" />
				<arg name="right" type="int" />
				<arggroup type="mutex">
					<arg name="color-index" type="int" />
					<arggroup>
						<arg name="red" type="int" />
						<arg name="green" type="int" />
						<arg name="blue" type="int" />
					</arggroup>
				</arggroup>
			</arglist>
			<digest>
				Paint an oval
			</digest>
			<description>
				Paints an oval. The <i>left</i>, <i>top</i>, <i>right</i>, and <i>bottom</i> integer arguments describe the top and bottom extremities in pixels of the oval. The location of the oval is relative to the top left corner of the <o>jit.lcd</o> object's display area. Optional additional arguments to specify the color of the oval may also follow. If a single integer argument is used, it specifies a color from Max's color palette. Three integer arguments specify an RGB color.
			</description>
		</method>
		<method name="paintpoly">
			<arglist>
				<arg name="x/y int pairs" type="list" />
			</arglist>
			<digest>
				Paint a polygon
			</digest>
			<description>
				Paints a polygon specified by up to 254 integer <i>x/y-pair</i> arguments. Each integer pair specifies a pixel relative to the top left corner of the <o>jit.lcd</o> object's display area. A polygon is closed by specifying an x/y pair having the same values as the first integer pair.
			</description>
		</method>
		<method name="paintrect">
			<arglist>
				<arg name="left" type="int" />
				<arg name="top" type="int" />
				<arg name="bottom" type="int" />
				<arg name="right" type="int" />
				<arggroup type="mutex">
					<arg name="color-index" type="int" />
					<arggroup>
						<arg name="red" type="int" />
						<arg name="green" type="int" />
						<arg name="blue" type="int" />
					</arggroup>
				</arggroup>
			</arglist>
			<digest>
				Paint a rectangle
			</digest>
			<description>
				Paints a rectangle specified by the <i>left</i>, <i>top</i>, <i>right</i>, and <i>bottom</i> integer arguments. The edge positions are specified as pixels relative to the top left corner of the <o>jit.lcd</o> object's display area. Optional additional arguments to specify the color of the rectangle may also follow. If a single integer argument is used, it specifies a color from Max's color palette. Three integer arguments specify an RGB color.
			</description>
		</method>
		<method name="paintrgn">
			<arglist />
			<digest>
				TEXT_HERE
			</digest>
			<description>
				TEXT_HERE
			</description>
		</method>
		<method name="paintroundrect">
			<arglist>
				<arg name="left" type="int" />
				<arg name="top" type="int" />
				<arg name="bottom" type="int" />
				<arg name="right" type="int" />
				<arg name="horizontal-roundness" />
				<arg name="vertical-roundness" />
				<arggroup type="mutex">
					<arg name="color-index" type="int" />
					<arggroup>
						<arg name="red" type="int" />
						<arg name="green" type="int" />
						<arg name="blue" type="int" />
					</arggroup>
				</arggroup>
			</arglist>
			<digest>
				Paint a rounded rectangle
			</digest>
			<description>
				Paints a rounded rectangle. The <i>left</i>, <i>top</i>, <i>right</i>, and <i>bottom</i> integer arguments describe the top and bottom extremities of the rectangle, and the The <i>horizontal-roundness</i> and <i>vertical-roundness]</i> integer arguments specify the amount of corner rounding in pixels. The location of the rounded rectangle is relative to the top left corner of the <o>jit.lcd</o> object's display area. Optional additional arguments to specify the color of the rectangle may also follow. If a single integer argument is used, it specifies a color from Max's color palette. Three integer arguments specify an RGB color.
			</description>
		</method>
		<method name="penmode">
			<arglist>
				<arg name="penmode-index" type="int" />
			</arglist>
			<digest>
				Set the transfer mode for drawing operations
			</digest>
			<description>
				Sets the transfer mode for subsequent drawing operations. The transfer mode is set using an integer argument in the range 0-39. Supported transfer modes are:
				<br />
				0 = Copy
				<br />
				1 = Or
				<br />
				2 = Xor
				<br />
				3 = Bic
				<br />
				4 = NotCopy
				<br />
				5 = NotOr
				<br />
				6 = NotXor
				<br />
				7 = NotBic
				<br />
				32 = Blend
				<br />
				33 = AddPin
				<br />
				34 = AddOver
				<br />
				35 = SubPin
				<br />
				36 = Transparent
				<br />
				37 = AddMax
				<br />
				38 = SubOver
				<br />
				39 = AddMin
				<br />
				For more information on the effects of each drawing mode, refer to the QuickDraw documentation in <b>Inside Macintosh</b>.
			</description>
		</method>
		<method name="pensize">
			<arglist>
				<arg name="number-of-pixels" type="int" />
			</arglist>
			<digest>
				Set the pen size to be used in drawing operations
			</digest>
			<description>
				Sets the pen size to be used subsequent drawing operations. The pen size is set with a single integer argument.
			</description>
		</method>
		<method name="readpict">
			<arglist>
				<arg name="pict-name" type="symbol" />
			</arglist>
			<digest>
				Read a picture file from disk into RAM.
			</digest>
			<description>
				Reads a picture file specified by the symbol <i>pict-name</i> from disk into RAM. This named picture can then be drawn in lcd with the <m>drawpict</m> and <m>tilepict</m> messages.
			</description>
		</method>
		<method name="recordregion">
			<arglist />
			<digest>
				TEXT_HERE
			</digest>
			<description>
				TEXT_HERE
			</description>
		</method>
		<method name="reset">
			<arglist />
			<digest>
				Erase the contents of the display area and reset the object to its default values
			</digest>
			<description>
				Erases the contents of the <o>jit.lcd</o> object's display area and resets the object to its default values. This message is equivalent to this series of messages to the <o>jit.lcd</o> object:
				<br />
				clear
				<br />
				pensize 1
				<br />
				penmode 0
				<br />
				frgb 0 0 0 (black)
				<br />
				brgb 255 255 255 (white)
				<br />
			</description>
		</method>
		<method name="textface">
			<arglist>
				<arg name="font-style" type="list" />
			</arglist>
			<digest>
				Set the font style(s)
			</digest>
			<description>
				Sets the font style(s) to be used when rendering text. Font styles may be specified individually with a single symbol argument, or as a list. Valid font styles are <m>normal</m>, <m>bold</m>, <m>italic</m>, <m>underline</m>, <m>outline</m>, <m>shadow</m>, <m>condense</m>, and <m>extend</m>;
			</description>
		</method>
		<method name="textmode">
			<arglist>
				<arg name="mode-index" type="int" />
			</arglist>
			<digest>
				Set the text rendering mode
			</digest>
			<description>
				Sets the text rendering mode using an integer argument in the range 0-39. Supported textmodes are:
				<br />
				0 = Copy
				<br />
				1 = Or
				<br />
				2 = Xor
				<br />
				3 = Bic
				<br />
				4 = NotCopy
				<br />
				5 = NotOr
				<br />
				6 = NotXor
				<br />
				7 = NotBic
				<br />
				32 = Blend
				<br />
				33 = AddPin
				<br />
				34 = AddOver
				<br />
				35 = SubPin
				<br />
				36 = Transparent
				<br />
				37 = AddMax
				<br />
				38 = SubOver
				<br />
				39 = AddMin
				<br />
				For more information on the effects of each rendering mode, refer to the QuickDraw documentation in <b>Inside Macintosh</b>.
			</description>
		</method>
		<method name="scrollrect">
			<arglist>
				<arg name="left" type="int" />
				<arg name="top" type="int" />
				<arg name="right" type="int" />
				<arg name="bottom" type="int" />
				<arg name="left" type="int" />
				<arg name="x-offset" type="int" />
				<arg name="y-offset" type="int" />
			</arglist>
			<digest>
				Move or &quot;scroll&quot; a rectangular area to a specified location
			</digest>
			<description>
				Moves or &quot;scrolls&quot; a rectangle defined by the <i>left</i>, <i>top</i>, <i>right</i>, and <i>bottom</i> integer arguments in the direction specified by the <i>x-offset</i> and <i>y-offset</i> integer arguments. the first four arguments in the direction specified by the fifth and sixth ints within the <o>jit.lcd</o> object's display area.
			</description>
		</method>
		<method name="setpixel">
			<arglist>
				<arg name="x-offset" type="int" />
				<arg name="y-offset" type="int" />
				<arg name="red" type="int" />
				<arg name="green" type="int" />
				<arg name="blue" type="int" />
			</arglist>
			<digest>
				Set a pixel to a specified RGB value
			</digest>
			<description>
				Sets the pixel located at the coordinates specified by the <i>x-offset</i> and <i>y-offset</i> coordinates to the RGB value specified by the <i>red</i>, <i>green</i>, and <i>blue</i> arguments. The RGB values should be integers in the range 0-255. The pixel location is specified relative to the top left corner of the <o>jit.lcd</o> object's display area.
			</description>
		</method>
		<method name="tilepict">
			<arglist>
				<arg name="pict-name" type="symbol" />
				<arg name="dst-left" type="int" />
				<arg name="dst-top" type="int" />
				<arg name="dst-right" type="int" />
				<arg name="dst-bottom" type="int" />
				<arg name="src-left" type="int" />
				<arg name="src-top" type="int" />
				<arg name="src-right" type="int" />
				<arg name="src-bottom" type="int" />
			</arglist>
			<digest>
				Fill a rectangle by tiling a picture
			</digest>
			<description>
				Fills a rectangle by tiling a picture. The name of a <o>jit.matrix</o> object can be used in place of the name of a PICT file, provided that the named <o>jit.matrix</o> object is a 4 plane char data matrix.
				<p>
					Four optional integers can be used to specify a destination rectangle in which the picture is tiled and four integers that specify the area of the picture to use in the operation can be added. Destination and source rectangles are specified by their left, top, width, and height values in pixels. The destination and source rectangles are specified relative to the top left corner of the matrix. If no destination rectangle is specified, the destination is set to the size of the lcd matrix and the source is set to be the same size as the picture.
				</p>
			</description>
		</method>
		<method name="write">
			<arglist>
				<arg name="symbol" type="symbol" />
			</arglist>
			<digest>
				Write the text specified by the <i>symbol</i> argument at the current pen location using the current font and textmode.
			</digest>
			<description>
				Writes the text specified by the <i>symbol</i> argument at the current pen location, using the current font and textmode.
			</description>
		</method>
		<method name="writepict">
			<arglist>
				<arg name="filename" optional="1" type="symbol" />
			</arglist>
			<digest>
				Write the current contents of the <o>jit.lcd</o> object's display area to a PICT file.
			</digest>
			<description>
				Writes the current contents of the <o>jit.lcd</o> object's display area to a PICT file. If no filename argument is present, a Save As dialog will prompt you to choose a filename and location to write the PICT file.
			</description>
		</method>
	</methodlist>
	<jittermethodlist>
		<jittermethod name="bang" />
		<jittermethod name="clear" />
		<jittermethod name="exportattrs" />
		<jittermethod name="exportsummary" />
		<jittermethod name="getattributes" />
		<jittermethod name="getstate" />
		<jittermethod name="importattrs" />
		<jittermethod name="jit_matrix" />
		<jittermethod name="outputmatrix" />
		<jittermethod name="summary" />
	</jittermethodlist>
	<!--ATTRIBUTES-->
	<!--EXAMPLE-->
	<examplelist>
		<example img="jit.lcd.png" />
	</examplelist>
	<!--SEEALSO-->
	<seealsolist>
		<seealso name="jit.gl.sketch" />
		<seealso name="lcd" />
		<seealso module="jit" name="jitterchapter29" type="tutorial" />
	</seealsolist>
</c74object>
