Tagged Questions

2D computer graphics is the computer-based generation of digital images—mostly from two-dimensional models.

learn more… | top users | synonyms

70
votes
10answers
22k views

Point in Polygon aka hit test

What's your best, most elegant 2D "point inside polygon" or Polygon.contains(p:Point) algorithm? Edit: There may be different answers for floats vs integers. Primary goal is speed.
45
votes
6answers
45k views

Where to get sprites & tilesets for 2d games?

Apart from creating my own graphics, where can I get to see some inspiring tilesets for inspiration and use for a 2d platform game ? some of my favourites - SavWae sprites - a huge list of links to ...
32
votes
8answers
7k views

Resources for 2d game physics

I'm looking for some good references for learning how to model 2d physics in games. I am not looking for a library to do it for me - I want to think and learn, not blindly use someone else's work. ...
31
votes
2answers
13k views

Drawing Isometric game worlds

What is the correct way to draw isometric tiles in a 2D game? I've read references (such as this one) that suggest the tiles be rendered in a way that will zig-zag each column in the 2D array ...
26
votes
10answers
8k views

Good resources for JavaScript 2D game programming?

As an exercise, I've decided to look into JavaScript for game programming. While it's far from being the best language for that, I do like the idea that it's cross-platform and it's always available ...
25
votes
3answers
11k views

Android: Difference between SurfaceView and View?

When is it necessary, or better to use a SurfaceView instead of a View?
23
votes
3answers
11k views

Android OpenGL ES and 2D

Well, here's my request. I don't know OpenGL already, and I'm not willing to learn it, I want to learn OpenGL ES directly since I'm targeting my development to android, however. I want to learn openGL ...
20
votes
6answers
6k views

Is there an efficient algorithm to generate a 2D concave hull?

Having a set of (2D) points from a GIS file (a city map), I need to generate the polygon that defines the 'contour' for that map (its boundary). Its input parameters would be the points set and a ...
20
votes
8answers
9k views

How to know if a line intersects a plane in C#? - Basic 2D geometry

my school maths are very rusty and I think this is a good opportunity to take advance of this community :D I have two points (a line) and a rectangle, I would like to know how to calculate if the ...
19
votes
11answers
5k views

Random points inside a Polygon

I have a 4 side convex Polygon defined by 4 points in 2D, and I want to be able to generate random points inside it. If it really simplifies the problem, I can limit the polygon to a parallelogram, ...
15
votes
8answers
4k views

Most performant way to graph thousands of data points with WPF?

I have written a chart that displays financial data. Performance was good while I was drawing less than 10.000 points displayed as a connected line using PathGeometry together with PathFigure and ...
15
votes
8answers
9k views

How to test if a line segment intersects an axis-aligned rectange in 2D?

How to test if a line segment intersects an axis-aligned rectange in 2D? The segment is defined with its two ends: p1, p2. The rectangle is defined with top-left and bottom-right points.
14
votes
6answers
2k views

Simple physics-based movement

I'm working on a 2D game where I'm trying to accelerate an object to a top speed using some basic physics code. Here's the pseudocode for it: const float acceleration = 0.02f; const float friction ...
13
votes
7answers
10k views

A simple algorithm for polygon intersection

I'm looking for a very simple algorithm for computing the polygon intersection/clipping. That is, given polygons P, Q, I wish to find polygon T which is contained in P and in Q, and I wish T to be ...
13
votes
13answers
7k views

How do I calculate the surface area of a 2d polygon?

Assuming a series of points in 2d space that do not self-intersect, what is an efficient method of determining the surface area of the resulting polygon? As a side note, this is not homework and I am ...
12
votes
10answers
3k views

Is there any Algorithm for converting 2d video into 3d video?

Is there any Algorithm for converting 2d video into 3d video? (for viewing using glasses) (a-la turning Avatar into Avatar for An IMAX 3D Experience ) or at least turn it into video prepared for ...
11
votes
4answers
2k views

Is there a 2d sprite library for webgl?

I am looking to build a 2d game using WebGL. I want the hardware acceleration that WebGL provides and I cannot get this from the 2D canvas context in the canvas tag. With that said, is there a ...
11
votes
3answers
2k views

