active questions tagged bezier - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T21:01:33Z http://stackoverflow.com/feeds/tag/bezier http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1790862/how-to-determine-endpoints-of-arcs-in-graphicspath-pathpoints-and-pathtypes-array 0 How to determine endpoints of Arcs in GraphicsPath PathPoints and PathTypes arrays? Tim Cochran 2009-11-24T15:39:27Z 2009-11-24T15:39:27Z <p>I have the following PathPoints and PathTypes arrays (format: X, Y, Type):</p> <pre><code>-177.477900, 11021.670000, 1 -614.447200, 11091.820000, 3 -1039.798000, 10842.280000, 3 -1191.761000, 10426.620000, 3 -1591.569000, 10493.590000, 3 -1969.963000, 10223.770000, 3 -2036.929000, 9823.960000, 3 -2055.820000, 9711.180000, 3 -2048.098000, 9595.546000, 3 -2014.380000, 9486.278000, 3 </code></pre> <p>Here is what this GraphicsPath physically looks like. The 2 Arcs are very distinguishable: <img src="http://i45.tinypic.com/2agj1gl.jpg" alt="alt text" title="2 Arcs"></p> <p>I know that this GraphicsPath.PathData array was created by 2 AddArc commands. Stepping through the code in the debugger, I saw that the first 4 PathData values were added by the first AddArc command, and the remaining 6 points were added by the 2nd AddArc command. </p> <p>By examining the raw pathpoints/pathtype arrays (without previously knowing that it was 2 AddArc commands so I would know that I have 2 start and end points), I would like to determine to start and end point of each arc.</p> <p>I have tried several Bezier calculations to 'recreate' the points in the array, but am at a loss to determine how to determine the separate start and end points. It appears that GDI+ is combining the start/end point between the arcs (they are the same point and the arcs are connected), and I am losing the fact that one arc is ending and other one is starting.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1763779/making-a-smooth-path-from-an-irregular-number-of-x-y-points-to-simulate-handwriti 3 Making a smooth path from an irregular number of x,y points to simulate handwriting yizzreel 2009-11-19T14:46:04Z 2009-11-20T16:49:31Z <p>Hi all</p> <p>I am trying to make a 'brush' tool in AS3 (pure, not Flex) which simulates handwriting, making strokes to be smooth instead of cornered. Then, the trace must be reduced to cubic bezier curves which can be dragged and deformed, affecting the previously drawn path (like the illustrator's pen tool).</p> <p>I'm tracking the mouse movement to get a set of points to draw the path. As far as I know, I need to do a B-Spline path using that set of points. Then I should reduce it to cubic bezier curves (adding the the 'pen tool' functionality to the path).</p> <p>I have already developed the pen tool, using an algorithm which reduces Cubic Beziers to Quadratic Beziers (and then using the Flash curveTo function). But I have no idea how to create a B-Spline (or another simplification), an then reduce it to Bezier curves.</p> <p>Do you know any way to accomplish this?</p> http://stackoverflow.com/questions/1768060/bezier-timed-animation-path 0 Bezier timed animation path gatapia 2009-11-20T03:02:33Z 2009-11-20T06:06:29Z <p>Hi,</p> <p>I'm trying to define a path of points. Each point has an x, y, and time. I then want to query this path and get the current position at that point in time. Let me share some pseudo code.</p> <pre><code>point {x, y, time} function initialisePath(point[] path) { ... // Create Bezier Path } function getXYAtTime(time) { return ... // Get interpolated point along the bezier path at the specified time } </code></pre> <p>I'm trying to implement this in javascript using the canvas tag. However a sample in any language will do. Does anyone know any open source library (in any language) that creates this kind of queriable path??</p> <p>Note: I've been trying to get my head around this sample and code from the <a href="http://dynapi.sourceforge.net/releases/dynapi-3.0.0-beta2/examples/dynapi.fx.bezier.html" rel="nofollow">DynApi project</a> but moving from this sample to a time aware path is a stretch for my poor animational skills.</p> <p>Thanks</p> <p>Guido</p> http://stackoverflow.com/questions/1654027/cartesian-non-parametric-form-of-bezier-curves 0 Cartesian (non parametric) form of Bezier curves Crimson 2009-10-31T10:44:01Z 2009-10-31T11:17:30Z <p>Hi Guys,</p> <p>I needed to find and use the coordinates of the intersection of a cubic Bezier and a straight line. The trouble is that I cannot find a non-parametric representation of a Bezier curve which I need for solving with the line.</p> <p>I do not want to resort to a Newton-Raphson equivalent on the Bezier parametric equation (which can be found <a href="http://en.wikipedia.org/wiki/B%C3%A9zier%5Fcurve" rel="nofollow">here</a>)</p> http://stackoverflow.com/questions/999549/finding-min-max-of-quadratic-bezier-with-coregraphics 1 Finding min/max of quadratic bezier with CoreGraphics unscene 2009-06-16T04:20:27Z 2009-10-01T05:14:39Z <p>I am using CoreGraphics to draw a quadratic bezier but want to computer the min/max value of the curve. I am not from a mathematical background so this has become a bit troublesome. Does anyone have any articles or ideas about how to solve this?</p> 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 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/1164755/algorithm-to-trace-sequential-points-into-bezier-curves 3 Algorithm to "trace" sequential points into bezier curves Jeremy Rudd 2009-07-22T11:53:25Z 2009-07-22T13:31:24Z <p>I have a sequential collection of points in X,Y and I'd like to "trace" these into a set of bezier curves. Could any open source bitmap to vector tracing algorithm or library be used for this?</p> http://stackoverflow.com/questions/1084641/how-can-i-find-the-angle-between-two-points-on-a-bezier-curve 2 How can I find the angle between two points on a bezier curve? NeatRobot 2009-07-05T19:02:21Z 2009-07-13T19:41:42Z <p>In my current OpenGL project I am trying to make the links of a chain hug the contours of a Bezier curve. How can I find the angle between two points on the curve so that I can position the links of the chain so that they follow the curve.</p> <p><a href="http://i42.tinypic.com/qxujiu.jpg" rel="nofollow">Here</a> is a picture of the curve and chain, I need some way of rotating the links so that they follow the curve.</p> <p>Does anybody here know how to do this?</p> http://stackoverflow.com/questions/404861/calculation-of-cubic-bezier-with-known-halfway-point 4 Calculation of cubic Bézier with known halfway point Loci 2009-01-01T11:05:02Z 2009-07-07T20:33:46Z <p>I know:</p> <ul> <li><p>The control points a and d (start and end point of a 2D cubic bezier curve)</p></li> <li><p>The slopes a->b, c->d, and b->c (b,c the other control points)</p></li> <li><p>Where the halfway point of the <a href="http://en.wikipedia.org/wiki/B%C3%A9zier_curve" rel="nofollow">Bézier curve</a> is.</p></li> </ul> <p>Now, given this information, what is the formula for the positions of control points b and c ?</p> http://stackoverflow.com/questions/1088833/wpf-animation-animating-bezier-curve-points 1 WPF Animation - Animating Bezier curve points C Smith 2009-07-06T19:34:52Z 2009-07-06T19:34:52Z <p>I'm working on a project that involves drawing curved paths between two objects. Currently, I've been writing some test code to play around with bezier curves and animation. The first test is simply to move the endpoint (Point3) from the origin object (a rectangle) to the destination object (another rectangle), in a straight line. here is the code which sets up the actual line:</p> <pre><code> connector = new Path(); connector.Stroke = Brushes.Red; connector.StrokeThickness = 3; PathGeometry connectorGeometry = new PathGeometry(); PathFigure connectorPoints = new PathFigure(); connectorCurve = new BezierSegment(); connectorPoints.StartPoint = new Point((double)_rect1.GetValue(Canvas.LeftProperty) + _rect1.Width / 2, (double)_rect1.GetValue(Canvas.TopProperty) + _rect1.Height / 2); connectorCurve.Point1 = connectorPoints.StartPoint; connectorCurve.Point2 = connectorPoints.StartPoint; connectorCurve.Point3 = connectorPoints.StartPoint; connectorPoints.Segments.Add(connectorCurve); connectorGeometry.Figures.Add(connectorPoints); connector.Data = connectorGeometry; MainCanvas.Children.Add(connector); </code></pre> <p>OK, so we now have a line collapsed to a point. Now, lets animate that line, going from _rect1 to _rect2 (the two objects at the endpoints):</p> <pre><code> PointAnimation pointAnim = new PointAnimation(); pointAnim.From = connectorCurve.Point3; pointAnim.To = new Point((double)_rect2.GetValue(Canvas.LeftProperty) + _rect2.Width / 2, (double)_rect2.GetValue(Canvas.TopProperty) + _rect2.Height / 2); pointAnim.Duration = new Duration(TimeSpan.FromSeconds(5)); board.Children.Add(pointAnim); </code></pre> <p>Works beautifully. However, when I try to do it with a storyboard, I get nothing. Here's the storyboarded code:</p> <pre><code> Storyboard board = new Storyboard(); PointAnimation pointAnim = new PointAnimation(); pointAnim.From = connectorCurve.Point3; pointAnim.To = new Point((double)_rect2.GetValue(Canvas.LeftProperty) + _rect2.Width / 2, (double)_rect2.GetValue(Canvas.TopProperty) + _rect2.Height / 2); pointAnim.Duration = new Duration(TimeSpan.FromSeconds(5)); Storyboard.SetTarget(pointAnim, connectorCurve); Storyboard.SetTargetProperty(pointAnim, new PropertyPath(BezierSegment.Point3Property)); board.Children.Add(pointAnim); board.Begin(); </code></pre> <p>Nothing moves. I'm suspecting there is a problem with what I'm feeding SetTarget or SetTargetProperty, but can't seem to figure it out. Does anyone have experience with animating line / bezier points in WPF?</p> http://stackoverflow.com/questions/1061633/position-spheres-along-a-bezier-curve 1 position spheres along a bezier curve NeatRobot 2009-06-30T03:49:42Z 2009-06-30T06:00:55Z <p>I am trying a couple of tutorials from <a href="http://nehe.gamedev.net" rel="nofollow">http://nehe.gamedev.net</a>, in order to learn openGL programming, I would like to position spheres along a Bezier curve such that they appear as a string of pearls. how can I position such spheres along the curve. I am drawing the curve using de Casteljau's algorithm and hence can get the XYZ points on the curve.</p> http://stackoverflow.com/questions/1016149/converting-pixels-to-bezier-curves-in-actionscript-3 0 Converting Pixels to Bezier Curves in Actionscript 3 Jesse 2009-06-19T02:47:44Z 2009-06-27T16:25:29Z <p>Ok, so I'll try to be as descriptive as possible.</p> <p>I'm working on a project for a client that requires a jibjab-style masking feature of an uploaded image.</p> <p>I would like to be able to generate a database-storable object that contains anchor/control positions of a bezier shape, so I can pull it out later and re-mask the object. This all is pretty easy to do, except for one catch : I need to create the bezier object from a user-drawn outline.</p> <p>So far, here's how I imagine the process going:</p> <p>on mouse down, create a new sprite, beginFill, and moveTo mouse position.</p> <p>on mouse move, lineTo an XY coordinate.</p> <p>on mouse up, endFill.</p> <p>This all works just great. I could just store the info here, but I would be looking at a GIGANTIC object full of tons of pretty useless x/y coordinates, and no way to really make fine-tuning changes outside of putting handles on every pixel. (I may as well give the end user a pencil tool...)</p> <p>Here's what I'm thinking as far as bezier curve calculation goes : </p> <p>1: Figure out when I need to start a new curve, and track the xy of the pixel on this interval. I'm imagining this being just a pixel count, maybe just increment a count variable per mouse move and make a new one every x pixels. The issue here is some curves would be inaccurate, and others unnecessary, but I really just need a general area, not an exact representation, so it could work. I'd be happier with something a little smarter though.</p> <p>2: take each new x/y, store it as an anchor, and figure out where a control would go to make the line curve between this and the last anchor. this is where I get really hung up. I'm sure someone has done this in flash, but no amount of googling can seem to help me out with the way to get this done. I've done a lot of sketching and what little math I can wrap my brain around, but can't seem to figure out a way of converting pixels to beziers.</p> <p>Is this possible? All I really need is something that will get close to the same shape. I'm thinking about maybe only placing anchors when the angle of the next pixel is beyond 180 degrees in relation to the current line or something, and just grabbing the edge of the arc between these changes, but no matter how hard I try, I can't seem to figure out how to get this working!</p> <p>Thanks for your help, I'll be sure to post my progress here as I go, I think this could be really useful in many applications, as long as it's actually feasible...</p> <p>Jesse</p> http://stackoverflow.com/questions/986571/how-many-points-for-a-spline 3 How many points for a spline Xelluloid 2009-06-12T13:12:47Z 2009-06-17T04:00:35Z <p>H community,</p> <p>I wanted to ask if there is an algorithm for choosing the optimal amount of support points for creating a bezier spline in order to make it look smooth and reduce the error. If there is such an algorithm how fast is the algorithm?</p> <p>Thanks in advance</p> <p>Sebastian</p> http://stackoverflow.com/questions/920687/position-of-a-point-relative-to-a-bezier-curve 4 Position of a point relative to a Bezier curve Ionel Bratianu 2009-05-28T12:55:36Z 2009-05-29T08:21:16Z <p>I have a Bezier curve specified by 4 points. I need to know if a point is on the left side or right side of the Bezier curve. Can you suggest me an algorithm?</p> <p><em>Edit:</em> I'm sure that <em>the way I generate</em> the Bezier curve would not form loops.</p> <p><em>Later edit</em> I realized that my initial problem could be solved without using relative position. When I posted this question I was thinking that there is a mathematical formula for relative position similarly with checking if a point is in the interior of a circle. It seems that this is not possible. So I will accept the answer which will suggest a time efficient solution.</p> http://stackoverflow.com/questions/724219/how-to-convert-a-3d-point-into-2d-perspective-projection 0 How to convert a 3D point into 2D perspective projection? Zachary 2009-04-07T05:23:05Z 2009-05-16T02:10:33Z <p>I am currently working with using Bezier curves and surfaces to draw the famous Utah teapot. Using Bezier patches of 16 control points, I have been able to draw the teapot and display it using a 'world to camera' function which gives the ability to rotate the resulting teapot, and am currently using an orthographic projection.</p> <p>The result is that I have a 'flat' teapot, which is expected as the purpose of an orthographic projection is to preserve parallel lines.</p> <p>However, I would like to use a perspective projection to give the teapot depth. My question is, how does one take the 3D xyz vertex returned from the 'world to camera' function, and convert this into a 2D coordinate. I am wanting to use the projection plane at z=0, and allow the user to determine the focal length and image size using the arrow keys on the keyboard.</p> <p>I am programming this in java and have all of the input event handler set up, and have also written a matrix class which handles basic matrix multiplication. I've been reading through wikipedia and other resources for a while, but I can't quite get a handle on how one performs this transformation. </p> <p>-Thanks</p> http://stackoverflow.com/questions/10477/equidistant-points-across-bezier-curves 2 Equidistant points across Bezier curves Cristián Romo 2008-08-13T23:31:32Z 2009-05-12T22:23:58Z <p>Currently, I'm attempting to make multiple beziers have equidistant points. I'm currently using cubic interpolation to find the points, but because the way beziers work some areas are more dense than others and proving gross for texture mapping because of the variable distance. <strong>Is there a way to find points on a bezier by distance rather than by percentage? Furthermore, is it possible to extend this to multiple connected curves?</strong></p> http://stackoverflow.com/questions/764415/approximating-bezier-curves-of-degree-n 2 Approximating Bezier Curves of Degree N mawaldne 2009-04-18T22:58:00Z 2009-05-12T22:17:36Z <p>I know there are methods to <a href="http://stackoverflow.com/questions/427796/approximating-nonparametric-cubic-bezier">approximate cubic Bezier curves</a> (<a href="http://www.timotheegroleau.com/Flash/articles/cubic%5Fbezier%5Fin%5Fflash.htm" rel="nofollow">this page</a> was also a good reference), but is there a quicker method to approximate a bezier curve of degree N? Or can you only use the generalization below?</p> <p>From wikipedia:</p> <p>The Bézier curve of degree n can be generalized as follows. Given points P0, P1,..., Pn, the Bézier curve is:</p> <p><img src="http://upload.wikimedia.org/math/e/e/5/ee540a45155c347d28adddfcb0486b42.png" alt="alt text" /></p> http://stackoverflow.com/questions/408457/outline-of-cubic-bezier-curve-stroke 0 Outline of cubic bezier curve stroke Loci 2009-01-03T01:48:40Z 2009-05-11T13:17:48Z <p>By stroke of the cubic bezier curve I mean rendering a curve 'A' with a specific line width 'w'.</p> <p>How can I derive other cubic bezier curves that describe the outline of the stroke of bezier 'A' ?</p> http://stackoverflow.com/questions/574732/calculate-the-horizon-of-a-curved-face-not-extrema 4 Calculate the horizon of a curved face? - Not extrema Jeremy Rudd 2009-02-22T11:03:20Z 2009-02-22T12:39:41Z <p>I need to find the 2 points of the <em>visual horizon</em>, of a curved face.</p> <p>I have:</p> <ul> <li>XYZ of the 4 corner points</li> <li>XYZ of the 2 curved edge bezier points</li> </ul> <p>And I need to calculate either:</p> <ul> <li>XY of the 2 horizon points</li> <li>XYZ of the 2 horizon points</li> </ul> <p><hr /></p> <p><strong>Note:</strong> I got a solution the <a href="http://stackoverflow.com/questions/573416/calculate-the-horizon-of-a-curved-face">last time</a> I asked this question, but it only found the <em>extrema</em> of the curves, not the <em>horizon points</em>, which changes based on the position and rotation of both curves in respect to each other.</p> <p>See the updated <a href="http://www.freeimagehosting.net/uploads/03cfe4f070.png" rel="nofollow">image</a> below.</p> <p><img src="http://www.freeimagehosting.net/uploads/03cfe4f070.png" alt="alt text" /></p> http://stackoverflow.com/questions/573522/convert-a-quadratic-curve-points-to-polynomial-representation 2 Convert a quadratic curve points to polynomial representation? Jeremy Rudd 2009-02-21T18:36:42Z 2009-02-21T18:46:04Z <p>I have the X,Y of 2 <em>end</em> points and 1 <em>bezier</em> point, of a <em>Quadratic Bezier</em> curve.</p> <p>Using this data, how can I derive the <em>polynomial representation</em> of the curve?</p> <p><img src="http://www.euclidraw.com/Eng_fls/EUC_htmls/Bezier_fls/quad.gif" alt="alt text" /></p> http://stackoverflow.com/questions/573416/calculate-the-horizon-of-a-curved-face 2 Calculate the horizon of a curved face? Jeremy Rudd 2009-02-21T17:20:30Z 2009-02-21T18:43:21Z <p>I need to find the 2 points of the <em>visual horizon</em>, of a curved face.</p> <p>I have:</p> <ul> <li>XYZ of the 4 corner points</li> <li>XYZ of the 2 curved edge bezier points</li> </ul> <p>And I need to calculate either:</p> <ul> <li>XY of the horizon points</li> <li>XYZ of the horizon points</li> </ul> <p>See the <a href="http://www.freeimagehosting.net/uploads/81b677d5a8.png" rel="nofollow">image</a> below.</p> <p><img src="http://www.freeimagehosting.net/uploads/81b677d5a8.png" alt="alt text" /></p> http://stackoverflow.com/questions/263305/drawing-a-topographical-map 15 Drawing a Topographical Map benjismith 2008-11-04T20:25:30Z 2009-01-21T05:05:23Z <p>I've been working on a visualization project for 2-dimensional continuous data. It's the kind of thing you could use to study elevation data or temperature patterns on a 2D map. At its core, it's really a way of flattening 3-dimensions into two-dimensions-plus-color. In my particular field of study, I'm not actually working with geographical elevation data, but it's a good metaphor, so I'll stick with it throughout this post.</p> <p>Anyhow, at this point, I have a "continuous color" renderer that I'm very pleased with:</p> <p><img src="http://img389.imageshack.us/img389/7399/fieldprecisecontinuouswe5.png" alt="Continuous Color Renderer" /></p> <p>The gradient is the standard color-wheel, where red pixels indicate coordinates with high values, and violet pixels indicate low values.</p> <p>The underlying data structure uses some very clever (if I do say so myself) interpolation algorithms to enable arbitrarily deep zooming into the details of the map.</p> <p>At this point, I want to draw some topographical contour lines (using quadratic bezier curves), but I haven't been able to find any good literature describing efficient algorithms for finding those curves.</p> <p>To give you an idea for what I'm thinking about, here's a poor-man's implementation (where the renderer just uses a black RGB value whenever it encounters a pixel that intersects a contour line):</p> <p><img src="http://img389.imageshack.us/img389/8725/fieldprecisetopovh1.png" alt="Continuous Color with Ghetto Topo Lines" /></p> <p>There are several problems with this approach, though:</p> <ul> <li><p>Areas of the graph with a steeper slope result in thinner (and often broken) topo lines. Ideally, all topo lines should be continuous.</p></li> <li><p>Areas of the graph with a flatter slope result in wider topo lines (and often entire regions of blackness, especially at the outer perimeter of the rendering region).</p></li> </ul> <p>So I'm looking at a vector-drawing approach for getting those nice, perfect 1-pixel-thick curves. The basic structure of the algorithm will have to include these steps:</p> <ol> <li><p>At each discreet elevation where I want to draw a topo line, find a set of coordinates where the elevation at that coordinate is extremely close (given an arbitrary epsilon value) to the desired elevation.</p></li> <li><p>Eliminate redundant points. For example, if three points are in a perfectly-straight line, then the center point is redundant, since it can be eliminated without changing the shape of the curve. Likewise, with bezier curves, it is often possible to eliminate cetain anchor points by adjusting the position of adjacent control points.</p></li> <li><p>Assemble the remaining points into a sequence, such that each segment between two points approximates an elevation-neutral trajectory, and such that no two line segments ever cross paths. Each point-sequence must either create a closed polygon, or must intersect the bounding box of the rendering region.</p></li> <li><p>For each vertex, find a pair of control points such that the resultant curve exhibits a minimum error, with respect to the redundant points eliminated in step #2.</p></li> <li><p>Ensure that all features of the topography visible at the current rendering scale are represented by appropriate topo lines. For example, if the data contains a spike with high altitude, but with extremely small diameter, the topo lines should still be drawn. Vertical features should only be ignored if their feature diameter is smaller than the overall rendering granularity of the image.</p></li> </ol> <p>But even under those constraints, I can still think of several different heuristics for finding the lines:</p> <ul> <li><p>Find the high-point within the rendering bounding-box. From that high point, travel downhill along several different trajectories. Any time the traversal line crossest an elevation threshold, add that point to an elevation-specific bucket. When the traversal path reaches a local minimum, change course and travel uphill.</p></li> <li><p>Perform a high-resolution traversal along the rectangular bounding-box of the rendering region. At each elevation threshold (and at inflection points, wherever the slope reverses direction), add those points to an elevation-specific bucket. After finishing the boundary traversal, start tracing inward from the boundary points in those buckets.</p></li> <li><p>Scan the entire rendering region, taking an elevation measurement at a sparse regular interval. For each measurement, use it's proximity to an elevation threshold as a mechanism to decide whether or not to take an interpolated measurement of its neighbors. Using this technique would provide better guarantees of coverage across the whole rendering region, but it'd be difficult to assemble the resultant points into a sensible order for constructing paths.</p></li> </ul> <p>So, those are some of my thoughts...</p> <p>Before diving deep into an implementation, I wanted to see whether anyone else on StackOverflow has experience with this sort of problem and could provide pointers for an accurate and efficient implementation.</p> <p>Thanks!</p> <p><hr /></p> <p>ON EDIT:</p> <p>I'm especially interested in the "Gradient" suggestion made by ellisbben. And my core data structure (ignoring some of the optimizing interpolation shortcuts) can be represented as the summation of a set of 2D gaussian functions, which is totally differentiable.</p> <p>I suppose I'll need a data structure to represent a three-dimensional slope, and a function for calculating that slope vector for at arbitrary point. Off the top of my head, I don't know how to do that (though it seems like it ought to be easy), but if you have a link explaining the math, I'd be much obliged!</p> <p><hr /></p> <p>UPDATE:</p> <p>Thanks to the excellent contributions by ellisbben and Azim, I can now calculate the contour angle for any arbitrary point in the field. Drawing the real topo lines will follow shortly! Thanks, you guys!!!</p> <p>Here are updated renderings, with and without the ghetto raster-based topo-renderer that I've been using. Each image includes a thousand random sample points, represented by red dots. The angle-of-contour at that point is represented by a white line. In certain cases, no slope could be measured at the given point (based on the granularity of interpolation), so the red dot occurs without a corresponding angle-of-contour line.</p> <p>Enjoy!!!!!</p> <p><em>(NOTE: These renderings use a different surface topography than the previous renderings -- since I randomly generate the data structures on each iteration, while I'm prototyping -- but the core rendering method is the same, so I'm sure you get the idea.)</em></p> <p><img src="http://img118.imageshack.us/img118/5011/fieldcolorcontinuoussloap0.png" alt="alt text" /></p> <p><img src="http://img223.imageshack.us/img223/2091/fieldcolortoposlopesampvz6.png" alt="alt text" /></p> <p>Here's a fun fact: over on the right-hand-side of these renderings, you'll see a bunch of weird contour lines at perfect horizontal and vertical angles. These are artifacts of the interpolation process, which uses a grid of interpolators to reduce the number of computations (by about 500%) necessary to perform the core rendering operations. All of those weird contour lines occur on the boundary between two interpolator grid cells.</p> <p>Luckily, those artifacts don't actually matter. Although the artifacts are detectable during slope calculation, the final renderer won't notice them, since it operates at a different bit depth.</p> <p><hr /></p> <p>UPDATE AGAIN:</p> <p>Aaaaaaaand, as one final indulgence before I go to sleep, here's another pair of renderings, one in the old-school "continuous color" style, and one with 20,000 gradient samples. In this set of renderings, I've eliminated the red dot for point-samples, since it unnecessarily clutters the image.</p> <p>Here, you can really see those interpolation artifacts that I referred to earlier, thanks to the grid-structure of the interpolator collection. I should emphasize that those artifacts will be completely invisible on the final contour rendering (since the difference in magnitude between any two adjacent interpolator cells is less than the bit depth of the rendered image).</p> <p>Bon appetit!!</p> <p><img src="http://img291.imageshack.us/img291/2104/massiveslopecontinuoushn1.png" alt="alt text" /></p> <p><img src="http://img291.imageshack.us/img291/4068/massiveslopetopofh2.png" alt="alt text" /></p> http://stackoverflow.com/questions/449449/fast-method-to-intersect-two-integer-quadratic-beziers 1 Fast Method to Intersect two Integer Quadratic Beziers? starmole 2009-01-16T03:51:41Z 2009-01-16T04:10:39Z <p>Given two Quadratic Beziers in 2D with integer coordinates, what is the best way to find their intersection point(s)? Also interesting is an early rejection if they do not intersect. If it makes it easier, they can both be assumed to be monotone in both x and y. Only intersections that are representable by subdivision to integers of the input curves are valid. </p> http://stackoverflow.com/questions/427796/approximating-nonparametric-cubic-bezier 3 Approximating nonparametric cubic Bezier jtxx000 2009-01-09T11:45:38Z 2009-01-15T16:59:04Z <p>What is the best way to approximate a cubic Bezier curve? Ideally I would want a function y(x) which would give the exact y value for any given x, but this would involve solving a cubic equation for every x value, which is too slow for my needs, and there may be numerical stability issues as well with this approach.</p> <p>Would <a href="http://antigrain.com/research/adaptive_bezier/index.html" rel="nofollow">this</a> be a good solution?</p> http://stackoverflow.com/questions/109364/bezier-clipping 2 Bezier clipping jjrv 2008-09-20T20:56:31Z 2009-01-10T18:54:23Z <p>I'm trying to find/make an algorithm to compute the intersection (a new filled object) of two arbitrary filled 2D objects. The objects are defined using either lines or cubic beziers and may have holes or self-intersect. I'm aware of several existing algorithms doing the same with polygons, <a href="http://www.complex-a5.ru/polyboolean/comp.html" rel="nofollow">listed here</a>. However, I'd like to support beziers without subdividing them into polygons, and the output should have roughly the same control points as the input in areas where there are no intersections.</p> <p>This is for an interactive program to do some CSG but the clipping doesn't need to be real-time. I've searched for a while but haven't found good starting points.</p> http://stackoverflow.com/questions/246525/how-can-i-draw-a-bezier-curve-using-pythons-pil 1 How can I draw a bezier curve using Python's PIL? carrier 2008-10-29T11:59:08Z 2008-10-29T14:56:18Z <p>I'm using Python's Imaging Library and I would like to draw some bezier curves. I guess I could calculate pixel by pixel but I'm hoping there is something simpler.</p> http://stackoverflow.com/questions/107598/point-sequence-interpolation 8 Point Sequence Interpolation Nick Retallack 2008-09-20T08:13:44Z 2008-09-26T19:51:41Z <p>Given an arbitrary sequence of points in space, how would you produce a smooth continuous interpolation between them?</p> <p>2D and 3D solutions are welcome. Solutions that produce a list of points at arbitrary granularity and solutions that produce control points for bezier curves are also appreciated.</p> <p>Also, it would be cool to see an iterative solution that could approximate early sections of the curve as it received the points, so you could draw with it.</p>