active questions tagged geometry - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T09:05:15Z http://stackoverflow.com/feeds/tag/geometry http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1933693/how-to-find-the-x-y-coordinates-of-a-rotated-vector 0 How to find the x,y coordinates of a rotated vector TimDog 2009-12-19T18:07:59Z 2009-12-19T18:20:20Z <p>Hi all, I found the best way of calculating the width and height of the bounding box of a vector post-rotation from a different stack overflow post. This worked great. My problem now is calculating the new x,y coordinates of the rotated vector's bounding box. Here is the my javascript. The <code>newWidth, newHeight</code> variables are correct -- the <code>rotatedXPos, rotatedYPos</code> are not correct, however, and it's because <code>x0, y0</code> -- which I think should be the rotating middle of the vector -- are also incorrect (They're set to just the x,y coordinates of the upper-right/left of the vector, which I know is wrong).</p> <pre><code>this.options.rotationAngle = parseInt(this.options.lastRotationAngle); var degreesAsRadians = this.options.rotationAngle*Math.PI/180; var points = new Array(); points.push({x:0, y:0}); points.push({x:this.options.width, y:0}); points.push({x:0, y:this.options.height}); points.push({x:this.options.width, y:this.options.height}); var bb = new Array(); bb['left'] = 0; bb['right'] = 0; bb['top'] = 0; bb['bottom'] = 0; $A(points).each(function(p) { var newX = Math.abs(parseInt(p.x * Math.cos(degreesAsRadians) + p.y * Math.sin(degreesAsRadians))); var newY = Math.abs(parseInt(p.x * Math.sin(degreesAsRadians) + p.y * Math.cos(degreesAsRadians))); bb['left'] = Math.min(bb['left'], newX); bb['right'] = Math.max(bb['right'], newX); bb['top'] = Math.min(bb['top'], newY); bb['bottom'] = Math.max(bb['bottom'], newY); }); var newWidth = parseInt(Math.abs(bb['right'] - bb['left'])); var newHeight = parseInt(Math.abs(bb['bottom'] - bb['top'])); Object.extend(this.options, { rotatedWidth: newWidth ,rotatedHeight: newHeight }); var x0 = this.options.xPos; var y0 = this.options.yPos; this.options.rotatedXPos = x0+(this.options.xPos-x0)*Math.cos(degreesAsRadians)+(this.options.yPos-y0)*Math.sin(degreesAsRadians); this.options.rotatedYPos = y0-(this.options.xPos-x0)*Math.sin(degreesAsRadians)+(this.options.yPos-y0)*Math.cos(degreesAsRadians); </code></pre> <p><a href="http://screencast.com/t/MjAxNzZhN" rel="nofollow">And here is a video.</a> In the video, the red box shows the newWidth, newHeight correctly, but the <code>rotatedXPos</code>, and <code>rotatedYPos</code> are not being calculated at the top/left of the newly rotated vector. I'd love any help, thanks much!</p> http://stackoverflow.com/questions/1813719/intersection-between-bezier-curve-and-a-line-segment 3 Intersection between bezier curve and a line segment Arkadiy 2009-11-28T20:34:11Z 2009-12-19T12:38:02Z <p>I am writing a game in Python (with pygame) that requires me to generate random but nice-looking "sea" for each new game. After a long search I settled on an algorithm that involves Bezier curves as defined in <a href="http://www.pygame.org/project-Pygame+Advance+Graphics+Library-660-.html" rel="nofollow">padlib.py</a>. I now need to figure out when the curves generated by padlib intersect a line segment.</p> <p>The brute force method would be to just use the set of approximating line segments produced by padlib to find the answer. However, I suspect that a better answer can be found analytically. I only have a few dozen spline segments - searching them should be faster than thousand of line segments.</p> <p>A little search took me down this road: Bezier Curve -> <a href="http://en.wikipedia.org/wiki/Kochanek%E2%80%93Bartels%5Fspline" rel="nofollow">Kochanek-Bartels Spline</a> -> <a href="http://en.wikipedia.org/wiki/Cubic%5FHermite%5Fspline" rel="nofollow">Cubic Hermite spline</a></p> <p>On the last page, I found this function:</p> <p>p(t) = h00(t)p0 + h10(t)m0 + h01(t)p1 + h11(t)m1</p> <p>where p(t) is a actually a point (2-dimensional vector), hij(t) functions are cubic polynomials, p0, p1 and m1, m1 I can get from padlib code (they are also points).</p> <p>Now, I can see that the solution to my problem is p(t) = u + v * t1, where u and v are the end of my line segment.</p> <p>However, working out the analytical solution is beyond me. Does anyone here know of an existing solution? Or can help me with solving the equations?</p> http://stackoverflow.com/questions/584290/looking-for-a-radial-coordinates-description-of-gear-teeth 0 Looking for a radial coordinates description of gear teeth. unknown (yahoo) 2009-02-25T00:31:46Z 2009-12-17T02:12:24Z <p>I don't need a physically accurate function, but something that hints at the involute curves, etc. I was just using <code>r = 2 + sin^2</code>, which gets the idea across, but it looks like - ahem. Googling around, you can find plenty of information on how to draft a 'correct' gear, but nothing in the way of a bare-bones approximation.</p> <p>EDIT: The 'look' that I'm after: <a href="http://www.cartertools.com/involute.html" rel="nofollow">http://www.cartertools.com/involute.html</a></p> http://stackoverflow.com/questions/1878194/chain-of-connected-points-and-rotation-matrices 0 Chain of connected points and rotation matrices floatingpoint 2009-12-10T01:54:38Z 2009-12-16T15:40:24Z <p>Thanks for looking at this. I apologize for this rather lengthy build-up but I thought it is needed to clarify things.</p> <p>I have a chain of connected atoms, say a polymer which has rigid bonds and bond angles. With rigid bonds we get the condition that the distance between two immediate neighbours [eg. 2-3,3-4,etc.] is always fixed and the bond angles [defined using 3 atoms, eg. 1-2-3] are always maintained. We do have freedom to rotate around the torsion angles. The atoms are defined with respect to each previous atom by this length, angle and the torsion angle and that basically allows us to find the Cartesian coordinates by setting up a coordinate system. Now, if we want to align a pair of atoms which are not directly connected to the base atoms with respect to which the new orientations are supplied can we find a rotation matrix that can do the job? </p> <p>For example, imagine that we have 10 atoms and we want to define a new set of internal coordinates between atoms 1,2 and 9,10. The locations in space of atoms 9 and 10 have been found using the internal coordinates specified by atoms 6, 7 and 8. [Distance 8-9, angle 7-8-9 and the torsion angle 6-7-8-9 and similarly for atom 10]</p> <p>Now if we decide to reorient atoms 9 and 10 by defining a distance as 2-9 and the angle 1-2-9 and the dihedral angle 1-2-9-10, is there a way to find a rotation/transformation matrix that will perform this realignment without disturbing the geometry of the rest of the atoms [that is it will preserve the angle 7-8-9, distance 8-9 and dihedral 6-7-8-9].</p> <p>Thanks a lot in advance for any advice.</p> http://stackoverflow.com/questions/530396/how-to-draw-a-perspective-correct-grid-in-2d 2 How to draw a perspective correct grid in 2D Neil N 2009-02-09T22:41:03Z 2009-12-16T05:33:21Z <p>I have an application that defines a real world rectangle on an image, of course in 2D it may not be a rectangle because you are looking at it from an angle.</p> <p>The problem is, say that the rectangle needs to have grid lines drawn on it, for example it is 5x5 so I need to draw 4 lines from side 1 to side 3, and 4 lines from side 2 to side 4.</p> <p>As of right now I am breaking up each line into equidistant parts, to get the start and end point of all the grid lines. However the more of an angle the rectangle is on, the more "incorrect" these lines become, as horizontal lines further from you should be closer together.</p> <p>Does anyone know the name of the algorithm that I should be searching for?</p> <p><strong>Yes I know you can do this in 3D, however I am limited to 2D for this particular application.</strong></p> http://stackoverflow.com/questions/1868115/calculating-shortest-path-between-2-points-on-a-flat-map-of-the-earth 2 Calculating shortest path between 2 points on a flat map of the Earth helloworlder 2009-12-08T16:28:47Z 2009-12-16T03:42:31Z <p>How do you draw the curve representing the shortest distance between 2 points on a flat map of the Earth?</p> <p>Of course, the line would not be a straight line because the Earth is curved. (For example, the shortest distance between 2 airports is curved.)</p> <p>EDIT: THanks for all the answers guys - sorry I was slow to choose solution :/</p> http://stackoverflow.com/questions/1896788/bezier-curve-compute-point-from-one-axis 0 Bézier curve compute point from one axis Vlg 2009-12-13T15:16:07Z 2009-12-14T14:33:21Z <p>I have a Cubic Bézier curve. But I have a problem when I need only one point. I have only value from the X-axis and want to find a value that coresponds to Y-axis to that point. Or find the t step, from it I can easely calculate the Y-axis.</p> <p>Any clue how to do it? Or is there any formula to do this?</p> http://stackoverflow.com/questions/1887224/how-to-merge-two-dynamically-created-objects-overlapping-each-other 1 How to merge two dynamically created objects overlapping each other? subho100 2009-12-11T10:38:50Z 2009-12-14T07:21:14Z <p>Hi,</p> <p>Please find my code below. I tried this but didn't succeed. Any help?</p> <pre><code>Path e1 = new Path(); Path e2 = new Path(); e1.Data = new EllipseGeometry(new Rect(new Size(100, 100))); e1.RenderTransform = new TranslateTransform(100, 100); e1.Fill = Brushes.Transparent; e1.Stroke = Brushes.Black; e2.Data = new EllipseGeometry(new Rect(new Size(120, 120))); e2.RenderTransform = new TranslateTransform(140, 140); e2.Fill = Brushes.Transparent; e2.Stroke = Brushes.Black; Path p = new Path(); CombinedGeometry c1 = new CombinedGeometry(); Geometry g1 = e1.Data.Clone(); Geometry g2 = e2.Data.Clone(); c1.GeometryCombineMode = GeometryCombineMode.Union; p.Stroke = Brushes.Black; p.StrokeThickness = 1; p.Data = c1; canvasMain.Children.Add(p); </code></pre> <p>Regards / subho100</p> http://stackoverflow.com/questions/244235/how-to-create-a-wpf-shape-editor 3 How to create a WPF Shape Editor ? Pop Catalin 2008-10-28T18:06:10Z 2009-12-14T06:10:20Z <p>I'm trying to create a WPF Shape (PolyLine) editor, which is a control that I want to use to, edit shapes in a canvas.</p> <p>What the editor needs to do is to be able to display the points and lines of the shape and to move those around.</p> <p>Can anyone provide me with a idea of how I can accomplish this, or a starting point? I haven't found anything related to how I could do this, so far.</p> http://stackoverflow.com/questions/1373593/two-sets-of-3d-points 0 two sets of 3d points Philippo 2009-09-03T14:05:28Z 2009-12-13T19:36:29Z <p>Hi everybody,</p> <p>I´ve got a question concerning two sets of points in a 3d space. I defined a volume by 40 coordinates in one cartesian coordinate system, in another coordinate system with different (0,0,0) i have s slightly different volume also defined by 40 coordinates. I know the matching pairs of the point sets and I want to measure the difference of each point pair (euclidian distance). Now 1) how can i reference both coordinate systems (same scale) to each other and 2) how would i best calculate the transformation to register both volumes? </p> <p>Thank you for your help.</p> http://stackoverflow.com/questions/1137690/smallest-set-of-rectangles-describing-a-set-of-integer-points 0 Smallest set of rectangles describing a set of integer points Chris 2009-07-16T13:42:10Z 2009-12-13T19:11:24Z <p>Given a set of N-dimensional integer points how do I find the smallest set of N-dimensional cuboids (rectangles in the 2-d case), such that an integer point is in the set of integer points if and only if it's contained in one or more of the cuboids/rectangles. Integer point means a point with integer coordinates.</p> <p>e.g. given the points (1,0), (2, 0) and (3,1), (4,1) the smallest set of rectangles is (1,0-2,0),(3,1-4,1), see diagram below:</p> <pre>2 ..... 1 ...## 0 .##.. 01234</pre> <p>Obviously I could do a brute force search, but I'm looking for a more efficient algorithm, even if it still has high complexity.</p> http://stackoverflow.com/questions/1302257/algorithm-for-spread-out-2d-point-distribution 4 Algorithm for spread-out 2D point distribution alankdkd 2009-08-19T19:51:18Z 2009-12-13T14:32:00Z <p>In a 2D pixel array, I need an efficient algorithm that will select p% of pixels that are the most spread out.</p> <p>This can be done adaptively by selecting points, then repeatedly adjusting the positions of points that are too close together. But this isn't efficient since it would require many iterations and distance calculations.</p> <p>It doesn't have to be perfect, it just needs to avoid point clusters as much as can be done efficiently.</p> http://stackoverflow.com/questions/1831541/library-data-structure-to-store-convex-polygon-with-holes 1 Library / Data Structure to store convex polygon with holes Chris 2009-12-02T08:48:50Z 2009-12-12T10:23:58Z <p>I need to create a map of a building. The area is a convex polygon that has several non-overlapping convex holes. As a simplification, the area can also be expressed as a rectangle. The holes can also be modelled as rectangles.</p> <p>I first tried to handle it with GEOS, a C++ library that comes with a low level C API. But it seemed that GEOS is not able to handle the amount of requests.</p> <p>What is the best data structure to handle the map? Perhaps a quadtree? Is there any ready-to-use library (beyond academical proof-of-concept state)? The library should be C only (not C++).</p> http://stackoverflow.com/questions/1887036/how-do-you-find-a-co-ordinates-of-a-given-perpendicular-from-point-x1-y1 -1 How do you find a co-ordinates of a given perpendicular from point (x1 , y1) naveen 2009-12-11T10:04:29Z 2009-12-11T23:37:59Z <p>I have a polygon which can be regular as well as irregular one. I have to do offsetting/buffering of polygon. I need to stretch the polygon by some amount of offset. The shape should be maintained.</p> http://stackoverflow.com/questions/1667310/combined-area-of-overlapping-circles 52 Combined area of overlapping circles Anton Hansson 2009-11-03T13:22:02Z 2009-12-11T22:45:03Z <p>I recently came across a problem where I had four circles (midpoints and radius) and had to calculate the area of the union of these circles.</p> <p>Example image:</p> <p><img src="http://img204.imageshack.us/img204/1707/many.png" /></p> <p>For two circles it's quite easy,</p> <p><img src="http://img39.imageshack.us/img39/862/twov.png" /></p> <p>I can just calculate the fraction of the each circles area that is not within the triangles and then calculate the area of the triangles.</p> <p>But is there a clever algorithm I can use when there is more than two circles?</p> http://stackoverflow.com/questions/1874846/persisting-a-valid-geometry-shape-into-sql-server-2008-geography-column 0 Persisting a valid Geometry shape into Sql Server 2008 Geography column James Allen 2009-12-09T15:56:24Z 2009-12-11T08:05:48Z <p>I am using Spatial.NHibernate to save some geometry shapes to a Geography column in Sql Server 2008. Here is my mapping:</p> <pre><code>public class AreaMapping : ClassMap&lt;Area&gt; { public AreaMapping() { Id(c =&gt; c.Id).GeneratedBy.HiLo(100.ToString()); Map(c =&gt; c.Name).Not.Nullable(); Map(x =&gt; x.Boundary) .CustomTypeIs&lt;MsSql2008GeographyType&gt;() .Not.Nullable() .CustomSqlTypeIs("GEOGRAPHY"); } } </code></pre> <p>The mapping appears to be valid. Here is the class:</p> <pre><code>public class Area { public virtual Guid Id { get; set; } public virtual Polygon Boundary { get; set; } public virtual string Name { get; set; } } </code></pre> <p>However when I go to save an area like this:</p> <pre><code>Area area = new Area{ Boundary = new Polygon(new LinearRing(new ICoordinate[]{ new Coordinate(-1.911524, 55.136334), new Coordinate(-1.912679, 55.136293), new Coordinate(-1.912689, 55.136178), new Coordinate(-1.911507, 55.136194), new Coordinate(-1.911524, 55.136334)})) Session.Save(area); </code></pre> <p>I get the following error:</p> <blockquote> <p>The specified input does not represent a valid geography instance.</p> <p>Type: System.ArgumentException Source: Microsoft.SqlServer.Types TargetSite: Microsoft.SqlServer.Types.SqlGeography ConstructGeographyFromUserInput(Microsoft.SqlServer.Types.GeoData, Int32) ...etc.</p> </blockquote> <p>I understand that a valid Polygon for a geography type must be plotted anti-clockwise, and it must be closed, and it must not overlap itself. I'm pretty sure I'm fulfilling all these restrictions (although please correct me if I'm wrong) so I'm a bit stumped here. Either there is something wrong with my polygon, or NHibernate is not persisting it correctly - any help welcome!</p> <p><strong>Edit</strong> Okay I'm confused now.</p> <p>To simplify things, I changed my polygon to this:</p> <pre><code>Area area = new Area{ Boundary = new Polygon(new LinearRing(new ICoordinate[]{ new Coordinate(10,15), new Coordinate(10,5), new Coordinate(20,5), new Coordinate(20,15), new Coordinate(10,15)})) </code></pre> <p>I get the same</p> <blockquote> <p>The specified input does not represent a valid geography instance.</p> </blockquote> <p>Note that the polygon is plotted <strong>anti-clockwise</strong> (<a href="http://chandrush.blogspot.com/2009/01/polygons-in-sql-server.html" rel="nofollow">as it should be according to various sources</a>). But if I change my coordinates to clockwise:</p> <pre><code>Area area = new Area{ Boundary = new Polygon(new LinearRing(new ICoordinate[]{ new Coordinate(10,15), new Coordinate(20,15), new Coordinate(20,5), new Coordinate(10,5), new Coordinate(10,15)})) </code></pre> <p>It seems to be okay. So is clockwise valid or what?</p> http://stackoverflow.com/questions/1882051/how-can-i-implement-a-look-at-behavior-in-3d-space 1 How can I implement a "Look At" behavior in 3D space Mexican Seafood 2009-12-10T16:09:00Z 2009-12-10T20:34:27Z <p>I am trying to implement a "Look At" behavior for planes moving around a sphere so they always face the camera.</p> <p>What I figured out so far, I know the normal that the plane should have and I know that its rotation around its local Z axis should always be 0. I thought it was a pretty trivial operation to figure out the missing rotation values (X, Y) but so far, I found nothing.</p> <p>So in short : How can I extract orientation information of a plane using its normal and one rotation value?</p> <p>Or, if anyone has a better solution than using the normal, it would be welcome.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1880696/what-am-i-doing-here -1 What am I doing here? [closed] Philipo 2009-12-10T12:33:35Z 2009-12-10T12:47:16Z <p>What am I actually doing with a set of 3d points (e.g. n=40) when subtracting the COM (center of mass) from each coordinate? It´s a translation to the origin I guess. Has it a special name in maths, does it do a rotation to my point cloud, too? What if I do it with two different point clouds, is it a kind of matching? I know these are basics, but that's what I am lacking.</p> http://stackoverflow.com/questions/401847/circle-rectangle-collision-detection-intersection 5 Circle-Rectangle collision detection (intersection) aib 2008-12-30T23:35:02Z 2009-12-10T07:30:04Z <p>How can I tell whether a circle and a rectangle intersect in 2D Euclidean space? (i.e. classic 2D geometry)</p> http://stackoverflow.com/questions/1878907/the-smallest-difference-between-2-angles 0 The smallest difference between 2 Angles Tom J Nowell 2009-12-10T06:01:33Z 2009-12-10T06:09:27Z <p>Given 2 angles in the range -PI -> PI around a coordinate, what is the value of the smallest of the 2 angles between them?</p> <p>Taking into account that the difference between PI and -PI is not 2 PI but zero</p> http://stackoverflow.com/questions/1859604/minimising-distance-distance-formula 3 Minimising distance: distance formula nowonder 2009-12-07T12:06:09Z 2009-12-09T17:37:41Z <p>I am writing a program in C. I want to find a solution by minimizing expression</p> <pre><code>D1+D2+......+Dn </code></pre> <p>where Di's are distances calculated by distance formula between 2 points. The above expression is in x &amp; y variables</p> <p>Now I will differentiate this expression and find the solution. My doubt is:</p> <p>since in the above expression, all Di's will occur as square roots which will be difficult to solve. So instead we can solve for this expression:</p> <pre><code>D1^2 + D2^2 + ......+ Dn^2 </code></pre> <p>Will the answer produced by the above expression will be same as that would have been produced by solving the original one? </p> <p>I have checked for simple test cases such as n=2. It produces the correct answer. Is it true in general?</p> <p><strong>If not, how this problem can be solved?</strong></p> http://stackoverflow.com/questions/1867905/sql-2008-geography-geometry-which-to-use 1 SQL 2008 geography & geometry - which to use? Mr. Flibble 2009-12-08T15:59:38Z 2009-12-08T16:46:00Z <p>I'm creating a Google map mashup and am using SQL 2008.</p> <p>I will have a large number of points on the earth and will want to perform various calculations on them in SQL - such as selecting all points contained within a particular polygone, or select all points within 10km of XY.</p> <p>I have never used and SQL spatial features before. Should I use the <code>geography</code> or the <code>geometry</code> datatype for this?</p> http://stackoverflow.com/questions/1866903/shorten-a-line-by-a-number-of-pixels 1 Shorten a line by a number of pixels Bernhof 2009-12-08T13:15:19Z 2009-12-08T15:09:33Z <p>I'm drawing a custom diagram of business objects using .NET GDI+. Among other things, the diagram consists of several lines that are connecting the objects.</p> <p>In a particular scenario, I need to shorten a line by a specific number of pixels, let's say 10 pixels, i.e. find the point on the line that lies 10 pixels before the end point of the line.</p> <p>Imagine a circle with radius <em>r</em> = 10 pixels, and a line with start point (x1, y1) and end point (x2, y2). The circle is centered at the end point of the line, as in the following illustration.</p> <p><img src="http://i45.tinypic.com/140b5w5.gif" alt="Illustration"></p> <p>How do I calculate the point marked with a red circle, i.e. the intersection between circle and line? This would give me the new end point of the line, shortening it by 10 pixels.</p> <p><hr></p> <h2>Solution</h2> <p>Thank you for your answers from which I was able to put together the following procedure. I named it LengthenLine, since I find it more natural to pass a negative number of pixels if I want the line shortened.</p> <p>Specifically, I was trying to put together a function that could draw a line with rounded corners, which can be found <a href="http://stackoverflow.com/questions/1805582/net-gdi-drawing-lines-with-rounded-corners">here</a>.</p> <pre><code>public void LengthenLine(PointF startPoint, ref PointF endPoint, float pixelCount) { if (startPoint.Equals(endPoint)) return; // not a line double dx = endPoint.X - startPoint.X; double dy = endPoint.Y - startPoint.Y; if (dx == 0) { // vertical line: if (endPoint.Y &lt; startPoint.Y) endPoint.Y -= pixelCount; else endPoint.Y += pixelCount; } else if (dy == 0) { // horizontal line: if (endPoint.X &lt; startPoint.X) endPoint.X -= pixelCount; else endPoint.X += pixelCount; } else { // non-horizontal, non-vertical line: double length = Math.Sqrt(dx * dx + dy * dy); double scale = (length + pixelCount) / length; dx *= scale; dy *= scale; endPoint.X = startPoint.X + Convert.ToSingle(dx); endPoint.Y = startPoint.Y + Convert.ToSingle(dy); } } </code></pre> http://stackoverflow.com/questions/1860687/evaluation-of-curve-in-java2d 1 Evaluation of curve in Java2D Torsten Marek 2009-12-07T15:26:24Z 2009-12-07T15:58:22Z <p>Are there methods for evaluating <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/awt/geom/CubicCurve2D.html" rel="nofollow">cubic</a> or <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/awt/geom/QuadCurve2D.html" rel="nofollow">quadratic</a> Java2D curves at a given time t? I know the algorithm is simple, but I would suspect that there is a method for that already in Java.</p> http://stackoverflow.com/questions/1858665/finding-the-closest-point-from-a-set-of-points-on-plane 4 Finding the closest point from a set of points on plane nowonder 2009-12-07T08:42:07Z 2009-12-07T13:10:22Z <p>Given n points on a 2-D plane, what is the point such that the distance from all the points is minimized? This point need not be from the set of points given. Is it centroid or something else? </p> <p>How to find all such points(if more than one) with an algorithm?</p> http://stackoverflow.com/questions/1857938/circle-circle-collision-problem 0 circle-circle collision problem russell 2009-12-07T05:12:59Z 2009-12-07T08:58:04Z <p>I have a problem with circle-circle collision detection.I used the following algorithm</p> <pre><code>func collision(id,other.id) { var vaP1,vaP2,dis,va1,vb1,va2,vb2,vp1,vp2,dx,dy,dt; if (id!=other.id) { dx=other.x-x; dy=other.y-y; dis=sqrt(sqr(dx)+sqr(dy)); if dis&lt;=radius+other.radius { //normalize dx/=dis; dy/=dis; //calculate the component of velocity in the direction vp1=hspeed*dx+vspeed*dy; vp2=other.hspeed*dx+other.vspeed*dy; if (vp1-vp2)!=0 { dt=(radius+other.radius-dis)/(vp1-vp2); //move the balls back so they just touch x-=hspeed*dt; y-=vspeed*dt; other.x-=other.hspeed*dt; other.y-=other.vspeed*dt; //projection of the velocities in these axes va1=(hspeed*dx+vspeed*dy); vb1=(vspeed*dx-hspeed*dy); va2=(other.hspeed*dx+other.vspeed*dy); vb2=(other.vspeed*dx-other.hspeed*dy); //new velocities in these axes. take into account the mass of each ball. vaP1=(va1+bounce*(va2-va1))/(1+mass/other.mass); vaP2=(va2+other.bounce*(va1-va2))/(1+other.mass/mass); hspeed=vaP1*dx-vb1*dy; vspeed=vaP1*dy+vb1*dx; other.hspeed=vaP2*dx-vb2*dy; other.vspeed=vaP2*dy+vb2*dx; //we moved the balls back in time, so we need to move them forward x+=hspeed*dt; y+=vspeed*dt; other.x+=other.hspeed*dt; other.y+=other.vspeed*dt; } } } x=ball 1 x-position y=ball 1 y-position other.x= ball 2 x position other.y=ball 2 y position </code></pre> <p>this algorithm works well when i have a ball image of 40 x 40 pixel and ball center is (20,20) means image consists only ball.But the problem arises when image size is 80 x 80.and ball center position is (60,60),means ball is lower right corner with radius 20. in this case there are multiple collision occur,means the portion<code></p> <pre>x+=hspeed*dt; y+=vspeed*dt; other.x+=other.hspeed*dt; other.y+=other.vspeed*dt; </code></pre> <p>unable to seperate the ball /velocity does not change according to collision. I have changed the value of x which is the center of image 40,40 to 60,60 center of ball adding 20.but the result is same .Can any one tell me what is the problem.I think algorithm is correct because it works nicely in all other case and lots of people used this algorithm.problem is changing position from image center to ball center.what correction should i do for this??? or any idea.if someone want to help plz give me e-mail address so that i can send my full project.</p> http://stackoverflow.com/questions/611274/flex-actionscript-dynamically-adding-text-along-an-arc 0 Flex/Actionscript: Dynamically adding text along an arc bkildow 2009-03-04T16:13:15Z 2009-12-05T17:00:04Z <p>I am trying to create an area in my Flex application where a user can type in text and it will appear along a curve or an arc. The curve/arc should be able to be adjusted by the user as well. </p> <p>Does anyone have any code examples or pointers on how I can achieve this in Flex 3/Actionscript 3?</p> http://stackoverflow.com/questions/1849928/how-to-intelligently-degrade-or-smooth-gis-data-simplifying-polygons 2 How to intelligently degrade or smooth GIS data (simplifying polygons)? bvmou 2009-12-04T21:59:44Z 2009-12-05T09:25:30Z <p>I have detailed US county maps, from the <a href="http://www.census.gov/geo/www/tiger/" rel="nofollow">TIGER LINE</a> data sets. How might I sample, smooth, or degrade the data so that I get straighter, more boxy, less "noisy" shapes to represent the geographical features -- in this case just county boundaries and state lines, but maybe also in the general case? </p> <p>The sampling could happen at rendering time if that can be done efficiently, or a parallel data set could be generated and stored. I am using <a href="http://postgis.refractions.net/" rel="nofollow">PostGIS</a>, and the lines are multi-polylines generated by <code>shp2pgsql</code> -- but any solution where you take a squiggly line and reduce it to a smoother line of roughly the same significance to a human interpreter would be very useful.</p> http://stackoverflow.com/questions/1847310/count-number-of-points-inside-a-circle-fast 3 Count number of points inside a circle fast asker 2009-12-04T14:32:50Z 2009-12-05T03:51:52Z <p>Given a set of n points on plane, I want to preprocess these points somehow faster than O(n^2) (O(nlog(n)) preferably), and then be able to answer on queries of the following kind "How many of n points lie inside a circle with given center and radius?" faster than O(n) (O(log(n) preferably). </p> <p>Can you suggest some data structure or algorithm I can use for this problem?</p> <p>I know that such types of problems are often solved using Voronoi diagrams, but I don't know how to apply it here.</p> http://stackoverflow.com/questions/1817397/how-to-extrude-a-path-in-3d 6 how to extrude a path in 3d ? George Profenza 2009-11-30T01:03:56Z 2009-12-04T16:45:55Z <p>Hi,</p> <p>I'm trying to extrude a path in 3d. Nothing fancy yet, just following some points and using a regular polygon for 'tubing'. I'm using Processing for now to quickly prototype, but will later turn the code into OpenGL.</p> <p>My problem is rotating the 'joints' at the right angles. I think I have a rough idea how to get the angles, not sure.</p> <p>I've started from a sample by Simon Greenwold(Processing > File > Examples > 3D > Form > Vertices).Here's my attempt so far:</p> <p><strong>UPDATE > REFACTORED/SIMPLIFIED CODE</strong></p> <pre><code>Here is the main sketch code: int pointsNum = 10; Extrusion star; int zoom = 0; void setup() { size(500, 500, P3D); PVector[] points = new PVector[pointsNum+1]; for(int i = 0 ; i &lt;= pointsNum ; i++){ float angle = TWO_PI/pointsNum * i; if(i % 2 == 0) points[i] = new PVector(cos(angle) * 100,sin(angle) * 100,0); else points[i] = new PVector(cos(angle) * 50,sin(angle) * 50,0); } star = new Extrusion(10,10,points,3); } void draw() { background(0); lights(); translate(width / 2, height / 2,zoom); rotateY(map(mouseX, 0, width, 0, PI)); rotateX(map(mouseY, 0, height, 0, PI)); rotateZ(-HALF_PI); noStroke(); fill(255, 255, 255); translate(0, -40, 0); star.draw(); } void keyPressed(){ if(key == 'a') zoom += 5; if(key == 's') zoom -= 5; } </code></pre> <p>And here is the Extrusion class:</p> <p>import processing.core.PMatrix3D;</p> <pre><code>class Extrusion{ float topRadius,bottomRadius,tall,sides; int pointsNum; PVector[] points; Extrusion(){} Extrusion(float topRadius, float bottomRadius, PVector[] points, int sides) { this.topRadius = topRadius; this.bottomRadius = bottomRadius; this.points = points; this.pointsNum = points.length; this.sides = sides; } void draw() { if(pointsNum &gt;= 2){ float angle = 0; float angleIncrement = TWO_PI / sides; //begin draw segments between caps angle = 0; for(int i = 1; i &lt; pointsNum ; ++i){ beginShape(QUAD_STRIP); for(int j = 0; j &lt; sides + 1; j++){ vertex(points[i-1].x + cos(angle) * topRadius, points[i-1].y, points[i-1].z + sin(angle) * topRadius); vertex(points[i].x + cos(angle) * bottomRadius, points[i].y, points[i].z + sin(angle) * bottomRadius); angle += angleIncrement; } endShape(); } //begin draw segments between caps }else println("Not enough points: " + pointsNum); } } </code></pre> <p><strong>UPDATE</strong></p> <p>Here is how my sketch looks like:</p> <p><img src="http://doc.gold.ac.uk/~ma802gp/extrude.gif" alt="processing extrude"></p> <p>The problem is the joints aren't at the right angle, so the extrude looks wrong. This isn't a very good example, as this could be achieved with a lathe. If I can get a lathe to work with an arbitrary set of points and an axis that will be great. I am using extrusion because I am trying to create geometric bodies based on the art of Liviu Stoicoviciu.</p> <p>Here are some samples:</p> <p><img src="http://doc.gold.ac.uk/~ma802gp/star%5Fpainting.jpg" alt="star painting"></p> <p><img src="http://doc.gold.ac.uk/~ma802gp/star%5Fpaper%5Fsculpture.jpg" alt="star paper sculpture"></p> <p><img src="http://doc.gold.ac.uk/~ma802gp/triangles%5Fpencil.jpg" alt="triangles"></p> <p>Sorry about the poor quality.</p> <p>As you can see in the triangles image, that would be achieved with extrusions.</p> <p><strong>UPDATE</strong></p> <p>Here's my attempt to use drhirsch's help in the draw method:</p> <pre><code>void draw() { if(pointsNum &gt;= 2){ float angle = 0; float angleIncrement = TWO_PI / sides; //begin draw segments between caps angle = 0; for(int i = 1; i &lt; pointsNum ; ++i){ beginShape(QUAD_STRIP); for(int j = 0; j &lt; sides + 1; j++){ PVector s = new PVector(0,0,1); PVector cn = new PVector(); points[i].normalize(cn); PVector r = s.cross(cn); float a = acos(s.dot(cn)); PMatrix3D rot = new PMatrix3D(1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1); rot.rotate(a,r.x,r.y,r.z); PVector rotVec = new PVector(); rot.mult(points[i],rotVec); rotVec.add(new PVector(cos(angle) * topRadius,0,sin(angle) * topRadius)); vertex(points[i-1].x + cos(angle) * topRadius, points[i-1].y, points[i-1].z + sin(angle) * topRadius); vertex(rotVec.x,rotVec.y,rotVec.y); //vertex(points[i-1].x + cos(angle) * topRadius, points[i-1].y, points[i-1].z + sin(angle) * topRadius); //vertex(points[i].x + cos(angle) * bottomRadius, points[i].y, points[i].z + sin(angle) * bottomRadius); angle += angleIncrement; } endShape(); } //begin draw segments between caps }else println("Not enough points: " + pointsNum); } </code></pre> <p>I've refactored the code so now the class that used to be called CShape is called Extrude, the code is less and hopefully simples, and I use an array of PVector objects instead of a Vector of PVector objects which might be confusing.</p> <p>Here is my yet another attempt with some escher-esque results:</p> <p><em>upated draw</em></p> <pre><code>void draw() { if(pointsNum &gt;= 2){ float angle = 0; float angleIncrement = TWO_PI / sides; //begin draw segments between caps angle = 0; for(int i = 1; i &lt; pointsNum ; ++i){ beginShape(QUAD_STRIP); float angleBetweenNextAndPrevious = 0.0; if(i &lt; pointsNum - 1) angleBetweenNextAndPrevious = PVector.angleBetween(points[i],points[i+1]); for(int j = 0; j &lt; sides + 1; j++){ PVector s = new PVector(0,0,1); PVector s2 = new PVector(0,0,1); PVector cn = new PVector(); PVector cn2 = new PVector(); points[i-1].normalize(cn); points[i].normalize(cn); PVector r = s.cross(cn); PVector r2 = s.cross(cn2); PMatrix3D rot = new PMatrix3D(1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1); PMatrix3D rot2 = new PMatrix3D(1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1); rot.rotate(angleBetweenNextAndPrevious,r.x,r.y,r.z); rot2.rotate(angleBetweenNextAndPrevious,r2.x,r2.y,r2.z); PVector rotVec = new PVector(); rot.mult(points[i-1],rotVec); rotVec.add(new PVector(cos(angle) * topRadius,0,sin(angle) * topRadius)); PVector rotVec2 = new PVector(); rot2.mult(points[i],rotVec2); rotVec2.add(new PVector(cos(angle) * topRadius,0,sin(angle) * topRadius)); vertex(rotVec.x,rotVec.y,rotVec.z); vertex(rotVec2.x,rotVec2.y,rotVec2.z); //vertex(points[i-1].x + cos(angle) * topRadius, points[i-1].y, points[i-1].z + sin(angle) * topRadius); //vertex(points[i].x + cos(angle) * bottomRadius, points[i].y, points[i].z + sin(angle) * bottomRadius); angle += angleIncrement; } endShape(); } //begin draw segments between caps }else println("Not enough points: " + pointsNum); } } </code></pre> <p><img src="http://doc.gold.ac.uk/~ma802gp/extrude2.gif" alt="fix_test"></p> <p>Edit by drhirsch This should work:</p> <pre><code>void draw() { if(pointsNum &gt;= 2){ float angle = 0; float angleIncrement = TWO_PI / sides; //begin draw segments between caps angle = 0; for(int i = 1; i &lt; pointsNum ; ++i){ beginShape(QUAD_STRIP); float angleBetweenNextAndPrevious = 0.0; if(i &lt; pointsNum - 1) angleBetweenNextAndPrevious = PVector.angleBetween(points[i],points[i+1]); PVector s = new PVector(0,0,1); PVector s2 = new PVector(0,0,1); PVector cn = new PVector(); PVector cn2 = new PVector(); points[i-1].normalize(cn); points[i].normalize(cn2); PVector r = s.cross(cn); PVector r2 = s.cross(cn2); PMatrix3D rot = new PMatrix3D(1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1); PMatrix3D rot2 = new PMatrix3D(1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1); rot.rotate(angleBetweenNextAndPrevious,r.x,r.y,r.z); rot2.rotate(angleBetweenNextAndPrevious,r2.x,r2.y,r2.z); PVector rotVec = new PVector(); PVector rotVec2 = new PVector(); for(int j = 0; j &lt; sides + 1; j++){ // I am still not sure about this. Should the shape be in the xy plane // if the extrusion is mainly along the z axis? If the shape is now in // the xz plane, you need to use (0,1,0) as normal vector of the shape // (this would be s and s2 above, don't use the short names I have // used, sorry) PVector shape = new PVector(cos(angle) * topRadius,0,sin(angle) * topRadius); rot.mult(shape, rotVec); rot2.mult(shape,rotVec2); rotVec.add(points[i-1]); rotVec2.add(points[i]); vertex(rotVec.x,rotVec.y,rotVec.z); vertex(rotVec2.x,rotVec2.y,rotVec2.z); //vertex(points[i-1].x + cos(angle) * topRadius, points[i-1].y, points[i-1].z + sin(angle) * topRadius); //vertex(points[i].x + cos(angle) * bottomRadius, points[i].y, points[i].z + sin(angle) * bottomRadius); angle += angleIncrement; } endShape(); } //begin draw segments between caps }else println("Not enough points: " + pointsNum); } } </code></pre> <p>UPDATE</p> <p>Here is a simple illustration of my problem:</p> <p><img src="http://doc.gold.ac.uk/~ma802gp/description.gif" alt="description"></p> <p>The blue path is equivalent to the points[] PVector array in my code, if pointsNum = 6. The red path is what I'm struggling to solve, the green path is what I want to achieve.</p> <p><strong>UPDATE</strong></p> <p>Some minor issues with the order of vertices I think. Here are some print screens using 6 points and no (if/else % 2) star condition.</p> <p><img src="http://doc.gold.ac.uk/~ma802gp/points1.gif" alt="points1"></p> <p><img src="http://doc.gold.ac.uk/~ma802gp/points2.gif" alt="alt text"></p>