<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>

<channel>
	<title>NextText</title>
	<atom:link href="http://www.nexttext.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nexttext.net</link>
	<description></description>
	<pubDate>Thu, 04 Aug 2011 21:17:53 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Throb</title>
		<link>http://www.nexttext.net/reference/dform/throb/</link>
		<comments>http://www.nexttext.net/reference/dform/throb/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 20:42:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[net.nexttext.behaviour.dform]]></category>

		<guid isPermaLink="false">http://www.nexttext.net/reference/dform/throb/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p class="sectionTitle">Throb</p>

<p>
 If you prefer a more technical reference, visit the <a href="http://www.nexttext.net/doc/" target="_blank">NextText Javadoc</a>.
</p>
<table width="600" border="0" cellpadding="5" cellspacing="20">
	<tbody>
		<tr>
			<td width="19%" valign="top">
				<p><b>Name</b></p>
			</td>
    			<td colspan="2" valign="top">
				Throb
			</td>
  		</tr>
		<tr>
			<td width="19%" valign="top">
				<p><b>Description</b></p>
			</td>
    			<td colspan="2" valign="top">
				<p>behave(TextObject to) </p>

<p>A DForm which throbs the TextObject.</p>

<p>Think of throb as a multiplication of the size of the object, which changes over time.</p>

<p>In order to improve interoperability with other DForms, the period of the throb is tracked as a frame count specific to each TextObjectGlyph. This way, each time the behaviour is called it modifies the control points of the Glyph by multiplying them by the appropriate factor, thus preserving any other modifications.</p>

<p>The following calculation defines throb with a period p and scale of s. Given a vector c from the center of the glyph to one of its control points, it's throbbed value for frame f is</p>

<p>p * ( ( s - 1 ) * ( ( cos( f / p * 2PI - PI ) ) + 1 ) + 1 ) </p>

<p>XXXBUG: If the period or scale is changed after the behaviour has been started, then it will mess up any objects that are already throbbing. The way to correct this problem is to cache the period and scale along with the frame count, and only update them when a throb is completed.</p>
			</td>
  		</tr>
		<tr>
 			<td valign="top">
 				<p><b>Usage</b></p>
 			</td>
 			<td colspan="2" valign="top">
 				<p><a class="option" title="Throb" rel="shadowbox" href="/reference_examples/Throb/Throb_/applet/index.html">Run applet</a> | <a href="/reference_examples/Throb/Throb_.zip" target="_blank">Download</a></p>
 				<pre name="code" class="java">TEST</pre> 
 			</td>
  		</tr>
  		<tr>
  			<td valign="top">
  				<p><b>Constructor</b></p>
  			</td>
  			<td colspan="2" valign="top">
				<p>new Throb(float scale, int period) </p>
      			</td>
  		</tr>
		<tr>
    			<td valign="top">
    				<p><b>Parameters</b></p>
    			</td>
    			<td colspan="2" valign="top">
				<p>scale : </p>
<p>period : </p>
			</td>
  		</tr>
		<tr>
    			<td valign="top">
    				<b><p>Methods</p></b>
    			</td>
			<td width="35%" valign="top">			
				<p>behave(TextObjectGlyph to)</p>
      			</td>
    		</tr>
		<tr>
			<td valign="top">
				<p><b>Related</b></p>
			</td>
			<td colspan="2" valign="top">
				TEST
			</td>
		</tr>
	</tbody>
</table>

]]></content:encoded>
			<wfw:commentRss>http://www.nexttext.net/reference/dform/throb/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Scale</title>
		<link>http://www.nexttext.net/reference/dform/scale/</link>
		<comments>http://www.nexttext.net/reference/dform/scale/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 20:41:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[net.nexttext.behaviour.dform]]></category>

		<guid isPermaLink="false">http://www.nexttext.net/reference/dform/scale/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p class="sectionTitle">Scale</p>

<p>
 If you prefer a more technical reference, visit the <a href="http://www.nexttext.net/doc/" target="_blank">NextText Javadoc</a>.
