<?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/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=graphing-in-os-x</link>
	<description>You have found the home of</description>
	<lastBuildDate>Sun, 29 Aug 2010 14:51:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</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>&lt;p&gt;the outputs look great... and I see that someone else asked about how to put data into the tool...&lt;/p&gt;

&lt;p&gt;could you provide some example code of how to use your framework?  &lt;/p&gt;

&lt;p&gt;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!)&lt;/p&gt;

&lt;p&gt;thanks&lt;/p&gt;
</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>&lt;p&gt;Hi Chad,&lt;/p&gt;

&lt;p&gt;I think i&#039;ve found the problem with the framework. The default declaration for the Curve DataSource is:
- (float)yValueForXValue:(double)x&lt;/p&gt;

&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;Still, strange that it works fine on my PPC powerbook without the change.
If you want any other details, feel free to email me.&lt;/p&gt;

&lt;p&gt;cheers,&lt;/p&gt;
</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:
- (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
- (float)yValueForXValue:(float)x
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.
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>&lt;p&gt;Hi, Are there currently any issues with using this framework on an intel mac?&lt;/p&gt;

&lt;p&gt;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.&lt;/p&gt;
</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>&lt;p&gt;I think there might be a misunderstanding here?&lt;/p&gt;

&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;

&lt;p&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&#039;s functionality.&lt;/p&gt;

&lt;p&gt;The framework is certainly capable of doing those things you mentioned... it&#039;s just that doing those things is sort of besides the point (in a demo)?&lt;/p&gt;

&lt;blockquote&gt;
But one thing is sure, it’s very nice looking and responsive!
&lt;/blockquote&gt;

&lt;p&gt;Appreciated!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I think there might be a misunderstanding here?</p>

<blockquote>
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.
</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>
But one thing is sure, it’s very nice looking and responsive!
</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>&lt;p&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;/p&gt;

&lt;p&gt;In short it seems that you did not release version 1.0 but version .2 (.5b).&lt;/p&gt;

&lt;p&gt;But one thing is sure, it&#039;s very nice looking and responsive!&lt;/p&gt;

&lt;p&gt;-John&lt;/p&gt;
</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>

<!-- Dynamic Page Served (once) in 0.208 seconds -->
