1
vote
8answers
239 views
How to use the PI constant in C++
I want to use the PI constant and trigonometric functions in some C++ program. I get the trigonometric functions with include <math.h>. However, there doesn't seem to be a de …
1
vote
2answers
57 views
Fixed point inverse sine
Does anyone know a (preferably fast) way to calculate the sine of an angle in 4.12 fixed point? (where the result is either 32768ths of a circle or degrees)
4.12 fixed point means …
0
votes
4answers
127 views
Calculating bounding box a certain distance away from a lat/long coordinate in Java
Given a coordinate (lat, long), I am trying to calculate a square bounding box that is a given distance (e.g. 50km) away from the coordinate. So as input I have lat, long and dist …
1
vote
3answers
35 views
Easy Trig - Move an object in a position
I know this is quite easy trigonomety, however I was never introducted to vectors etc, and I'm at a loss understanding how this works.
Given an object at point XY, and a direction …
0
votes
4answers
204 views
Given an angle and length, how do I calculate the coordinates
Assuming the upper left corner is (0,0) and I'm given an angle of 30 degrees, a starting point of (0,300), a line length of 600, how do I calculate the ending point of the line so
…
7
votes
5answers
443 views
How to create an “intercept missile” for a game?
I have a game I am working on that has homing missiles in it. At the moment they just turn towards their target, which produces a rather dumb looking result, with all the missiles …
4
votes
7answers
255 views
Trigonometric functions on embedded system
sin and cos functions are slow and need a lot of resources to run on embedded systems. How does one calculate sin and cos functions in a more resource-saving and faster way?
1
vote
5answers
243 views
C# -Trigonometric code explaination (Physics)
This piece of code has been taken from a game built with XNA framework. I'd like some explanation of how it works in terms of trig and physics.
ball.velocity = new
Vector2((f …
1
vote
2answers
269 views
c++ opengl converting model coordinates to world coordinates for collision detection
Hi,
(This is all in ortho mode, origin is in the top left corner, x is positive to the right, y is positive down the y axis)
I have a rectangle in world space, which can have a r …
3
votes
7answers
311 views
sin, cos, tan and rounding error
I'm doing some trigonometry calculations in C/C++ and am running into problems with rounding errors. For example, on my Linux system:
#include <stdio.h>
#include <math.h …
1
vote
4answers
273 views
Find the normal angle of the face of a triangle in 3D, given the co-ordinated of its verticies
As you may be able to tell from this screenshot, I am trying to make a physics engine for a platformer I am working on, but I have run into a definite problem: I need to be able to …
1
vote
2answers
158 views
Calculating vertices of a rotated rectangle
Hey guys, I am trying to calculate the vertices of a rotated rectangle (2D).
It's easy enough if the rectangle has not been rotated, I figured that part out.
If the rectangle has …
7
votes
6answers
367 views
Cheap algorithm to find measure of angle between vectors
Finding the angle between two vectors is not hard using the cosine rule. However, because I am programming for a platform with very limited resources, I would like to avoid calcula …
1
vote
2answers
62 views
Get z depth from 4 vertices of a face
How can I z-order the faces of a 3d object just using the 4 vertices of each of its faces? I've tried using a z-buffer where I store the average z value of each face; this works gr …
2
votes
1answer
186 views
Math logic (basic trig) in a game, what is this code doing?
I'm trying to better understand what exactly this code is doing. It's written in Objective-C, but should be familiar to anyone with a C background. What exactly are sin/cos mathema …