</p>
<table width="600" border="0" cellpadding="5" cellspacing="20">
	<tbody>
		<tr>
			<td width="19%" valign="top">
				<p><b>Name</b></p>
			</td>
    			<td colspan="2" valign="top">
				Scale
			</td>
  		</tr>
		<tr>
			<td width="19%" valign="top">
				<p><b>Description</b></p>
			</td>
    			<td colspan="2" valign="top">
				<p>A DForm which scales the size of a TextObject.</p>
			</td>
  		</tr>
		<tr>
 			<td valign="top">
 				<p><b>Usage</b></p>
 			</td>
 			<td colspan="2" valign="top">
 				<p><a class="option" title="Scale" rel="shadowbox" href="/reference_examples/Scale/Scale_/applet/index.html">Run applet</a> | <a href="/reference_examples/Scale/Scale_.zip" target="_blank">Download</a></p>
 				<pre name="code" class="java">TEST</pre> 
 			</td>
  		</tr>
  		<tr>
  			<td valign="top">
  				<p><b>Constructor</b></p>
  			</td>
  			<td colspan="2" valign="top">
				<p>new  Scale(float scale) </p>
      			</td>
  		</tr>
		<tr>
    			<td valign="top">
    				<p><b>Parameters</b></p>
    			</td>
    			<td colspan="2" valign="top">
				<p>scale :</p>
<p>to :</p>
			</td>
  		</tr>
		<tr>
    			<td valign="top">
    				<b><p>Methods</p></b>
    			</td>
			<td width="35%" valign="top">			
				<p>behave(TextObject to) </p>
<p>behave(TextObjectGlyph to) </p>
<p>getScale() </p>
<p>setScale(float scale) </p>
      			</td>
    		</tr>
		<tr>
			<td valign="top">
				<p><b>Related</b></p>
			</td>
			<td colspan="2" valign="top">
				TEST
			</td>
		</tr>
	</tbody>
</table>

]]></content:encoded>
			<wfw:commentRss>http://www.nexttext.net/reference/dform/scale/feed/</wfw:commentRss>
		</item>
		<item>
		<title>DForm</title>
		<link>http://www.nexttext.net/reference/dform/dform-2/</link>
		<comments>http://www.nexttext.net/reference/dform/dform-2/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 20:40:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[net.nexttext.behaviour.dform]]></category>

		<guid isPermaLink="false">http://www.nexttext.net/reference/dform/reform/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p class="sectionTitle">DForm</p>

<p>
 If you prefer a more technical reference, visit the <a href="http://www.nexttext.net/doc/" target="_blank">NextText Javadoc</a>.
</p>
<table width="600" border="0" cellpadding="5" cellspacing="20">
	<tbody>
		<tr>
			<td width="19%" valign="top">
				<p><b>Name</b></p>
			</td>
    			<td colspan="2" valign="top">
				DForm
			</td>
  		</tr>
		<tr>
			<td width="19%" valign="top">
				<p><b>Description</b></p>
			</td>
    			<td colspan="2" valign="top">
				<p>
A super class for DForms.
</p>
<p>
These are actions which modify the appearance of TextObjectGlyphs.
</p>
<p>
This class provides an implementation of behave() which recursively calls it on all Glyphs.
</p>
			</td>
  		</tr>
		<tr>
 			<td valign="top">
 				<p><b>Usage</b></p>
 			</td>
 			<td colspan="2" valign="top">
 				<p><a class="option" title="DForm" rel="shadowbox" href="/reference_examples/DForm/DForm_/applet/index.html">Run applet</a> | <a href="/reference_examples/DForm/DForm_.zip" target="_blank">Download</a></p>
 				<pre name="code" class="java">TEST</pre> 
 			</td>
  		</tr>
  		<tr>
  			<td valign="top">
  				<p><b>Constructor</b></p>
  			</td>
  			<td colspan="2" valign="top">
				<p>new DForm() </p>
      			</td>
  		</tr>
		<tr>
    			<td valign="top">
    				<p><b>Parameters</b></p>
    			</td>
    			<td colspan="2" valign="top">
				<p>to :</p>
<p>tog :</p>
			</td>
  		</tr>
		<tr>
    			<td valign="top">
    				<b><p>Methods</p></b>
    			</td>
			<td width="35%" valign="top">			
				<p>behave(TextObject to) </p>