What's a good, simple, 2D rectangles-only collision detection algorithm?

I'm designing a collision detection game tutorial for young adults, so I want this to be as simple as possible to make it easier to explain. The requirements are very simple. The world is 2D and ...
11
votes
2answers
4k views

Curvilinear perspective: Convert 3D to 2D

I'm looking for the mathematical expression converting a 3D coordinate (x0,y0,z0) to a 2D (x1,y1) coordinate in a curvilinear perspective of radius R where the values of x1 and y1 are the angles of ...
11
votes
4answers
2k views

Algorithm to divide a chocolate bar in equal parts

A random thought popped into my head (when I was sharing a chocolate bar of course!). I was wondering if there is a generic algorithm to solve this problem. The problem goes like this: Info 1. You ...
10
votes
2answers
2k views

2D tile map generation

I'm developing a 2D tile engine and at this moment I'm working on map generation algorithms. I tried the basic ones usually involved in simple heightmap generation like hill generation perlin noise ...
10
votes
6answers
3k views

2d Game Making > Where can someone get Free Tilesets?

I have been scouring the internet for free tilesets that are open to you. I have found http://lostgarden.com/ It does not seem very useful. There are a few things here and there, but overall not ...
10
votes
6answers
6k views

Realistic 2D terrain map generation

I am looking for some algorithms which allow me to generate a realistic 2D terrain map. By realistic I mean that person will consider such map as a "normal" terrain map, not created artificially. I ...
9
votes
7answers
2k views

Want to learn to write 2d games

Hey stackoverflow Community! I learned the basics of C# (i can write some Form-Applications) and now I want to learn how to write 2d games. I don't know where to start. Is there a engine that's good ...
9
votes
7answers
3k views

Matrix from Python to MATLAB

I'm working with Python and MATLAB right now and I have a 2D array in Python that I need to write to a file and then be able to read it into MATLAB as a matrix. Any ideas on how to do this? Thanks!
9
votes
10answers
681 views

How to determine path from noisy X, Y data

I have an unsorted list of noisy X, Y points. They do, however, form a path through the world. I would like an algorithm to draw an approximation of this data using line segments. This is similar to ...
9
votes
9answers
5k views

Mathematics and Game Programming

I want to program graphical 2D games more complex than the basic 2D stuff I already know. I don't want to do 3D programming. Just more complex 2D stuff. I dropped high school before I could learn a ...
9
votes
4answers
8k views

3d to 2d Projection Matrix

I have 3 points in 3d space. I know the exact locations of them. Suppose they are (x0,y0,z0) (x1,y1,z1) (x2,y2,z2) Also i have a camera that are looking at these 3 points and i know the 2d locations ...
9
votes
10answers
5k views

How do I reverse-project 2D points into 3D?

I have 4 2D points in screen-space, and I need to reverse-project them back into 3D space. I know that each of the 4 points is a corner of a 3D-rotated rigid rectangle, and I know the size of the ...
8
votes
3answers
228 views

OpenGL- Simple 2D clipping/occlusion method?

I'm working on a relatively small 2D (top-view) game demo, using OpenGL for my graphics. It's going for a basic stealth-based angle, and as such with all my enemies I'm drawing a sight arc so the ...
8
votes
3answers
349 views

2D platformers: why make the physics dependent on the framerate?

"Super Meat Boy" is a difficult platformer that recently came out for PC, requiring exceptional control and pixel-perfect jumping. The physics code in the game is dependent on the framerate, which is ...
8
votes
2answers
866 views

2D orbital physics

I'm working on a 2D physics engine for a game. I have gravity and masses working, using a simple iterative approach (that I know I'll have to upgrade eventually); I can push the masses around manually ...
8
votes
1answer
2k views

HTML5 Tile Engine

What is some good tile engine for the HTML5 <canvas> (for writing 2D games)?
8
votes
4answers
1k views

Algorithm for finding nearest object on 2D grid

