<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2142250869897821300</id><updated>2011-07-07T17:28:57.779-04:00</updated><title type='text'>wxnurbs</title><subtitle type='html'>NURBS Modeling tool based on wxWidgets</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://wxnurbs.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2142250869897821300/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://wxnurbs.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Open Source Programmer</name><uri>http://www.blogger.com/profile/06081166832182857672</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>6</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2142250869897821300.post-3209922928619005469</id><published>2008-03-23T00:23:00.000-04:00</published><updated>2008-03-22T20:32:54.593-04:00</updated><title type='text'>Overview</title><content type='html'>&lt;i&gt; What ? &lt;/i&gt;&lt;br /&gt;&lt;hr /&gt;wxNURBS has been designed for two purposes.&lt;ul&gt;&lt;li&gt;It can be an application to design NURBS (&lt;span style="font-weight: bold;"&gt;N&lt;/span&gt;on-&lt;span style="font-weight: bold;"&gt;U&lt;/span&gt;niform &lt;span style="font-weight: bold;"&gt;R&lt;/span&gt;ational &lt;span style="font-weight: bold;"&gt;B&lt;/span&gt;-Spline&lt;span style="font-weight: bold;"&gt;s&lt;/span&gt;) curves and surfaces. It is currently in its nascent stage. See this page for more features in the days to come. &lt;/li&gt;&lt;br /&gt;&lt;li&gt; It can be a NURBS library, providing an API that could be used by other applications.&lt;/li&gt;&lt;/ul&gt;&lt;i&gt;Features ? &lt;/i&gt;&lt;br /&gt;&lt;hr /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Currently 2-D Bezier curves can be rendered ( Plot control points and view them ). &lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2142250869897821300-3209922928619005469?l=wxnurbs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2142250869897821300/posts/default/3209922928619005469'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2142250869897821300/posts/default/3209922928619005469'/><link rel='alternate' type='text/html' href='http://wxnurbs.blogspot.com/2008/03/overview.html' title='Overview'/><author><name>Open Source Programmer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-2142250869897821300.post-8032582863353012582</id><published>2008-03-22T17:34:00.004-04:00</published><updated>2009-07-14T12:01:27.029-04:00</updated><title type='text'>API Usage</title><content type='html'>&lt;span style="font-style: italic;"&gt;How do I use the API to write code for dealing with Bezier curves ?&lt;/span&gt;&lt;br /&gt;&lt;pre class="brush:cpp"&gt;&lt;br /&gt;/////////////////////&lt;br /&gt;// Created On: Aug 15 2004&lt;br /&gt;//////////////////////&lt;br /&gt;&lt;br /&gt;#include &lt;cstdlib&gt;&lt;br /&gt;#include &lt;iostream&gt;&lt;br /&gt;#include "nbpoint.h"&lt;br /&gt;#include "nbbezier.h"&lt;br /&gt;&lt;br /&gt;void printTVal(NBBezier &amp; bez, double tval);&lt;br /&gt;void processBezierCurves();&lt;br /&gt;&lt;br /&gt;int main() {&lt;br /&gt;  processBezierCurves();&lt;br /&gt;  return EXIT_SUCCESS;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void processBezierCurves() {&lt;br /&gt;  NBPoint pt1(-5, 0);&lt;br /&gt;  NBPoint pt2( 0, 5);&lt;br /&gt;  NBPoint pt3(10, 0);&lt;br /&gt;&lt;br /&gt;  VPOINT controlpts;&lt;br /&gt;  controlpts.push_back( pt1 );&lt;br /&gt;  controlpts.push_back( pt2 );&lt;br /&gt;  controlpts.push_back( pt3 );&lt;br /&gt;&lt;br /&gt;  NBBezier bez(controlpts);&lt;br /&gt;  printTVal(bez, 0.25);&lt;br /&gt;  printTVal(bez, 0.75);&lt;br /&gt;  printTVal(bez, 0.99);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void printTVal(NBBezier &amp; bez, double tval) {&lt;br /&gt;  NBPoint res = bez.GetPoint(tval);&lt;br /&gt;  std::cout &lt;&lt; "t = " &lt;&lt;&gt;&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2142250869897821300-8032582863353012582?l=wxnurbs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2142250869897821300/posts/default/8032582863353012582'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2142250869897821300/posts/default/8032582863353012582'/><link rel='alternate' type='text/html' href='http://wxnurbs.blogspot.com/2008/03/api-usage.html' title='API Usage'/><author><name>Open Source Programmer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-2142250869897821300.post-2151191955755746139</id><published>2008-03-22T17:34:00.002-04:00</published><updated>2008-03-22T18:11:20.897-04:00</updated><title type='text'>ChangeLog</title><content type='html'>&lt;ul&gt;&lt;li&gt;0.12 (Aug 15 2004 ):&lt;/li&gt;&lt;ul&gt;&lt;li&gt;  Modules to check overflow errors added.&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;0.11 (July 31 2004):&lt;/li&gt;&lt;ul&gt;&lt;li&gt; API to deal with 2-D Bezier curves included.&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;0.10 (July 31 2004):&lt;/li&gt;&lt;ul&gt;&lt;li&gt;Initial Version&lt;/li&gt;&lt;li&gt;Support to draw Bezier curves&lt;/li&gt;&lt;/ul&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2142250869897821300-2151191955755746139?l=wxnurbs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2142250869897821300/posts/default/2151191955755746139'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2142250869897821300/posts/default/2151191955755746139'/><link rel='alternate' type='text/html' href='http://wxnurbs.blogspot.com/2008/03/changelog.html' title='ChangeLog'/><author><name>Open Source Programmer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-2142250869897821300.post-4140169937521991777</id><published>2008-03-22T17:33:00.001-04:00</published><updated>2008-03-22T17:59:08.323-04:00</updated><title type='text'>Build</title><content type='html'>&lt;span style="font-style: italic;"&gt;What external libraries do I need ?&lt;/span&gt;&lt;ul&gt;&lt;li&gt;wxNURBS uses wxWidgets as the windowing toolkit.&lt;br /&gt;To download wxWidgets, goto &lt;a href="http://www.wxwidgets.org"&gt;http://www.wxwidgets.org&lt;/a&gt;.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;         Important: Please get version 2.4.2 of wxWidgets for building the application&lt;/li&gt;&lt;li&gt;         Please install wxWidgets in a path that does not have spaces, say C:\Programs\wxWindows-2.4.2. For some reason,  MinGW is not very happy with spaces in the path.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt; Install MinGW from &lt;a href="http://www.mingw.org/"&gt;http://www.mingw.org&lt;/a&gt; &lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;span style="font-style: italic;"&gt;How do I build ?&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Set the environment variable WXDIR to point to the installation directory of wxWindows-2.4.2 in your system.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Invoke the following command.&lt;br /&gt;&lt;pre&gt;make -f makefile.win&lt;br /&gt;&lt;/pre&gt;&lt;/li&gt;&lt;li&gt;This would build the wxNURBS executable in the directory Debug.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2142250869897821300-4140169937521991777?l=wxnurbs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2142250869897821300/posts/default/4140169937521991777'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2142250869897821300/posts/default/4140169937521991777'/><link rel='alternate' type='text/html' href='http://wxnurbs.blogspot.com/2008/03/build.html' title='Build'/><author><name>Open Source Programmer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-2142250869897821300.post-7510198400288158170</id><published>2008-03-22T17:31:00.002-04:00</published><updated>2008-11-13T15:58:55.028-05:00</updated><title type='text'>Screenshots</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_zCRHNPjYKPk/R-V631OSLPI/AAAAAAAAAA8/1E1Dgx6ojDU/s1600-h/scr1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_zCRHNPjYKPk/R-V631OSLPI/AAAAAAAAAA8/1E1Dgx6ojDU/s320/scr1.jpg" alt="" id="BLOGGER_PHOTO_ID_5180682045958008050" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;span&gt;&lt;span style="font-family:Arial;font-size:85%;"&gt;  Screenshot of a wxNurbs Instance with a Bezier curve having 6 control points   &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2142250869897821300-7510198400288158170?l=wxnurbs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2142250869897821300/posts/default/7510198400288158170'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2142250869897821300/posts/default/7510198400288158170'/><link rel='alternate' type='text/html' href='http://wxnurbs.blogspot.com/2008/03/screenshots.html' title='Screenshots'/><author><name>Open Source Programmer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_zCRHNPjYKPk/R-V631OSLPI/AAAAAAAAAA8/1E1Dgx6ojDU/s72-c/scr1.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-2142250869897821300.post-1234675401381743990</id><published>2008-03-22T17:31:00.001-04:00</published><updated>2008-03-22T17:52:32.904-04:00</updated><title type='text'>Download</title><content type='html'>The current release is  0.12&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://sourceforge.net/project/showfiles.php?group_id=115196&amp;amp;package_id=125661&amp;amp;release_id=260814"&gt;Sources&lt;/a&gt; (30 KB).&lt;/li&gt;&lt;li&gt;&lt;a href="http://sourceforge.net/project/showfiles.php?group_id=115196&amp;amp;package_id=125662&amp;amp;release_id=260813"&gt;Binaries&lt;/a&gt; (MS Windows - 3.9 MB). &lt;/li&gt;&lt;/ul&gt;&lt;a href="http://sourceforge.net/project/showfiles.php?group_id=115196"&gt;Previous Versions.&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2142250869897821300-1234675401381743990?l=wxnurbs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2142250869897821300/posts/default/1234675401381743990'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2142250869897821300/posts/default/1234675401381743990'/><link rel='alternate' type='text/html' href='http://wxnurbs.blogspot.com/2008/03/download.html' title='Download'/><author><name>Open Source Programmer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry></feed>