<p>behave(TextObjectGlyph to)</p> 
<p>getControlPoints(TextObjectGlyph tog)</p>
      			</td>
    		</tr>
		<tr>
			<td valign="top">
				<p><b>Related</b></p>
			</td>
			<td colspan="2" valign="top">
				TEST
			</td>
		</tr>
	</tbody>
</table>

]]></content:encoded>
			<wfw:commentRss>http://www.nexttext.net/reference/dform/dform-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Pull</title>
		<link>http://www.nexttext.net/reference/dform/pull/</link>
		<comments>http://www.nexttext.net/reference/dform/pull/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 20:27:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[net.nexttext.behaviour.dform]]></category>

		<guid isPermaLink="false">http://www.nexttext.net/reference/dform/pull/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p class="sectionTitle">Pull</p>

<p>
 If you prefer a more technical reference, visit the <a href="http://www.nexttext.net/doc/" target="_blank">NextText Javadoc</a>.
</p>
<table width="600" border="0" cellpadding="5" cellspacing="20">
	<tbody>
		<tr>
			<td width="19%" valign="top">
				<p><b>Name</b></p>
			</td>
    			<td colspan="2" valign="top">
				Pull
			</td>
  		</tr>
		<tr>
			<td width="19%" valign="top">
				<p><b>Description</b></p>
			</td>
    			<td colspan="2" valign="top">
				<p>A DForm which pulls the TextObject towards a target.</p>
			</td>
  		</tr>
		<tr>
 			<td valign="top">
 				<p><b>Usage</b></p>
 			</td>
 			<td colspan="2" valign="top">
 				<p><a class="option" title="Pull" rel="shadowbox" href="/reference_examples/Pull/Pull_/applet/index.html">Run applet</a> | <a href="/reference_examples/Pull/Pull_.zip" target="_blank">Download</a></p>
 				<pre name="code" class="java">TEST</pre> 
 			</td>
  		</tr>
  		<tr>
  			<td valign="top">
  				<p><b>Constructor</b></p>
  			</td>
  			<td colspan="2" valign="top">
				<p>Pull(float x, float y) </p>
<p>Pull(float x, float y, float z) </p>
<p>Pull(float x, float y, float speed, float reach) </p>
<p>Pull(float x, float y, float z, float speed, float reach)</p> 
<p>Pull(Locatable target) </p>
<p>Pull(Locatable target, float speed, float reach) </p>
      			</td>
  		</tr>
		<tr>
    			<td valign="top">
    				<p><b>Parameters</b></p>
    			</td>
    			<td colspan="2" valign="top">
				<p>x :</p>
<p>y :</p>
<p>z :</p>
<p>speed :</p>

<p>reach :</p>

<p>target :</p>
			</td>
  		</tr>
		<tr>
    			<td valign="top">
    				<b><p>Methods</p></b>
    			</td>
			<td width="35%" valign="top">			
				<p>behave(TextObjectGlyph to) </p>
<p>setTarget(float x, float y) </p>
<p>setTarget(float x, float y, float z)</p> 
<p>setTarget(Locatable target) </p>
<p>setTarget(processing.core.PVector target) </p>
      			</td>
    		</tr>
		<tr>
			<td valign="top">
				<p><b>Related</b></p>
			</td>
			<td colspan="2" valign="top">
				TEST
			</td>
		</tr>
	</tbody>
</table>

]]></content:encoded>
			<wfw:commentRss>http://www.nexttext.net/reference/dform/pull/feed/</wfw:commentRss>
		</item>
		<item>
		<title>DFormFactory</title>
		<link>http://www.nexttext.net/reference/dform/dformfactory/</link>
		<comments>http://www.nexttext.net/reference/dform/dformfactory/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 20:27:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[net.nexttext.behaviour.dform]]></category>

		<guid isPermaLink="false">http://www.nexttext.net/reference/dform/dformfactory/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p class="sectionTitle">DFormFactory</p>

<p>
 If you prefer a more technical reference, visit the <a href="http://www.nexttext.net/doc/" target="_blank">NextText Javadoc</a>.
