Tagged Questions

1
vote
5answers
113 views

Calculating shortest path between 2 points on a flat map of the Earth

How do you draw the curve representing the shortest distance between 2 points on a flat map of the Earth? Of course, the line would not be a straight line because the Earth is curved. (For example, …
1
vote
3answers
63 views

Shorten a line by a number of pixels

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. In a particular scenario, I need to …
0
votes
2answers
20 views

SQL 2008 geography & geometry - which to use?

I'm creating a Google map mashup and am using SQL 2008. 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 …
3
votes
5answers
177 views

Minimising distance: distance formula

I am writing a program in C. I want to find a solution by minimizing expression D1+D2+......+Dn where Di's are distances calculated by distance formula between 2 points. The above expression is in …
4
votes
4answers
88 views

Finding the closest point from a set of points on plane

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? How …
1
vote
1answer
26 views

Evaluation of curve in Java2D

Are there methods for evaluating cubic or quadratic 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.
0
votes
2answers
102 views

circle-circle collision problem

I have a problem with circle-circle collision detection.I used the following algorithm func collision(id,other.id) { var vaP1,vaP2,dis,va1,vb1,va2,vb2,vp1,vp2,dx,dy,dt; if (id!=other.id) { …
3
votes
7answers
300 views

Count number of points inside a circle fast

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 …
2
votes
3answers
91 views

How to intelligently degrade or smooth GIS data (simplifying polygons)?

I have detailed US county maps, from the TIGER LINE 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 …
6
votes
11answers
518 views

Averaging angles… Again

I want to calculate the average of a set of angles, which represents source bearing (0 to 360 deg) - (similar to wind-direction) I know it has been discussed before (several times). The accepted …
4
votes
7answers
104 views

Programming math-based images for use in high-resolution artwork

I'm interested in creating poster-sized images that contain repeating patterns, similar to the two (public domain) images below, the Flower of Life and a Penrose tiling: My questions: How do …
52
votes
10answers
2k views

Combined area of overlapping circles

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. Example image: For two circles it's quite easy, I …
5
votes
1answer
163 views

how to extrude a path in 3d ?

Hi, 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 …
1
vote
1answer
50 views

Rotation of camera used for perspective projection

Hi, I am trying to perform a simple perspective projection of various 3D structures, defined as a plurality of 3D polygons (different z's), each comprising a plurality of points. The structure will …
0
votes
1answer
72 views

How do I draw a mysql polygon circle, and not a square?

The function below creates a polygon square out of 4 points and I assume the last 5th point closed the squar, I need it to have at least 24 points and to make up a circle. Any ideas? function …

1 2 3 4 5 23 next
15 30 50 per page