How can I create a simple 2D NURBS using XAML? - Stack Overflow most recent 30 from stackoverflow.com2010-03-20T16:50:41Zhttp://stackoverflow.com/feeds/question/1456162http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1456162/how-can-i-create-a-simple-2d-nurbs-using-xaml3How can I create a simple 2D NURBS using XAML?Giffyguyhttp://stackoverflow.com/users/1208882009-09-21T18:49:02Z2009-09-21T20:00:48Z
<p>I need to create a spline with two endpoints and 'n' control points.<br />
As far as I am aware, a Bezier curve allows for only one control point, and a Bezier spline allows for two control points. However, I need to be able to add as many control points as I see fit, not limited to one or two.</p>
<p>Here is an example of what I want to achieve, with 4 control points:<br />
(Source: <a href="http://en.wikipedia.org/wiki/NURBS" rel="nofollow">Wikipedia article on NURBS</a>)<br />
<img src="http://upload.wikimedia.org/wikipedia/commons/thumb/8/81/NURBstatic.svg/343px-NURBstatic.svg.png"/><br />
So far I've only been able to combine a series of BezierSegments together like this:<br />
<img src="http://img297.imageshack.us/img297/3706/bezierpath.png"/> </p>
<pre><code><Polyline Stroke="Green" Stretch="Uniform"
Points="0,0 1,2 2,1 3,3 4,3 5,2 6,3 7,2 8,1.75 9,2.5" />
<Path Stroke="Red" Stretch="Uniform">
<Path.Data>
<PathGeometry>
<PathGeometry.Figures>
<PathFigureCollection>
<PathFigure StartPoint="0,0">
<PathFigure.Segments>
<PathSegmentCollection>
<BezierSegment Point1="1,2" Point2="2,1" Point3="3,3" />
<BezierSegment Point1="4,3" Point2="5,2" Point3="6,3" />
<BezierSegment Point1="7,2" Point2="8,1.75" Point3="9,2.5" />
</PathSegmentCollection>
</PathFigure.Segments>
</PathFigure>
</PathFigureCollection>
</PathGeometry.Figures>
</PathGeometry>
</Path.Data>
</Path>
</code></pre>
http://stackoverflow.com/questions/1456162/how-can-i-create-a-simple-2d-nurbs-using-xaml/1456530#14565301Answer by Shay Erlichmen for How can I create a simple 2D NURBS using XAML?Shay Erlichmenhttp://stackoverflow.com/users/483872009-09-21T20:00:48Z2009-09-21T20:00:48Z<p>Not out of the box but take a look at <a href="http://stackoverflow.com/questions/1027350/visualize-b-spline-in-net">this previous</a> question it will point you to how to draw NURBS using c#, you can then turn the code into something then implements <a href="http://msdn.microsoft.com/en-us/library/system.windows.media.pathsegment.aspx" rel="nofollow">PathSegment</a> to used it under WPF. </p>