</p>
<table width="600" border="0" cellpadding="5" cellspacing="20">
	<tbody>
		<tr>
			<td width="19%" valign="top">
				<p><b>Name</b></p>
			</td>
    			<td colspan="2" valign="top">
				DFormFactory
			</td>
  		</tr>
		<tr>
			<td width="19%" valign="top">
				<p><b>Description</b></p>
			</td>
    			<td colspan="2" valign="top">
				<p>The factory of DForm behaviours.</p>
			</td>
  		</tr>
		<tr>
 			<td valign="top">
 				<p><b>Usage</b></p>
 			</td>
 			<td colspan="2" valign="top">
 				<p><a class="option" title="DFormFactory" rel="shadowbox" href="/reference_examples/DFormFactory/DFormFactory_/applet/index.html">Run applet</a> | <a href="/reference_examples/DFormFactory/DFormFactory_.zip" target="_blank">Download</a></p>
 				<pre name="code" class="java">TEST</pre> 
 			</td>
  		</tr>
  		<tr>
  			<td valign="top">
  				<p><b>Constructor</b></p>
  			</td>
  			<td colspan="2" valign="top">
				<p>new DFormFactory()</p>
      			</td>
  		</tr>
		<tr>
    			<td valign="top">
    				<p><b>Parameters</b></p>
    			</td>
    			<td colspan="2" valign="top">
				<p>mag :</p>
			</td>
  		</tr>
		<tr>
    			<td valign="top">
    				<b><p>Methods</p></b>
    			</td>
			<td width="35%" valign="top">			
				<p>chaosPull()</p>
<p>pull()</p>
<p>reform()</p>
<p>scale(float mag)</p>
<p>throb()</p>
<p>toString()</p>
      			</td>
    		</tr>
		<tr>
			<td valign="top">
				<p><b>Related</b></p>
			</td>
			<td colspan="2" valign="top">
				TEST
			</td>
		</tr>
	</tbody>
</table>

]]></content:encoded>
			<wfw:commentRss>http://www.nexttext.net/reference/dform/dformfactory/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Reform</title>
		<link>http://www.nexttext.net/reference/dform/dform/</link>
		<comments>http://www.nexttext.net/reference/dform/dform/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 20:26:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[net.nexttext.behaviour.dform]]></category>

		<guid isPermaLink="false">http://www.nexttext.net/reference/dform/dform/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p class="sectionTitle">Reform</p>

<p>
 If you prefer a more technical reference, visit the <a href="http://www.nexttext.net/doc/" target="_blank">NextText Javadoc</a>.
</p>
<table width="600" border="0" cellpadding="5" cellspacing="20">
	<tbody>
		<tr>
			<td width="19%" valign="top">
				<p><b>Name</b></p>
			</td>
    			<td colspan="2" valign="top">
				Reform
			</td>
  		</tr>
		<tr>
			<td width="19%" valign="top">
				<p><b>Description</b></p>
			</td>
    			<td colspan="2" valign="top">
				<p>
A DForm which reverts TextObject to its original shape.
</p>

<p>
Different ways of reforming the glyphs are provided, which given different visual effects.
</p>

<p>
The current ActionResult returned specifies that a Reform action never terminates, it sends a true event once it's reformed. We probably want to change it so that it can terminate. If needs be, the Reform could be put into a Repeat behaviour.
</p>
			</td>
  		</tr>
		<tr>
 			<td valign="top">
 				<p><b>Usage</b></p>
 			</td>
 			<td colspan="2" valign="top">
 				<p><a class="option" title="Reform" rel="shadowbox" href="/reference_examples/Reform/Reform_/applet/index.html">Run applet</a> | <a href="/reference_examples/Reform/Reform_.zip" target="_blank">Download</a></p>
 				<pre name="code" class="java">TEST</pre> 
 			</td>
  		</tr>
  		<tr>
  			<td valign="top">
  				<p><b>Constructor</b></p>
  			</td>
  			<td colspan="2" valign="top">
				<p>new Reform() </p>
<p>new Reform(float speed, int style) </p>
      			</td>
  		</tr>
		<tr>
    			<td valign="top">
    				<p><b>Parameters</b></p>
    			</td>
    			<td colspan="2" valign="top">
				<p>speed : </p>
<p>style : </p>
<p>to : </p>
<p>exponentialSpeed : </p>
<p>linearSpeed : </p>
			</td>
  		</tr>
		<tr>
    			<td valign="top">
    				<b><p>Methods</p></b>
    			</td>
			<td width="35%" valign="top">			
				<p>behave(TextObjectGlyph to) </p>
<p>getExponentialSpeed()</p> 
<p>getLinearSpeed() </p>
<p>setExponentialSpeed(float exponentialSpeed)</p> 
<p>setLinearSpeed(float linearSpeed)</p> 
<p>setStyleExponential() </p>
<p>setStyleLinear() </p>
      			</td>
    		</tr>
		<tr>
			<td valign="top">
				<p><b>Related</b></p>
			</td>
			<td colspan="2" valign="top">
				TEST
			</td>
		</tr>
	</tbody>
</table>

]]></content:encoded>
			<wfw:commentRss>http://www.nexttext.net/reference/dform/dform/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ChaosPull</title>
		<link>http://www.nexttext.net/reference/dform/chaospull/</link>
		<comments>http://www.nexttext.net/reference/dform/chaospull/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 20:26:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[net.nexttext.behaviour.dform]]></category>

		<guid isPermaLink="false">http://www.nexttext.net/reference/dform/chaospull/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p class="sectionTitle">ChaosPull</p>

<p>
 If you prefer a more technical reference, visit the <a href="http://www.nexttext.net/doc/" target="_blank">NextText Javadoc</a>.
</p>
<table width="600" border="0" cellpadding="5" cellspacing="20">
	<tbody>
		<tr>
			<td width="19%" valign="top">
				<p><b>Name</b></p>
			</td>
    			<td colspan="2" valign="top">
				ChaosPull
			</td>
  		</tr>
		<tr>
			<td width="19%" valign="top">
				<p><b>Description</b></p>
			</td>
    			<td colspan="2" valign="top">
				<p>ChaosPull is similar to Pull except that the control points get into a chaotic state when they reach the target. TODO: add parameters.</p>
			</td>
  		</tr>
		<tr>
 			<td valign="top">
 				<p><b>Usage</b></p>
 			</td>
 			<td colspan="2" valign="top">
 				<p><a class="option" title="ChaosPull" rel="shadowbox" href="/reference_examples/ChaosPull/ChaosPull_/applet/index.html">Run applet</a> | <a href="/reference_examples/ChaosPull/ChaosPull_.zip" target="_blank">Download</a></p>
 				<pre name="code" class="java">TEST</pre> 
 			</td>
  		</tr>
  		<tr>
  			<td valign="top">
  				<p><b>Constructor</b></p>
  			</td>
  			<td colspan="2" valign="top">
				<p>new ChaosPull(float x, float y) </p>
<p>new ChaosPull(float x, float y, float z) </p>
<p>new ChaosPull(float x, float y, float z, int chaosStrength)</p> 
<p>new ChaosPull(float x, float y, int chaosStrength) </p>
<p>new ChaosPull(Locatable target) </p>
<p>new ChaosPull(Locatable target, int chaosStrength) </p>
      			</td>
  		</tr>
		<tr>
    			<td valign="top">
    				<p><b>Parameters</b></p>
    			</td>
    			<td colspan="2" valign="top">
				<p>x : </p>
<p>y : </p>
<p>z : </p>
<p>chaosStrength : </p>
<p>target : </p>
			</td>
  		</tr>
		<tr>
    			<td valign="top">
    				<b><p>Methods</p></b>
    			</td>
			<td width="35%" valign="top">			
				<p>behave(TextObjectGlyph to)</p> 
<p>getChaosStrength() </p>
<p>setChaosStrength(int chaosStrength) </p>
<p>setTarget(float x, float y) </p>
<p>setTarget(float x, float y, float z)</p> 
<p>setTarget(Locatable target) </p>
<p>setTarget(processing.core.PVector target) </p>
      			</td>
    		</tr>
		<tr>
			<td valign="top">
				<p><b>Related</b></p>
			</td>
			<td colspan="2" valign="top">
				TEST
			</td>
		</tr>
	</tbody>
