Graphics are visual presentations. There are many types of graphics e.g. photographs, drawings, Line Art, graphs, chart. Computer graphics primarily consist of bitmap and vector graphics.
94
votes
10answers
26k views
Ball to Ball Collision - Detection and Handling
With the help of the Stack Overflow community I've written a pretty basic-but fun physics simulator.
You click and drag the mouse to launch a ball. It will bounce around and eventually stop on the ...
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.
70
votes
15answers
33k views
Pretty graphs and charts in Python
What are the best libraries for creating pretty charts and graphs in a Python application?
69
votes
13answers
36k views
Algorithm to detect intersection of two rectangles?
I'm looking for an algorithm to detect if two rectangles intersect (one at an arbitrary angle, the other with only vertical/horizontal lines).
Testing if a corner of one is in the other ALMOST works. ...
61
votes
15answers
4k views
Most underused data visualization [closed]
Histograms and scatterplots are great methods of visualizing data and the relationship between variables, but recently I have been wondering about what visualization techniques I am missing. What do ...
48
votes
9answers
35k views
Python - Best library for drawing [closed]
So I'm looking for a pretty basic library in python where i can create a window, and then draw lines and basic shapes too it. Nothing too complex, just nice and simple. I figure theres lots of ...
46
votes
23answers
2k views
Can a Programmer Become a Decent Graphic Designer?
As a developer completely void of artistic skills, it's frustrating building applications from scratch. I know there are several open-source template web sites to draw from, but are there any good ...
43
votes
5answers
609 views
When transforming textures (drawn as flat 3D objects) to mimic depth, black lines appear randomly
We are developing a top-down RPG using XNA. Recently we bumped into a setback when writing the code to display our maps. When drawing the map, top-down view with a normal transformation matrix, ...
37
votes
2answers
792 views
An algorithm to space out overlapping rectangles?
This problem actually deals with roll-overs, I'll just generalized below as such:
I have a 2D view, and I have a number of rectangles within an area on the screen. How do I spread out those boxes ...
34
votes
10answers
7k views
Version control for binaries
What version control systems would be useful or have extra features to support projects that are mainly binary files like mp3, wav, or proprietary application-specific file types?
33
votes
4answers
1k views
Best way to do non-flickering, segmented graphics updates in Delphi?
I thought I could just throw this out there and just ask: I have seen Delphi controls that are flawless in terms of graphical effects. Meaning: no flickering, sectioned updates (only redraw the ...
33
votes
19answers
47k views
32
votes
14answers
1k views
Basic art for the programmer?
This perhaps isn't really a programming question, but it's something I'm sure lots of programmers other than me have faced!
I've almost finished an iphone application I've been working on, the only ...
32
votes
25answers
5k views
Suggested gaming platform to learn - Direct X (C++), Open GL or XNA
My nephew is an aspiring game developer. I have taught him a bit of C/C++, and suggested he learn that for a start.
Once he has come to grips with that, which game/graphics API's do people suggest he ...
31
votes
6answers
2k views
How do you draw like a Crayon?
Crayon Physics Deluxe is a commercial game that came out recently. Watch the video on the main link to get an idea of what I'm talking about.
It allows you to draw shapes and have them react with ...
31
votes
21answers
3k views
Which format for small website images? GIF or PNG?
When doing small icons, header graphics and the like for websites, is it better to use GIFs or PNGs?
Obviously if transparency effects are required, then PNGs are definitely the way to go, and for ...
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?
24
votes
8answers
898 views
Where can I get freely available audio, graphics, and other resources for games?
I've done a google search of this topic, but so far haven't found anything satisfactory.
From your experience, what's the best place to get game resources, like sprites, backgrounds, sound effects, ...
23
votes
4answers
10k views
What does glLoadIdentity() do in OpenGL?
I'm new to OpenGL and I'm a little overwhelmed with all of the random functions that I have my in code. They work and I know when to use them, but I don't know why I need them or what they actually ...
22
votes
4answers
2k views
Haskell library for 2D drawing
I basically want to create a full screen window and draw text on it in different colors and sizes (and also update the screen). I've used pygame for this in python and I'm looking for a similar ...
22
votes
3answers
844 views
How does Photoshop's magnetic lasso work?
Seems like GIMP's intelligent scissor is based on a paper from SIGGRAPH '95 on "Intelligent Scissors for Image Composition", as seen in one of the comments in the source.
However Magnetic Lasso in ...
22
votes
6answers
19k views
C# graph drawing library?
I'm looking for a (free) library which allows me to draw a CFG (control flow graph). Something like yFiles, but free or preferably open source? Ideally this library would allow the user to navigate ...
22
votes
10answers
1k views
3D modeling for programmers
I'm studying Computer Graphics as part of my curriculum at my university. The course focuses on scene modeling, rather than rendering or other aspects of computer graphics. We're learning the math ...
21
votes
2answers
352 views
Why is drawing a line less than 1.5 pixels thick twice as slow as drawing a line 10 pixels thick?
I'm just playing around with FireMonkey to see if graphical painting is any faster than GDI or Graphics32 (my library of choice at the moment).
To see how fast it is, I've performed some tests, but I ...
21
votes
4answers
803 views
Haskell Graphics Library that works in GHCi on MacOS X
Does there exist a Haskell graphics library or binding to an external library that fulfills the following requirements:
Can be used from ghci, i.e. I don't have to link and restart the program.
...
21
votes
9answers
16k views
Javascript drawing library?
Any suggestion for a JS interactive drawing library? Just need to draw lines, polygons, texts of different colors. IE/Firefox/Opera/Safari compatible.
20
votes
4answers
311 views
Reproducing images with primitive shapes. (Graphics optimization problem)
Based on this original idea, that many of you have probably seen before:
http://rogeralsing.com/2008/12/07/genetic-programming-evolution-of-mona-lisa/
I wanted to try taking a different approach:
...
20
votes
8answers
4k views
Are there any good Javascript graphics libraries?
After staring at this 3D cube and these triangles for a while I started wondering if there's any good reliable Javascript graphics library with basic 3D support.
Any suggestion?
20
votes
30answers
7k views
What's the best alternative to C++ for real-time graphics programming?
C++ just sucks too much of my time by making me micro-manage my own memory, making me type far too much (hello std::vector<Thingy>::const_iterator it = lotsOfThingys.begin()), and boring me with ...
19
votes
1answer
631 views
Plotting a “sequence logo” using ggplot2?
Is it (reasonably) possible to plot a sequence logo plot using ggplot2?
There is a package to do it which is based on "grid" called "seqLogo", but I was wondering if there could be a ggplot2 version ...
18
votes
2answers
487 views
Are there any Android Drawable designers?
I would like to use more vector drawings in my Android applications. Providing images isn't as space efficient or as scalable as I would like it to be.
Android provides a series of Drawable file ...
18
votes
9answers
4k views
Literature and tutorials for writing a ray tracer
I am interested in finding recommendations on books on writing a raytracer, simple and clear implementations of ray tracing that can be seen on the web, and online resources on introductory ray ...
17
votes
5answers
341 views
OpenGL, How to create a “bumpy Polygon”?
I am unsure of how to describe what I'm after, so I drew a picture to help:
My question, is it possible within OpenGL to create the illusion of those pixel looking bumps on a single polygon, ...
17
votes
12answers
2k views
Millions of 3D points: How to find the 10 of them closest to a given point?
A point in 3-d is defined by (x,y,z). Distance d between any two points (X,Y,Z) and (x,y,z) is d= Sqrt[(X-x)^2 + (Y-y)^2 + (Z-z)^2].
Now there are a million entries in a file, each entry is some point ...
17
votes
5answers
5k views
correcting fisheye distortion programmatically
BOUNTY STATUS UPDATE:
I discovered how to map a linear lens, from destination coordinates to source coordinates.
I actually struggle to reverse it, and to map source coordinates to destination ...
17
votes
2answers
5k views
GraphViz - How to connect subgraphs?
In the DOT language for GraphViz, I'm trying to represent a dependency diagram. I need to be able to have nodes inside a container and to be able to make nodes and/or containers dependent on other ...
17
votes
6answers
9k views
what are sparse voxel octrees?
I have reading a lot about the potential use of sparse voxel octrees in future graphics engines.
However I have been unable to find technical information on them.
I understand what a voxel is, ...
17
votes
4answers
434 views
Are there any good / interesting analogs to regular expressions in 2d?
Are there any good (or at least interesting but flawed) analogs to regular expressions in two dimensions?
In one dimension I can write something like /aaac?(bc)*b?aaa/ to quickly pull out a region of ...
17
votes
7answers
6k views
Generate colors between red and green for a power meter?
I'm writing a java game and I want to implement a power meter for how hard you are going to shoot something.
I need to write a function that takes a int between 0 - 100, and based on how high that ...
16
votes
2answers
755 views
Emulating old-school sprite flickering (theory and concept)
I'm trying to develop an oldschool NES-style video game, with sprite flickering and graphical slowdown. I've been thinking of what type of logic I should use to enable such effects.
I have to ...
16
votes
8answers
9k views
Creating SVG graphics using javascript?
How can I create SVG graphics using Javascript? Do all browsers support SVG?
16
votes
5answers
6k views
Displaying SVG in OpenGL without intermediate raster
I have some simple SVG artwork (icon and glyph kind of things) which I want to display in an OpenGL app (developing in C++ on Debian, using Qt).
The obvious solution is to use the ImageMagick libs to ...
16
votes
9answers
5k views
Beginner's guide to 3D graphics programming
What are the best guides / tutorials / books / websites for someone with minimal experience (or none) in the world of 3D graphics programming?
I realize that the fundamentals of 3D graphics 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
798 views
How create glossy button in C#?
I want create glossy buttons with GDI+ or Silverlight with C#, any ideas or trickery how to create a glossy button? Somethings like images below:
I am interesting more in GDI+ solutions.
14
votes
1answer
121 views
What happens during a display mode change?
What happens during a display mode change (resolution, depth) on an ordinary computer? (classical stationarys and laptops)
It might not be so trivial since video cards are so different, but one thing ...
14
votes
1answer
204 views
What's the name of an algorithm that would produce this graphic fill
I'm looking for an algorithm to do this effect, but it's not helping that I don't even know what to look for. I use PHP, so any existing code samples would be great. I want to specify the borders of ...
14
votes
4answers
11k views
Overlay images onto Camera preview SurfaceView
I have a SurfaceView that is being used to draw images, and I would like to overlay them onto a live-feed from the phone's camera.
Currently, the SurfaceView that contains the images have a ...
14
votes
4answers
5k views
Getting R plots into LaTeX?
I'm a newbie to both R and LaTeX and have just recently found how to plot a standard time series graph using R and save it as a png image. What I'm worried about is that saving it as an image and then ...
14
votes
8answers
3k views
Learning about low-level graphics programming
I'm interesting in learning about the different layers of abstraction available for making graphical applications.
I see a lot of terms thrown around: At the highest level of abstraction, I hear ...