<?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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Silveira Neto &#187; Openpixels</title>
	<atom:link href="http://silveiraneto.net/tag/openpixels/feed/" rel="self" type="application/rss+xml" />
	<link>http://silveiraneto.net</link>
	<description>the world is a pixel</description>
	<lastBuildDate>Sun, 08 Jan 2012 05:17:57 +0000</lastBuildDate>
	<language>pt-br</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>OpenPixels: simple sprite sheet with Processing</title>
		<link>http://silveiraneto.net/2011/08/22/openpixels-simple-sprite-sheet-with-processing/</link>
		<comments>http://silveiraneto.net/2011/08/22/openpixels-simple-sprite-sheet-with-processing/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 01:54:00 +0000</pubDate>
		<dc:creator>Silveira</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[Openpixels]]></category>
		<category><![CDATA[Pixelart]]></category>
		<category><![CDATA[Processing]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://silveiraneto.net/?p=3859</guid>
		<description><![CDATA[/** * Openpixels example in Processing. * This simple example of how to get a sprite * from a sprite sheet. */ &#160; PImage bg; PImage sprite_sheet; PImage player; &#160; void setup&#40;&#41; &#123; // load images bg = loadImage&#40;&#34;kitchen.png&#34;&#41;; sprite_sheet = loadImage&#40;&#34;guy.png&#34;&#41;; &#160; /* The sprite size is 32x49. Look guy.png, the &#34;stand position&#34; is [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-3860 aligncenter" title="processing example runnig" src="http://silveiraneto.net/wp-content/uploads/2011/08/processing_example.png" alt="" width="494" height="603" /></p>
<div class="wp_syntax">
<div class="code">
<pre class="java java" style="font-family:monospace;"><span style="color: #008000; font-style: italic; font-weight: bold;">/**
 * Openpixels example in Processing.
 * This simple example of how to get a sprite
 * from a sprite sheet.
 */</span>
&nbsp;
PImage bg;
PImage sprite_sheet;
PImage player;
&nbsp;
<span style="color: #000066; font-weight: bold;">void</span> setup<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #666666; font-style: italic;">// load images</span>
  bg <span style="color: #339933;">=</span> loadImage<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;kitchen.png&quot;</span><span style="color: #009900;">&#41;</span>;
  sprite_sheet <span style="color: #339933;">=</span> loadImage<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;guy.png&quot;</span><span style="color: #009900;">&#41;</span>;
&nbsp;
  <span style="color: #666666; font-style: italic;">/* The sprite size is 32x49.
     Look guy.png, the &quot;stand position&quot; is at (36,102). */</span>
&nbsp;
  player <span style="color: #339933;">=</span> createImage<span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">32</span>, <span style="color: #cc66cc;">49</span>, ARGB<span style="color: #009900;">&#41;</span>;
  player.<span style="color: #006633;">copy</span><span style="color: #009900;">&#40;</span>sprite_sheet, <span style="color: #cc66cc;">36</span>, <span style="color: #cc66cc;">102</span>, <span style="color: #cc66cc;">32</span>, <span style="color: #cc66cc;">49</span>, 0, 0, <span style="color: #cc66cc;">32</span>, <span style="color: #cc66cc;">49</span><span style="color: #009900;">&#41;</span>;
&nbsp;
  <span style="color: #666666; font-style: italic;">// set screen size and background</span>
  size<span style="color: #009900;">&#40;</span>bg.<span style="color: #006633;">width</span>, bg.<span style="color: #006633;">height</span><span style="color: #009900;">&#41;</span>;
  background<span style="color: #009900;">&#40;</span>bg<span style="color: #009900;">&#41;</span>;
&nbsp;
  frameRate<span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">30</span><span style="color: #009900;">&#41;</span>;
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000066; font-weight: bold;">void</span> draw<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  background<span style="color: #009900;">&#40;</span>bg<span style="color: #009900;">&#41;</span>;
  image<span style="color: #009900;">&#40;</span>player, <span style="color: #cc66cc;">100</span>, <span style="color: #cc66cc;">50</span><span style="color: #009900;">&#41;</span>;
<span style="color: #009900;">&#125;</span></pre>
</div>
</div>
<p>See more at <a href="https://github.com/silveira/openpixels/tree/master/examples/processing">OpenPixels</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://silveiraneto.net/2011/08/22/openpixels-simple-sprite-sheet-with-processing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Openpixels</title>
		<link>http://silveiraneto.net/2011/08/20/getting-openpixels/</link>
		<comments>http://silveiraneto.net/2011/08/20/getting-openpixels/#comments</comments>
		<pubDate>Sat, 20 Aug 2011 16:18:22 +0000</pubDate>
		<dc:creator>Silveira</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[Openpixels]]></category>

		<guid isPermaLink="false">http://silveiraneto.net/?p=3850</guid>
		<description><![CDATA[Openpixels is a project of mine to create a free and open source artistic framework for game projects in any language or platform. It is going pretty well. You can just download a zip or tar.gz of the latest version. You may want fork it or get a git working copy of it to later [...]]]></description>
			<content:encoded><![CDATA[<p>Openpixels is a project of mine to create a free and open source artistic framework for game projects in any language or platform. It is going pretty well.</p>
<p>You can just <strong>download</strong> a <a href="https://github.com/silveira/openpixels/zipball/master">zip</a> or <a href="https://github.com/silveira/openpixels/tarball/master">tar.gz</a> of the latest version.</p>
<p>You may want <a href="http://help.github.com/fork-a-repo/">fork it</a> or get a git working copy of it to later make your own contributions to the project. In this case:</p>
<div class="wp_syntax">
<div class="code">
<pre class="sh" style="font-family:monospace;">apt-get install git-core
cd ~
git clone git://github.com/silveira/openpixels.git</pre>
</div>
</div>
<p>You will see something like this:</p>
<div class="wp_syntax">
<div class="code">
<pre class="sh" style="font-family:monospace;">Cloning into openpixels...
remote: Counting objects: 129, done.
remote: Compressing objects: 100% (126/126), done.
remote: Total 129 (delta 17), reused 0 (delta 0)
Receiving objects: 100% (129/129), 784.52 KiB, done.
Resolving deltas: 100% (17/17), done.</pre>
</div>
</div>
<p>And now you have a repository clone at ~/openpixels and you can start hacking.</p>
]]></content:encoded>
			<wfw:commentRss>http://silveiraneto.net/2011/08/20/getting-openpixels/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Openpixels – Chars</title>
		<link>http://silveiraneto.net/2010/05/19/openpixels-%e2%80%93-chars/</link>
		<comments>http://silveiraneto.net/2010/05/19/openpixels-%e2%80%93-chars/#comments</comments>
		<pubDate>Wed, 19 May 2010 18:10:26 +0000</pubDate>
		<dc:creator>Silveira</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[Brazil]]></category>
		<category><![CDATA[Field]]></category>
		<category><![CDATA[Gimp]]></category>
		<category><![CDATA[Openpixels]]></category>
		<category><![CDATA[Pixelart]]></category>
		<category><![CDATA[soccer]]></category>

		<guid isPermaLink="false">http://silveiraneto.net/?p=3429</guid>
		<description><![CDATA[As the big subject now is soccer world cup, the main brazilian team uniform is now available on the project. Here a example of character: Gimp source file: open_chars.xcf]]></description>
			<content:encoded><![CDATA[<p>As the big subject now is soccer world cup, the main brazilian team uniform is now available on the project.</p>
<p style="text-align: center;"><img class="size-full wp-image-3428 aligncenter" title="soccer brazil" src="http://silveiraneto.net/wp-content/uploads/2010/05/soccer_brazil.png" alt="" width="640" height="402" /></p>
<p>Here a example of character:</p>
<p style="text-align: center;"><img class="size-full wp-image-3430 aligncenter" title="brazilian_soccer_player" src="http://silveiraneto.net/wp-content/uploads/2010/05/brazilian_soccer_player.png" alt="" width="210" height="420" /></p>
<p>Gimp source file: <a href="http://silveiraneto.net/downloads/open_chars.xcf">open_chars.xcf</a></p>
]]></content:encoded>
			<wfw:commentRss>http://silveiraneto.net/2010/05/19/openpixels-%e2%80%93-chars/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Openpixels &#8211; Chars</title>
		<link>http://silveiraneto.net/2009/12/23/openpixels-chars/</link>
		<comments>http://silveiraneto.net/2009/12/23/openpixels-chars/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 20:37:55 +0000</pubDate>
		<dc:creator>Silveira</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[chars]]></category>
		<category><![CDATA[Christmas]]></category>
		<category><![CDATA[game development]]></category>
		<category><![CDATA[Openpixels]]></category>
		<category><![CDATA[pixel art]]></category>
		<category><![CDATA[Pixelart]]></category>
		<category><![CDATA[Santa Claus]]></category>
		<category><![CDATA[xmas]]></category>

		<guid isPermaLink="false">http://silveiraneto.net/?p=3077</guid>
		<description><![CDATA[Now I&#8217;m calling this set of free and open art for my and others games I draw just by Openpixels. And to celebrate this and Christmas, here&#8217;s a pixel art game style Santa Claus. I hope he bring a lot a pixels in his bag. Download: open_chars.xcf]]></description>
			<content:encoded><![CDATA[<p>Now I&#8217;m calling <a title="see them" href="http://silveiraneto.net/tag/pixelart">this set of free and open art</a> for my and others games I draw just by <strong>Openpixels</strong>. And to celebrate this and Christmas, here&#8217;s a pixel art game style Santa Claus. I hope he bring a lot a pixels in his bag.</p>
<p style="text-align: center;"><img class="size-full wp-image-3076 aligncenter" title="Santa Claus Pixel Art" src="http://silveiraneto.net/wp-content/uploads/2009/12/santa.png" alt="" width="210" height="420" /></p>
<p><strong>Download:</strong> <a href="http://silveiraneto.net/downloads/open_chars.xcf">open_chars.xcf</a></p>
]]></content:encoded>
			<wfw:commentRss>http://silveiraneto.net/2009/12/23/openpixels-chars/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