</table>

]]></content:encoded>
			<wfw:commentRss>http://www.nexttext.net/reference/dform/chaospull/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Blow</title>
		<link>http://www.nexttext.net/reference/dform/blow/</link>
		<comments>http://www.nexttext.net/reference/dform/blow/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 20:24:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[net.nexttext.behaviour.dform]]></category>

		<guid isPermaLink="false">http://www.nexttext.net/reference/dform/blow/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p class="sectionTitle">Blow</p>

<p>
 If you prefer a more technical reference, visit the <a href="http://www.nexttext.net/doc/" target="_blank">NextText Javadoc</a>.
</p>
<table width="600" border="0" cellpadding="5" cellspacing="20">
	<tbody>
		<tr>
			<td width="19%" valign="top">
				<p><b>Name</b></p>
			</td>
    			<td colspan="2" valign="top">
				Blow
			</td>
  		</tr>
		<tr>
			<td width="19%" valign="top">
				<p><b>Description</b></p>
			</td>
    			<td colspan="2" valign="top">
				<p>A DForm which pushes the TextObject outlines away from a target.</p>
			</td>
  		</tr>
		<tr>
 			<td valign="top">
 				<p><b>Usage</b></p>
 			</td>
 			<td colspan="2" valign="top">
 				<p><a class="option" title="Blow" rel="shadowbox" href="/reference_examples/Blow/Blow_/applet/index.html">Run applet</a> | <a href="/reference_examples/Blow/Blow_.zip" target="_blank">Download</a></p>
 				<pre name="code" class="java">TEST</pre> 
 			</td>
  		</tr>
  		<tr>
  			<td valign="top">
  				<p><b>Constructor</b></p>
  			</td>
  			<td colspan="2" valign="top">
				<p>new Blow(float x, float y) </p>
<p>new Blow(float x, float y, float z) </p>
<p>new Blow(float x, float y, float speed, float reach) </p>
<p>new Blow(float x, float y, float z, float speed, float reach) </p>
<p>new Blow(Locatable target) </p>
<p>new Blow(Locatable target, float speed, float reach) </p>
      			</td>
  		</tr>
		<tr>
    			<td valign="top">
    				<p><b>Parameters</b></p>
    			</td>
    			<td colspan="2" valign="top">
				<p>x : </p>
<p>y : </p>
<p>z : </p>
<p>speed : </p>
<p>reach : </p>
			</td>
  		</tr>
		<tr>
    			<td valign="top">
    				<b><p>Methods</p></b>
    			</td>
			<td width="35%" valign="top">			
				<p>behave(TextObjectGlyph to) </p>
<p>setTarget(float x, float y) </p>
<p>setTarget(float x, float y, float z)</p> 
<p>setTarget(Locatable target) </p>
<p>setTarget(processing.core.PVector target) </p>
      			</td>
    		</tr>
		<tr>
			<td valign="top">
				<p><b>Related</b></p>
			</td>
			<td colspan="2" valign="top">
				TEST
			</td>
		</tr>
	</tbody>
</table>

]]></content:encoded>
			<wfw:commentRss>http://www.nexttext.net/reference/dform/blow/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Stop</title>
		<link>http://www.nexttext.net/reference/physics/stop/</link>
		<comments>http://www.nexttext.net/reference/physics/stop/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 19:33:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[net.nexttext.behaviour.physics]]></category>

		<guid isPermaLink="false">http://www.nexttext.net/reference/physics/stop/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p class="sectionTitle">Stop</p>

<p>
 If you prefer a more technical reference, visit the <a href="http://www.nexttext.net/doc/" target="_blank">NextText Javadoc</a>.
