2
votes
2answers
98 views
What kind of cool graphics algorithms can I implement in an about box?
I'm going to program a fancy (animated) about-box for an app I'm working on. Since this is where programmers are often allowed to shine and play with code, I'm eager to find out what kind of cool …
0
votes
2answers
28 views
C# Calculate n Number of Points along a Great Circle path between Two Latitude/Longitude points
Hello, I am plotting flight paths between Airports that I have Latitude and Longitude values for onto a Google Map (v3 of the API).
However unlike v2, v3 does not seem to have an option to put a …
0
votes
1answer
12 views
as2 tweening and consistent speeds
I'm tweening a movieclip from startX to finishX. The value of startX varies but finishX is a constant. But as the startX increases in value the animation appears to be quicker. How do I adjust the …
0
votes
2answers
31 views
Simple Math max function in MySQL
How to find the maximum of two explicit values in MySQL? Something like MAXIMUM(1, @foo).
There are group functions like MAX, MIN, AVG, etc that take column name as an argument and work with result …
2
votes
3answers
93 views
Collision Detection between Accelerating Spheres
I am writing a physics engine/simulator which incorporates 3D space flight, planetary/stellar gravitation, ship thrust and relativistic effects. So far, it is going very well, however, one thing that …
2
votes
5answers
152 views
How can I turn a floating point number into the closest fraction represented by a byte numerator and denominator?
How can I write an algorithm that given a floating point number, and attempts to represent is as accurately as possible using a numerator and a denominator, both restricted to the range of a Java …
1
vote
4answers
62 views
What math methods are implemented in fpu hardware with .net?
Does anyone know what math methods are implemnted by the hardware of the processor for .net? For example, I have an algorithm that makes a lot of use of atan. I can easily write a lookup table for …
-1
votes
0answers
94 views
How to crack a quiz ? [closed]
What is the best way to find which answer was right or wrong in a quiz ? Example there are total 100 question, 10 question will be asked each time(choose random from 100) each question has 4 answers, …
0
votes
2answers
52 views
Least squares optimal scaling
Hi,
I have two waveforms which are linked by a numerical factor. I need to use optimal scaling (least squares) between the two waveforms to calculate this factor in Matlab. Unfortunately I have no …
1
vote
7answers
90 views
Subtraction - Order of Evaluation
Is it standard across all languages for the following to yield the value 3?
Print(6 - 2 - 1)
In other words, are there any languages that will evaluate " 2 - 1 " before " 6 - 2 "?
I'd like to make …
0
votes
1answer
56 views
Chain of connected points and rotation matrices
Thanks for looking at this. I apologize for this rather lengthy build-up but I thought it is needed to clarify things.
I have a chain of connected atoms, say a polymer which has rigid bonds and bond …
0
votes
3answers
81 views
Modulo for doubles
I need to work out if a massive integer (I mean 20 digits...) is prime.
I'm trying to use the brute-force method, but (of course) I need to use doubles to contain the original number. However, the …
3
votes
7answers
647 views
Counting combinations of pairs of items from multiple lists without repetition
Given a scenario where we have multiple lists of pairs of items, for example:
{12,13,14,23,24}
{14,15,25}
{16,17,25,26,36}
where 12 is a pair of items '1' and '2' (and thus 21 is equivalent to …
0
votes
2answers
44 views
Application for solving linear system of equations
Hi,
I needed an application for solving linear systems of equations (N up to 10), so I got different codes, and compile them, and they seem to work, but I get lots of problems with precision. I mean, …
2
votes
6answers
925 views
How to draw a perspective correct grid in 2D
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.
The problem is, say that the rectangle …
