<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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>Comments on: Graphing in Cocoa</title>
	<atom:link href="http://blog.oofn.net/2005/11/23/graphing-in-os-x/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.oofn.net/2005/11/23/graphing-in-os-x/</link>
	<description>You have found the home of</description>
	<pubDate>Tue, 06 Jan 2009 23:27:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: jake</title>
		<link>http://blog.oofn.net/2005/11/23/graphing-in-os-x/comment-page-1/#comment-128789</link>
		<dc:creator>jake</dc:creator>
		<pubDate>Thu, 21 Feb 2008 20:47:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.oofn.net/?p=16#comment-128789</guid>
		<description>the outputs look great... and I see that someone else asked about how to put data into the tool...

could you provide some example code of how to use your framework?  

I am interested in passing data to the framework and having it display a graph in a cocoa gui, and then updating the graph and have it reflected in the gui real-time. (in case you were wondering!)

thanks</description>
		<content:encoded><![CDATA[<p>the outputs look great&#8230; and I see that someone else asked about how to put data into the tool&#8230;</p>
<p>could you provide some example code of how to use your framework?  </p>
<p>I am interested in passing data to the framework and having it display a graph in a cocoa gui, and then updating the graph and have it reflected in the gui real-time. (in case you were wondering!)</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brett Brooks</title>
		<link>http://blog.oofn.net/2005/11/23/graphing-in-os-x/comment-page-1/#comment-65307</link>
		<dc:creator>Brett Brooks</dc:creator>
		<pubDate>Wed, 26 Sep 2007 12:30:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.oofn.net/?p=16#comment-65307</guid>
		<description>Hi Chad,

I think i've found the problem with the framework. The default declaration for the Curve DataSource is:
- (float)yValueForXValue:(double)x

This causes problems on my intel iMac as the value being passed in is incorrect. Changing the declaration to
- (float)yValueForXValue:(float)x
So that all the values were float, has fixed the problem.

Still, strange that it works fine on my PPC powerbook without the change.
If you want any other details, feel free to email me.

cheers,</description>
		<content:encoded><![CDATA[<p>Hi Chad,</p>
<p>I think i&#8217;ve found the problem with the framework. The default declaration for the Curve DataSource is:<br />
- (float)yValueForXValue:(double)x</p>
<p>This causes problems on my intel iMac as the value being passed in is incorrect. Changing the declaration to<br />
- (float)yValueForXValue:(float)x<br />
So that all the values were float, has fixed the problem.</p>
<p>Still, strange that it works fine on my PPC powerbook without the change.<br />
If you want any other details, feel free to email me.</p>
<p>cheers,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brett Brooks</title>
		<link>http://blog.oofn.net/2005/11/23/graphing-in-os-x/comment-page-1/#comment-65065</link>
		<dc:creator>Brett Brooks</dc:creator>
		<pubDate>Wed, 26 Sep 2007 04:24:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.oofn.net/?p=16#comment-65065</guid>
		<description>Hi, Are there currently any issues with using this framework on an intel mac?

Code that runs fine on my PPC mac produces different results when run on my intel mac, specifically the graph seems to be drawn incorrectly.</description>
		<content:encoded><![CDATA[<p>Hi, Are there currently any issues with using this framework on an intel mac?</p>
<p>Code that runs fine on my PPC mac produces different results when run on my intel mac, specifically the graph seems to be drawn incorrectly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chad Weider</title>
		<link>http://blog.oofn.net/2005/11/23/graphing-in-os-x/comment-page-1/#comment-330</link>
		<dc:creator>Chad Weider</dc:creator>
		<pubDate>Mon, 06 Feb 2006 20:38:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.oofn.net/?p=16#comment-330</guid>
		<description>I think there might be a misunderstanding here?

&lt;blockquote&gt;
graphx looks nice, however there is currently now way to get any data INTO the tool. Nor does it allow entry of functions. Nor is there a way to save the output in PDF.
&lt;/blockquote&gt;

GraphX is a framework, meaning that it is designed for developers to use when building their own applications. The application included in the project is only meant to demonstrate the framework's functionality.

The framework is certainly capable of doing those things you mentioned... it's just that doing those things is sort of besides the point (in a demo)?

&lt;blockquote&gt;
But one thing is sure, it’s very nice looking and responsive!
&lt;/blockquote&gt;

Appreciated!</description>
		<content:encoded><![CDATA[<p>I think there might be a misunderstanding here?</p>
<blockquote><p>
graphx looks nice, however there is currently now way to get any data INTO the tool. Nor does it allow entry of functions. Nor is there a way to save the output in PDF.
</p></blockquote>
<p>GraphX is a framework, meaning that it is designed for developers to use when building their own applications. The application included in the project is only meant to demonstrate the framework&#8217;s functionality.</p>
<p>The framework is certainly capable of doing those things you mentioned&#8230; it&#8217;s just that doing those things is sort of besides the point (in a demo)?</p>
<blockquote><p>
But one thing is sure, it’s very nice looking and responsive!
</p></blockquote>
<p>Appreciated!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: john blommers</title>
		<link>http://blog.oofn.net/2005/11/23/graphing-in-os-x/comment-page-1/#comment-329</link>
		<dc:creator>john blommers</dc:creator>
		<pubDate>Mon, 06 Feb 2006 18:25:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.oofn.net/?p=16#comment-329</guid>
		<description>graphx looks nice, however there is currently now way to get any data INTO the tool. Nor does it allow entry of functions. Nor is there a way to save the output in PDF. 

In short it seems that you did not release version 1.0 but version .2 (.5b).

But one thing is sure, it's very nice looking and responsive!

-John</description>
		<content:encoded><![CDATA[<p>graphx looks nice, however there is currently now way to get any data INTO the tool. Nor does it allow entry of functions. Nor is there a way to save the output in PDF. </p>
<p>In short it seems that you did not release version 1.0 but version .2 (.5b).</p>
<p>But one thing is sure, it&#8217;s very nice looking and responsive!</p>
<p>-John</p>
]]></content:encoded>
	</item>
</channel>
</rss>