</p>
<table width="600" border="0" cellpadding="5" cellspacing="20">
	<tbody>
		<tr>
			<td width="19%" valign="top">
				<p><b>Name</b></p>
			</td>
    			<td colspan="2" valign="top">
				Stop
			</td>
  		</tr>
		<tr>
			<td width="19%" valign="top">
				<p><b>Description</b></p>
			</td>
    			<td colspan="2" valign="top">
				<p>Stop an object from moving by setting its velocity and angular velocity to 0.</p>
			</td>
  		</tr>
		<tr>
 			<td valign="top">
 				<p><b>Usage</b></p>
 			</td>
 			<td colspan="2" valign="top">
 				<p><a class="option" title="Stop" rel="shadowbox" href="/reference_examples/Stop/Stop_/applet/index.html">Run applet</a> | <a href="/reference_examples/Stop/Stop_.zip" target="_blank">Download</a></p>
 				<pre name="code" class="java">TEST</pre> 
 			</td>
  		</tr>
  		<tr>
  			<td valign="top">
  				<p><b>Constructor</b></p>
  			</td>
  			<td colspan="2" valign="top">
				<p>new Stop()</p>
      			</td>
  		</tr>
		<tr>
    			<td valign="top">
    				<p><b>Parameters</b></p>
    			</td>
    			<td colspan="2" valign="top">
				<p>to</p>
			</td>
  		</tr>
		<tr>
    			<td valign="top">
    				<b><p>Methods</p></b>
    			</td>
			<td width="35%" valign="top">			
				<p>behave(TextObject to)</p>
      			</td>
    		</tr>
		<tr>
			<td valign="top">
				<p><b>Related</b></p>
			</td>
			<td colspan="2" valign="top">
				TEST
			</td>
		</tr>
	</tbody>
</table>

]]></content:encoded>
			<wfw:commentRss>http://www.nexttext.net/reference/physics/stop/feed/</wfw:commentRss>
		</item>
		<item>
		<title>StayInWindow</title>
		<link>http://www.nexttext.net/reference/physics/stayinwindow/</link>
		<comments>http://www.nexttext.net/reference/physics/stayinwindow/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 19:32:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[net.nexttext.behaviour.physics]]></category>

		<guid isPermaLink="false">http://www.nexttext.net/reference/physics/stayinwindow/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p class="sectionTitle">StayInWindow</p>

<p>
 If you prefer a more technical reference, visit the <a href="http://www.nexttext.net/doc/" target="_blank">NextText Javadoc</a>.
</p>
<table width="600" border="0" cellpadding="5" cellspacing="20">
	<tbody>
		<tr>
			<td width="19%" valign="top">
				<p><b>Name</b></p>
			</td>
    			<td colspan="2" valign="top">
				StayInWindow
			</td>
  		</tr>
		<tr>
			<td width="19%" valign="top">
				<p><b>Description</b></p>
			</td>
    			<td colspan="2" valign="top">
				<p>Keep objects inside a window.

By default, StayInWindow bounces objects off the edge of the visible window. It can be configured to change the window size and object behaviour.</p>
			</td>
  		</tr>
		<tr>
 			<td valign="top">
 				<p><b>Usage</b></p>
 			</td>
 			<td colspan="2" valign="top">
 				<p><a class="option" title="StayInWindow" rel="shadowbox" href="/reference_examples/StayInWindow/StayInWindow_/applet/index.html">Run applet</a> | <a href="/reference_examples/StayInWindow/StayInWindow_.zip" target="_blank">Download</a></p>
 				<pre name="code" class="java">TEST</pre> 
 			</td>
  		</tr>
  		<tr>
  			<td valign="top">
  				<p><b>Constructor</b></p>
  			</td>
  			<td colspan="2" valign="top">
				<p>new StayInWindow(processing.core.PApplet p) </p>
<p>new StayInWindow(processing.core.PApplet p, boolean bounce) </p>
<p>new StayInWindow(java.awt.Rectangle bounds, boolean bounce) </p>
      			</td>
  		</tr>
		<tr>
    			<td valign="top">
    				<p><b>Parameters</b></p>
    			</td>
    			<td colspan="2" valign="top">
				<p>p : </p>
<p>bounce :</p>
<p>bounds  :</p>
<p>to : </p>
<p>window : </p>
			</td>
  		</tr>
		<tr>
    			<td valign="top">
    				<b><p>Methods</p></b>
    			</td>
			<td width="35%" valign="top">			
				<p>behave(TextObject to)</p>
<p>setWindow(java.awt.Rectangle window)</p>
      			</td>
    		</tr>
		<tr>
			<td valign="top">
				<p><b>Related</b></p>
			</td>
			<td colspan="2" valign="top">
				TEST
			</td>
		</tr>
	</tbody>
</table>

]]></content:encoded>
			<wfw:commentRss>http://www.nexttext.net/reference/physics/stayinwindow/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
