Thread: [Patchanim-commit] SF.net SVN: patchanim: [9] trunk/patchanim/htdocs
Brought to you by:
dbrosius
From: <dbr...@us...> - 2008-01-25 05:12:43
|
Revision: 9 http://patchanim.svn.sourceforge.net/patchanim/?rev=9&view=rev Author: dbrosius Date: 2008-01-24 21:12:46 -0800 (Thu, 24 Jan 2008) Log Message: ----------- jnlp file for web start Added Paths: ----------- trunk/patchanim/htdocs/jnlp/ trunk/patchanim/htdocs/jnlp/patchanim.jnlp Added: trunk/patchanim/htdocs/jnlp/patchanim.jnlp =================================================================== --- trunk/patchanim/htdocs/jnlp/patchanim.jnlp (rev 0) +++ trunk/patchanim/htdocs/jnlp/patchanim.jnlp 2008-01-25 05:12:46 UTC (rev 9) @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<jnlp + spec="1.0+" + codebase="http://patchanim.sourceforge.net/jnlp" + href="patchanim.jnlp"> + <information> + <title>PatchAnim</title> + <vendor>MeBigFatGuy.com</vendor> + <homepage href="http://patchanim.sourceforge.net"/> + <description>Bezier Surface Patch Blend creation tool</description> + <description kind="short">A tool for creating animated color blends based on Bezier Surface patches</description> + <offline-allowed/> + </information> + <security> + <all-permissions/> + </security> + <resources> + <j2se version="1.5+" initial-heap-size="300m" max-heap-size="800m"/> + <jar href="patchanim-0.1.0.jar"/> + </resources> + <application-desc main-class="com.mebigfatguy.patchanim.main.PatchMain"/> +</jnlp> + Property changes on: trunk/patchanim/htdocs/jnlp/patchanim.jnlp ___________________________________________________________________ Name: svn:mime-type + text/jnlp Name: svn:eol-style + native This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dbr...@us...> - 2008-01-26 06:50:35
|
Revision: 20 http://patchanim.svn.sourceforge.net/patchanim/?rev=20&view=rev Author: dbrosius Date: 2008-01-25 22:50:39 -0800 (Fri, 25 Jan 2008) Log Message: ----------- show a sample on the web page Modified Paths: -------------- trunk/patchanim/htdocs/index.html Added Paths: ----------- trunk/patchanim/htdocs/sample.jpg Modified: trunk/patchanim/htdocs/index.html =================================================================== --- trunk/patchanim/htdocs/index.html 2008-01-26 06:42:09 UTC (rev 19) +++ trunk/patchanim/htdocs/index.html 2008-01-26 06:50:39 UTC (rev 20) @@ -19,6 +19,7 @@ There are three patches available to tailor, one for red, green and blue, each. These three patches are combined into one blend. A series of these patches can be created, and then the software creates a tween between them to get a nicely continuous animated blend.</p> + <img src="sample.jpg"/> <p><b>This tool is not finished at this time, it is a work in process.</b></p> <p>If you would like to see the tool as it progresses, you can run the webstart version <a href="http://patchanim.sourceforge.net/jnlp/patchanim.jnlp">here.</a></p> Added: trunk/patchanim/htdocs/sample.jpg =================================================================== (Binary files differ) Property changes on: trunk/patchanim/htdocs/sample.jpg ___________________________________________________________________ Name: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dbr...@us...> - 2008-01-28 02:19:40
|
Revision: 45 http://patchanim.svn.sourceforge.net/patchanim/?rev=45&view=rev Author: dbrosius Date: 2008-01-27 18:19:44 -0800 (Sun, 27 Jan 2008) Log Message: ----------- document bezier use Modified Paths: -------------- trunk/patchanim/htdocs/index.html Added Paths: ----------- trunk/patchanim/htdocs/bezier.jpg Added: trunk/patchanim/htdocs/bezier.jpg =================================================================== (Binary files differ) Property changes on: trunk/patchanim/htdocs/bezier.jpg ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: trunk/patchanim/htdocs/index.html =================================================================== --- trunk/patchanim/htdocs/index.html 2008-01-28 01:47:53 UTC (rev 44) +++ trunk/patchanim/htdocs/index.html 2008-01-28 02:19:44 UTC (rev 45) @@ -19,6 +19,21 @@ There are three patches available to tailor, one for red, green and blue. These three patches are combined into one blend. A series of these patches can be created, and then the software creates a tween between them to get a nicely continuous animated blend.</p> + + <p>A Cubic Bezier <b>curve</b> is a curve defined by 4 control points. The curve goes thru both end points, and + the curve is influenced by the two middle points. In fact that slope of the curve at the first point is equal to + the slope of the line from the first to the second point. Similarly the slope at the end point is equal to the slope + of the line from the third to the fourth point. Rather than calculating a point on a curve, this application uses the + shape of the curve to determine a color. In the following diagram, the y axis denotes a color from black to a full + primary color (red in this case). By using a curve, we can give a separate color for each section of the curve, as + seen in the color blend below the curve.</p> + <div style="position:relative;left:300px;"/><img src="bezier.jpg"/></div> + <p>Now this tool, uses Cubic Bezier <b>patches</b>, a 3D surface patch consisting of 16 control points. You can think + of a patch as bezier curves running in parallel along the x axis, and a cross cutting setting of curves running along + the y axis. Again, though, the z value, in this application is mapped to a color, where patch values of 0 are mapped + to black, and values of 255 are mapped to full color (in this case red). In the color blend samples, then, you can + imagine that you are looking straight down on the patch from above.</p> + <p><b>Jan 27, 2008 - This tool is not finished at this time, although the patch animations work</b><br/> Still to be done: <ul> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dbr...@us...> - 2008-02-03 01:11:18
|
Revision: 92 http://patchanim.svn.sourceforge.net/patchanim/?rev=92&view=rev Author: dbrosius Date: 2008-02-02 17:11:24 -0800 (Sat, 02 Feb 2008) Log Message: ----------- more docs with pretty pictures Modified Paths: -------------- trunk/patchanim/htdocs/index.html trunk/patchanim/htdocs/sample.jpg Added Paths: ----------- trunk/patchanim/htdocs/nameediting.jpg trunk/patchanim/htdocs/patchediting.jpg Modified: trunk/patchanim/htdocs/index.html =================================================================== --- trunk/patchanim/htdocs/index.html 2008-02-03 00:55:42 UTC (rev 91) +++ trunk/patchanim/htdocs/index.html 2008-02-03 01:11:24 UTC (rev 92) @@ -58,6 +58,7 @@ <p>If you would like to see the tool as it progresses, you can run the webstart version <a href="http://patchanim.sourceforge.net/jnlp/patchanim.jnlp">here.</a></p> <img src="sample.jpg"/> + <p><table cellpadding="10"><tr><td><img src="nameediting.jpg"/></td><td><img src="patchediting.jpg"/></td></tr></table></p> </div> </body> </html> Added: trunk/patchanim/htdocs/nameediting.jpg =================================================================== (Binary files differ) Property changes on: trunk/patchanim/htdocs/nameediting.jpg ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/patchanim/htdocs/patchediting.jpg =================================================================== (Binary files differ) Property changes on: trunk/patchanim/htdocs/patchediting.jpg ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: trunk/patchanim/htdocs/sample.jpg =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dbr...@us...> - 2008-02-10 07:11:28
|
Revision: 140 http://patchanim.svn.sourceforge.net/patchanim/?rev=140&view=rev Author: dbrosius Date: 2008-02-09 23:11:33 -0800 (Sat, 09 Feb 2008) Log Message: ----------- update web page to show animated png Modified Paths: -------------- trunk/patchanim/htdocs/index.html Added Paths: ----------- trunk/patchanim/htdocs/animation.png Added: trunk/patchanim/htdocs/animation.png =================================================================== (Binary files differ) Property changes on: trunk/patchanim/htdocs/animation.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: trunk/patchanim/htdocs/index.html =================================================================== --- trunk/patchanim/htdocs/index.html 2008-02-10 07:02:15 UTC (rev 139) +++ trunk/patchanim/htdocs/index.html 2008-02-10 07:11:33 UTC (rev 140) @@ -22,9 +22,9 @@ animated giving smooth transitions from one blend to another. Blend animations can be outputted to animated gifs, mpegs or a series of bitmaps.</p> <div style="position:relative;left:100;"><img src="animation.gif"/></div> - <p>Unfortunately gif files are 256 images, and so you get some grainyness. Eventually MPeg and APng will be supported to - get around this shortcoming</p> - + <p>Unfortunately gif files are 256 images, and so you get some grainyness. If you have FireFox 3.0 with the APng Editor + plugin, you can see the following Animated Png, which is shown in 24 bits. If you do not, you will just see a still image.</p> + <div style="position:relative;left:100;"><img src="animation.png"/></div> <p>A Cubic Bezier <b>curve</b> is a curve defined by 4 control points. The curve goes thru both end points, and the curve is influenced by the two middle points. In fact the slope of the curve at the first point is equal to the slope of the line from the first to the second point. Similarly the slope of the curve at the end point is This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dbr...@us...> - 2008-02-14 07:34:13
|
Revision: 186 http://patchanim.svn.sourceforge.net/patchanim/?rev=186&view=rev Author: dbrosius Date: 2008-02-13 23:34:15 -0800 (Wed, 13 Feb 2008) Log Message: ----------- add more doc Modified Paths: -------------- trunk/patchanim/htdocs/index.html Added Paths: ----------- trunk/patchanim/htdocs/order.gif Modified: trunk/patchanim/htdocs/index.html =================================================================== --- trunk/patchanim/htdocs/index.html 2008-02-14 07:18:45 UTC (rev 185) +++ trunk/patchanim/htdocs/index.html 2008-02-14 07:34:15 UTC (rev 186) @@ -50,20 +50,20 @@ to generate one full color blend. Since the description of the blend is very succinct (just 3 * 16 points), It is very easy to generate in-between images from two separate blend descriptions.</p> - - <p><b>Feb 10, 2008 - This tool is not finished at this time, although the patch animations work</b><br/> - Still to be done: - <ul> - <li>export to mpeg?</li> - <li>Patch Library</li> - <li>Color Swatch for editing values</li> - <li>....and much more</li> - </ul> - </p> + <p>February 14, 2008 - added lately</p> + <ul> + <li>Patches can now be any order from 3 - 9, specified on the new dialog</li> + </ul> <p>If you would like to see the tool as it progresses, you can run the webstart version <a href="http://patchanim.sourceforge.net/jnlp/patchanim.jnlp">here.</a></p> <img src="sample.jpg"/> - <p><table cellpadding="10"><tr><td><img src="nameediting.jpg"/></td><td><img src="patchediting.jpg"/></td></tr></table></p> + <p><table cellpadding="10"> + <tr> + <td><img src="order.gif"/></td> + <td><img src="nameediting.jpg"/></td> + <td><img src="patchediting.jpg"/></td> + </tr> + </table></p> </div> <script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); Added: trunk/patchanim/htdocs/order.gif =================================================================== (Binary files differ) Property changes on: trunk/patchanim/htdocs/order.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |