<?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"

			>

	<channel>
		<title>Cycling 74  &#187;  Topic: Cassini Oval, NURBS won&#039;t close</title>
		<atom:link href="http://cycling74.com/forums/topic/cassini-oval-nurbs-wont-close/feed" rel="self" type="application/rss+xml" />
		<link>http://cycling74.com/forums/topic/cassini-oval-nurbs-wont-close/feed</link>
		<description></description>
		<pubDate>Tue, 18 Jun 2013 21:09:21 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.2.4</generator>
		<language></language>

		
														
					
				<item>
					<guid>http://cycling74.com/forums/topic/cassini-oval-nurbs-wont-close/#post-25535</guid>
					<title><![CDATA[Cassini Oval, NURBS won&#039;t close]]></title>
					<link>http://cycling74.com/forums/topic/cassini-oval-nurbs-wont-close/#post-25535</link>
					<pubDate>Thu, 20 Apr 2006 17:41:41 +0000</pubDate>
					<dc:creator>niemeyer</dc:creator>

					<description>
						<![CDATA[
						<p>Dear Jitter List,<br />
Is it my math or something in the nurbs object that will not allow this <br />
Cassini Oval to close? I want to model mitosis&#8230;Thanks for any help!</p>
<p>Greg</p>
<p>Comments Welcome: <a href="http://cnm.berkeley.edu/" rel="nofollow">http://cnm.berkeley.edu/</a></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/cassini-oval-nurbs-wont-close/#post-75293</guid>
					<title><![CDATA[Re: Cassini Oval, NURBS won&#039;t close]]></title>
					<link>http://cycling74.com/forums/topic/cassini-oval-nurbs-wont-close/#post-75293</link>
					<pubDate>Thu, 20 Apr 2006 19:29:41 +0000</pubDate>
					<dc:creator>nesa</dc:creator>

					<description>
						<![CDATA[
						<p>hello,</p>
<p>it seems that there is something a bit wrong with your math, but I have no<br />
clue what exactly.</p>
<p>I tried to send matrix generated in javascript to jit.gl.mesh, and the<br />
problem was still there, so it seems not to be nurbs related.</p>
<p>try to draw blob crossection:</p>
<p>for (var l=0; l < 16; l++){</p>
</p><p>and move camera to 2.27 3.47 2.98</p>
<p>maybe you&#8217;ll see something that might help&#8230;</p>
<p>you could also use jit.expr to do what your javascript peopleMaker does, if<br />
you need more speed.</p>
<p>hth,<br />
nesa</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/cassini-oval-nurbs-wont-close/#post-75294</guid>
					<title><![CDATA[Re: Cassini Oval, NURBS won&#039;t close]]></title>
					<link>http://cycling74.com/forums/topic/cassini-oval-nurbs-wont-close/#post-75294</link>
					<pubDate>Fri, 21 Apr 2006 06:57:32 +0000</pubDate>
					<dc:creator>niemeyer</dc:creator>

					<description>
						<![CDATA[
						<p>yes, I also found out that nurbs is not too happy with many points <br />
converging in [0, 0] but with [0.0001, 0.0001] there is no problem. Are <br />
you suggesting replacing all the math with jit.expr objects ? I did not <br />
realize that would be faster than JS Math objects, but I will try!</p>
<p>Thanks, Greg</p>
<p>Comments Welcome: <a href="http://cnm.berkeley.edu/" rel="nofollow">http://cnm.berkeley.edu/</a></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/cassini-oval-nurbs-wont-close/#post-75295</guid>
					<title><![CDATA[Re: Cassini Oval, NURBS won&#039;t close]]></title>
					<link>http://cycling74.com/forums/topic/cassini-oval-nurbs-wont-close/#post-75295</link>
					<pubDate>Fri, 21 Apr 2006 18:49:21 +0000</pubDate>
					<dc:creator>Joshua Kit Clayton</dc:creator>

					<description>
						<![CDATA[
						<p>Check out the performance difference between jsglsurface-example.pat  <br />
(uses jit.expr to evaluate surface) and jsglsurface2-example.pat  <br />
(uses JS to evaluate surface). You&#8217;ll notice something like a 20-40x  <br />
performance difference in your surface calulation by useing jit.expr.  <br />
However if there aren&#8217;t too many control points to calulate, then  <br />
it&#8217;s not likely to result in overall performance benefits.</p>
<p>Also worth noting, certain types of calculation (like using adjacent  <br />
input or output cells to calculate the expression) are either a  <br />
nuisance (for adjacent input cells) or not possible (for adjacent  <br />
output cells). For adjacent input cells you *can* use one of the  <br />
spatial objects like jit.rota(in[0], @offset_x -1)  in your  <br />
expression to grab a neighboring cell along the x axis for instance.</p>
<p>Haven&#8217;t had time to examine your nurbs closing problem, but let us  <br />
know if you still are unable to track it down and I can try to figure  <br />
out a solution. The nurbs object closes connections about each axis  <br />
(connect top to bottom or left to right) and hence is good for closed  <br />
connections like a cylinder or torus, but doesn&#8217;t close connections  <br />
*along* any given side of your mesh, so it can&#8217;t smoothly make  <br />
spheres for instance.</p>
<p>Hope this helps.</p>
<p>-Joshua</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/cassini-oval-nurbs-wont-close/#post-75296</guid>
					<title><![CDATA[Re: Cassini Oval, NURBS won&#039;t close]]></title>
					<link>http://cycling74.com/forums/topic/cassini-oval-nurbs-wont-close/#post-75296</link>
					<pubDate>Sat, 22 Apr 2006 18:21:00 +0000</pubDate>
					<dc:creator>nesa</dc:creator>

					<description>
						<![CDATA[
						<p>hello,</p>
<p>besides &#8216;many points in 0,0&#8242; thing, i&#8217;ve noticed that there are some<br />
surfaces that &#8216;bend&#8217; or &#8216;sunk&#8217; from the top of your shape towards the<br />
bottom, the crossection of the top looks like more like  M  than like Π ,<br />
like when top vertex goes from top to bottom&#8230; or maybe this was intended?</p>
<p>thanks to Joshua for jit.expr tips!</p>
<p>best,<br />
nesa</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

