1
vote
8answers
168 views
Averaging angles… Again
I want to calculate the average of a set of angles.
I know it has been discussed before (several times). The accepted answer was Compute unit vectors from the angles and take the angle of their …
2
votes
1answer
29 views
Intersection between bezier curve and a line segment
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 …
0
votes
0answers
7 views
Adding Geometry objects data wpf
Just wondering if this is possible in wpf,
Say we have a Path object p1 with geometry = g1 (same as p1.Data).
Similarly if we have another Path object p2 with geometry = g2 (same as p2.Data).
Now if …
0
votes
1answer
84 views
Smallest set of rectangles describing a set of integer points
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 …
5
votes
9answers
153 views
Can coordinates of constructable points be represented exactly?
I'd like to write a program that lets users draw points, lines, and circles as though with a straightedge and compass. Then I want to be able to answer the question, "are these three points …
0
votes
2answers
36 views
How can I find the angular coefficient of a segment in a 3D coordinate system?
Given 2 points A(x1,y1,z1) and B(x2,y2,z2), what is the equation to calculate their angular coefficient?
I wish a quite simple equation like this one:
m = (y2 - y1) / (x2 - x1)
used to calculate …
1
vote
2answers
230 views
Get un-translated, un-rotated (x,y) coordinate of a point from a Javascript canvas
In Javascript we often render graphics by rotating and translating the coordinate plane before sending things
ctx.save();
ctx.translate(someX, someY);
ctx.rotate(someAngle * Math.PI / 180);
…
3
votes
7answers
328 views
How can a convex polygon be broken down into right triangles aligned on the X- and Y- axes?
Given a convex polygon represented by a set of vertices (we can assume they're in counter-clockwise order), how can this polygon be broken down into a set of right triangles whose legs are aligned …
0
votes
2answers
47 views
How can I find a point placed between 2 points forming a segment using only the partial length of the segment?
Given 2 points A(x0,y0,z0) and C(x2,y2,z2) forming a segment of length "k", what is the equation to find a point C(x1,y1,z1) placed at "k-1" distance from A?
-2
votes
1answer
81 views
Is there an algorithm that can help remember a map? [closed]
When I'm faced with too many locations,I just can't remember them.
Is there an algorithm can help?
1
vote
2answers
95 views
Bounding ellipse
I have been given an assignement for a graphics module, one part of which is to calculate the minimum bounding ellipse of a set of arbitrary shapes. The ellipse doesn't have to be axis aligned.
This …
1
vote
2answers
54 views
Solving for optimal alignment of 3d polygonal mesh
I'm trying to implement a geometry templating engine. One of the parts is taking a prototypical polygonal mesh and aligning an instantiation with some points in the larger object.
So, the problem is …
1
vote
2answers
43 views
Line Segments from a point
I have a point p, and 2 line segments in a 2D plane. Point p is a location of view from where camera is looking towards the line segments. I want to check if line segment 1 is partially or fully …
1
vote
3answers
49 views
Angles to decimal conversion
Hi,
I'm trying to understand some flash animation, and am having difficulty working out the following. Can anyone help?
I want to convert a degree range of 0 to 90, to a value between 0 and 1
…
0
votes
2answers
145 views
ax + by = c given two points P and Q [closed]
How do I arrive at the equation of a line in standard form given two points?
I found an answer here which says that the equation of a line joining P(px, py) and Q(qx, qy) is given by:
(py – qy)x …