Say you have a 2D grid with each spot on the grid having x number of objects (with x >=0). I am having trouble thinking of a clean algorithm so that when a user specifies a coordinate, the algorithm ...
8
votes
5answers
931 views

2D game algorithm to calculate a bullet's needed speed to hit target?

I have a rather simple bird's-view 2D game where tower sprites defend against incoming moving sprites by shooting a bullet at them. My question: How do I calculate the needed bullet speed for the ...
8
votes
6answers
3k views

2D game programming tutorials in C#

I want to learn about programming 2D games in C#. What are the best tutorials that are beginner oriented, written for C#, and preferably use GDI+ (or something equally simple)? I am relying on the ...
8
votes
6answers
6k views

Map a 2D array onto a 1D array C

I want to represent a 2D array with a 1D array. A function will pass the two indicies (x,y) and the value to store. These two indicies would represent a single element of a 1D array, and set it ...
8
votes
6answers
5k views

Inverse Bilinear Interpolation?

I have four 2d points, p0 = (x0,y0), p1 = (x1,y1), etc. that form a quadrilateral. In my case, the quad is not rectangular, but it should at least be convex. p2 --- p3 | | t | p | | ...
7
votes
2answers
112 views

What is the “side scrolling hack” from old games?

I have heard that old arcade side scrolling games used a specific programming hack to enable performant side scrolling. I understand that years ago the machines weren't powerful enough to repaint the ...
7
votes
2answers
1k views

Webgl 2D engine?

Anyone know any good Webgl 2D engines? I've been thinking about using a Webgl 3D engine like Copperlicht but this feels like using a bazooka to swat a fly. I'm mostly interested in using it to develop ...
7
votes
2answers
406 views

how to calculate all pairwise distances in two dimensions

Say I have data concerning the position of animals on a 2d plane (as determined by video monitoring from a camera directly overhead). For example a matrix with 15 rows (1 for each animal) and 2 ...
7
votes
6answers
1k views

Checking to see if 3 points are on the same line

I want to know a piece of a code which can actually tell me if 3 points in a 2D space are on the same line or not. A pseudocode is also sufficient but Python is better. Thanks
7
votes
3answers
479 views

Python 2D list has weird behavor when trying to modify a single value

So I am relatively new to Python and I am having trouble working with 2D Lists. Here's my code: data = [[None]*5]*5 data[0][0] = 'Cell A1' print data and here is the output (formatted for ...
7
votes
6answers
3k views

How do i tint an image with HTML5 Canvas?

My question is, what is the best way to tint an image that is drawn using the drawImage method. The target useage for this is advanced 2d particle-effects (game development) where particles change ...
7
votes
3answers
672 views

Building an interleaved buffer for pyopengl and numpy

I'm trying to batch up a bunch of vertices and texture coords in an interleaved array before sending it to pyOpengl's glInterleavedArrays/glDrawArrays. The only problem is that I'm unable to find a ...
7
votes
6answers
986 views

What is currently considered the “best” algorithm for 2D point-matching?

I have two lists containing x-y coordinates (of stars). I could also have magnitudes (brightnesses) attached to each star. Now each star has random position jiggles and there can be a few extra or ...
7
votes
5answers
2k views

Recommended Books on Math for Game Development [closed]

It's been a few years since my computational geometry class in college, and I unfortunately sold my textbook (Computational Geometry in C), so now that I am writing a 2D video game, I am looking for ...
7
votes
5answers
3k views

Bezier clipping

I'm trying to find/make an algorithm to compute the intersection (a new filled object) of two arbitrary filled 2D objects. The objects are defined using either lines or cubic beziers and may have ...
7
votes
11answers
2k views

How to work around a very large 2d array in C++

I need to create a 2D int array of size 800x800. But doing so creates a stack overflow (ha ha). I'm new to C++, so should I do something like a vector of vectors? And just encapsulate the 2d array ...
6
votes
6answers
185 views

What more can I do to improve performance on this class?

I'm currently developing a 2D game with C#/XNA. The game's core feature are bullets with vastly different behaviors (it will be kind of a bullet hell game). Updating all the bullets can take quite ...

1 2 3 4 5 22