How can I create a simple 2D NURBS using XAML? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-20T16:50:41Z http://stackoverflow.com/feeds/question/1456162 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1456162/how-can-i-create-a-simple-2d-nurbs-using-xaml 3 How can I create a simple 2D NURBS using XAML? Giffyguy http://stackoverflow.com/users/120888 2009-09-21T18:49:02Z 2009-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>&lt;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" /&gt; &lt;Path Stroke="Red" Stretch="Uniform"&gt; &lt;Path.Data&gt; &lt;PathGeometry&gt; &lt;PathGeometry.Figures&gt; &lt;PathFigureCollection&gt; &lt;PathFigure StartPoint="0,0"&gt; &lt;PathFigure.Segments&gt; &lt;PathSegmentCollection&gt; &lt;BezierSegment Point1="1,2" Point2="2,1" Point3="3,3" /&gt; &lt;BezierSegment Point1="4,3" Point2="5,2" Point3="6,3" /&gt; &lt;BezierSegment Point1="7,2" Point2="8,1.75" Point3="9,2.5" /&gt; &lt;/PathSegmentCollection&gt; &lt;/PathFigure.Segments&gt; &lt;/PathFigure&gt; &lt;/PathFigureCollection&gt; &lt;/PathGeometry.Figures&gt; &lt;/PathGeometry&gt; &lt;/Path.Data&gt; &lt;/Path&gt; </code></pre> http://stackoverflow.com/questions/1456162/how-can-i-create-a-simple-2d-nurbs-using-xaml/1456530#1456530 1 Answer by Shay Erlichmen for How can I create a simple 2D NURBS using XAML? Shay Erlichmen http://stackoverflow.com/users/48387 2009-09-21T20:00:48Z 2009-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>