Tagged Questions

Trigonometry is a branch of mathematics that studies triangles and the relationships between their sides and the angles between sides

learn more… | top users | synonyms

37
votes
7answers
7k views

How do Trigonometric functions work?

So in high school math, and probably college, we are taught how to use trig functions, what they do, and what kinds of problems they solve. But they have always been presented to me as a black box. If ...
21
votes
9answers
32k 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 definition for PI in ...
12
votes
12answers
5k views

Fast transcendent / trigonometric functions for Java

Since the trigonometric functions in java.lang.Math are quite slow: is there a library that does a quick and good approximation? It seems possible to do a calculation several times faster without ...
12
votes
15answers
8k views

Calculating Distance Between 2 Cities

How do you calculate the distance between 2 cities?
11
votes
5answers
1k 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 following the target ...
11
votes
9answers
4k views

Is there a built in method for converting radians to degrees?

I run into this occasionally and always forget how to do it. One of those things that pop up ever so often. Also, what's the formula to convert angles expressed in radians to degrees and back again? ...
10
votes
1answer
2k views

how to extrude a path in 3d?

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 ...
10
votes
3answers
13k views

How do I calculate a point on a circle’s circumference? [closed]

How can the following function be implemented in various languages? Calculate the (x,y) point on the circumference of a circle, given input values of: Radius Angle Origin (optional parameter, if ...
9
votes
1answer
187 views

C++ library for integer trigonometry, speed optimized with optional approximations?

I've reached the point in a project where it makes more sense to start building some support classes for vectors and misc trigonometry than keep using ad-hoc functions. I expect there to be many C++ ...
9
votes
9answers
430 views

Computational cost of trig functions [closed]

Possible Duplicate: How do Trigonometric functions work? What actually goes into the computation of trig functions like Sin, Cos, Tan and Atan? I think I've found an optimization in my ...
9
votes
14answers
1k views

How can I work around the fact that in C++, sin(M_PI) is not 0?

In C++, const double Pi = 3.14159265; cout << sin(Pi); // displays: 3.58979e-009 it SHOULD display the number zero I understand this is because Pi is being ...
9
votes
7answers
2k 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 calculations such as sqrt ...
8
votes
9answers
676 views

Calculate the cosine of a sequence

I have to calculate the following: float2 y = CONSTANT; for (int i = 0; i < totalN; i++) h[i] = cos(y*i); totalN is a large number, so I would like to make this in a more efficient way. Is ...
8
votes
8answers
2k views

Determining if a lat-long rect and a circle on a sphere overlap

Suppose I have the following: A region defined by minimum and maximum latitude and longitude (commonly a 'lat-long rect', though it's not actually rectangular except in certain projections). A ...
7
votes
3answers
198 views

Detecting if angle is more than 180 degrees

I'm working on a problem that the professor assigned, and I'm having a problem looking for a way to detect if the angle between 3 points is more than 180 degrees, e.g: I want to detect if alpha is ...
7
votes
2answers
2k views

Finding Signed Angle Between Vectors

How would you find the signed angle theta from vector a to b? And yes, I know that theta = arccos((a.b)/(|a||b|)). However, this does not contain a sign (i.e. it doesn't distinguish between a ...
7
votes
7answers
866 views

How to determine the accuracy of Pi (π)

Optimizing a game we're developing, we're running into the phase where every CPU cycle won counts. We using radians for position calculations of objects circling around other objects and I want to cut ...
6
votes
3answers
491 views

Circle to Circle Segment Collision

I'm struggling to find a rock solid solution to detecting collisions between a circle and a circle segment. Imagine a Field of View cone for a game enemy, with the circles representing objects of ...
6
votes
8answers
2k views

Trigonometry and Game Development

I understand what sin and cos (and some other trigonometric functions) means, but I don't really get what kind of problems they solve. Can you show me some real world examples when you'd use some of ...
6
votes
5answers
700 views

Missing Coordinates. Basic Trigonometry Help

please refer to my quick diagram attached below. what i'm trying to do is get the coordinates of the yellow dots by using the angle from the red dots' known coordinates. assuming each yellow dot is ...
6
votes
8answers
1k views

Is trigonometry computationally expensive?

I read in an article somewhere that trig calculations are generally expensive. Is this true? And if so, that's why they use trig-lookup tables right? EDIT: Hmm, so if the only thing that changes is ...
5
votes
6answers
188 views

Approximating inverse trigonometric funcions

I have to implement asin, acos and atan in environment where I have only following math tools: sine cosine elementary fixed point arithmetic (floating point numbers are not available) I also ...
5
votes
3answers
122 views

Can cos(a) ever equal 0 in floating point

Given that PI/2 can never be represented precisely in floating point, is it safe to assume that cos(a) can never return exact zero? If this is the case, then the following pseudo-code will never ...
5
votes
3answers
324 views

Constrain MovieClip drag to a circle

...well, to an incomplete circle. I have a draggable slider that looks like this: The blue bar has the instance name track and the pink dot has the instance name puck. I need the puck to be ...
5
votes
1answer
172 views

Shortest path on a sphere direction descision

I'm trying to write an algorithm that does the following. Given a current position (in Azimuth and Inclination) and a target position (again in A, I) in what direction should I travel to travel over ...
5
votes
1answer
531 views

3d trigonometry equation

I'm trying to write a small 'perspective' javascript app that allows me to fly through a set of x,y,z points that inhabit a 3d space. I have the concept of a camera which changes its rotation and ...
5
votes
2answers
129 views

Find the place of a cursor in rectangle

I don't know how to find the place part (one of 4 triangles) of a cursor in a rectangle. This image is more efficient than my explication :s Im in javascript (so the rectangle is a DIV, 0,0 ...
5
votes
1answer
307 views

Weird Great Circle Distance calculation

I have some problems with a great circle distance calculation using a map. Context: http://airports.palzkill.de/search/ The map is supposed to work as a great circle distance search map - you move ...
5
votes
7answers
1k views

uniform generation of 3D points on cylinder/cone

I wish to randomly and uniformly generate points on a cylinder and a cone (separately). The cylinder is defined by its center, its radius and height. Same specifications for the cone. I am able to get ...
5
votes
3answers
753 views

3D coordinate of 2D point given camera and view plane

I wish to generate rays from the camera through the viewing plane. In order to do this, I need my camera position ("eye"), the up, right, and towards vectors (where towards is the vector from the ...
5
votes
7answers
2k views

Knowing two points of a rectangle, how can I figure out the other two?

Hey there guys, I'm learning processing.js, and I've come across a mathematical problem, which I can't seem to solve with my limited geometry and trigonometry knowledge or by help of Wikipedia. I ...
4
votes
3answers
111 views

OpenGL - Rotate a 'Curve' About the Y-Axis

As per my question on Math Stackexchange: I am working on a project for my 3D Graphics class. The project is built with C++ and OpenGL / Glut. Basically, I create a horizontal rectangle window, ...
4
votes
4answers
116 views

Fast, inaccurate sin function without lookup

For an ocean shader, I need a fast function that computes a very approximate value for sin(x). The only requirements are that it is periodic, and roughly resembles a sine wave. The taylor series of ...
4
votes
2answers
116 views

How can i make the php cos function return the correct value?

I've tried $x = cos(deg2rad($angle)); but it returns 6.12323399574E-17 when the angle is 90 degrees instead of 0. I read that this is a floating point problem, but is there a workaround?
4
votes
4answers
423 views

Efficiency of arcsin computation from sine lookup table

I have implemented a lookup table to compute sine/cosine values in my system. I now need inverse trigonometric functions (arcsin/arccos). My application is running on an embedded device on which I ...
4
votes
2answers
79 views

MySQL Bug? (Trigonometry)

I was optimizing a query by precalculating some trigonometry-funnctions for the fields in a table, when I stumbled on this: SELECT 6371 * acos( 0.793521289617132 * 0.793521289617132 + ...
4
votes
5answers
551 views

How to calculate the height and width of an isometric rectangle/square

I'm writing an isometric tile game. Each tile is twice as wide as it is tall (w:h = 2:1). All tiles in a map are the same size and their width and heights are known (TileWidth and TileHeight). ...
4
votes
3answers
636 views

Drawing lat/lng points on an image

I have the following: An image - a hand drawn map - of an area of roughly 600x400 meters. The image is drawn on top of Google Maps tiles. The latitude/longitude (from Google Maps) of the corners of ...
4
votes
3answers
1k views

How to handle ball to ball collision with trigonometry instead of vectors?

I am making a simplified version of the ball physics app found at this SO question. I gained a lot from reading through the code and links provided at that question, but in my program I do not use ...
4
votes
5answers
4k views

Calculating the angle between two lines without having to calculate the slope? (Java)

I have two Lines: L1 and L2. I want to calculate the angle between the two lines. L1 has points: {(x1, y1), (x2, y2)} and L2 has points: {(x3, y3), (x4, y4)}. How can I calculate the angle formed ...
4
votes
2answers
2k views

Calculating magnetic heading using raw accelerometer and magnetometer data

I have an accelerometer and magnetometer each producing raw X, Y and Z readouts. From this I need to determine the magnetic heading of an object. I'm not that great at trig, but I've put together a ...
4
votes
7answers
2k views

Inner angle between two lines

I have two lines: Line1 and Line2. Each line is defined by two points (P1L1(x1, y1), P2L1(x2, y2) and P1L1(x1, y1), P2L3(x2, y3)). I want to know the inner angle defined by these two lines. For do it ...
4
votes
3answers
2k views

Angle between two 2d vectors, diff between two methods?

Hey all. I've got this code snippet, and I'm wondering why the results of the first method differ from the results of the second method, given the same input? public double AngleBetween_1(vector a, ...
4
votes
1answer
120 views

calculating the potential effect of inaccurate triangle vertex positions on the triangle edge lenghts

i'm not sure how to solve the following problem: i have a triangle with each of the three known vertex positions A,B,C being inaccurate, meaning they can each deviate up to certain known radii rA, ...
4
votes
4answers
1k views

Java Math.cos() Method Does Not Return 0 When Expected

Using Java on a Windows 7 PC (not sure if that matters) and calling Math.cos() on values that should return 0 (like pi/2) instead returns small values, but small values that, unless I'm ...
4
votes
3answers
3k views

Calculate second point knowing the starting point and distance

using a Latitude and Longitude value (Point A), I am trying to calculate another Point B, X meters away bearing 0 radians from point A. Then display the point B Latitude and Longitude values. Example ...
4
votes
6answers
421 views

Will Decimal or Double work better for translations that need to be accurate up to .00001?

I'm an inspector at a machine shop. I have an html report generated by another inspector that has some problems I need to fix. This isn't the first time: I need something better than PowerShell and ...
4
votes
3answers
687 views

joystick deadzone calculation

My problem: given x and y, I need to calculate the x and y for the required joystick deflection. This is simple when there is no joystick deadzone -- I just use the x and y with no manipulation. ...
4
votes
7answers
770 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 ...
4
votes
8answers
934 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 2 3 4 5 7