Use this tag for questions involving visual presentations, whether they are generated using bitmap or vector techniques.

learn more… | top users | synonyms

3
votes
1answer
834 views

Converting Delphi colors between TColor, RGB, CMYK, and HSV

I wrote a record which encapsulates conversion of colors between TColor, RGB values, CMYK ...
4
votes
0answers
55 views

Cellular automata path and fill algorithm

I have worked for a few days in my cellular automata path algorithm and an easy fill algorithm, but sometimes I get some weird fall in my FPS. If you need a preview ...
4
votes
0answers
164 views

Collision system in Pong-like game

I am writing a game like Pong. Therefore I am using an entity system approach, so I use a Component-based design. The hardest part until now was to write the collision system. As I just began with ...
3
votes
0answers
104 views

Graphical editor with geometric intersection

If it is possible I would like some comments on the overall style of the program. It feels like I am writing the whole program as one big script and I'm not sure how to break it down into several ...
3
votes
0answers
65 views

Does this go raytracing program follow best practices, and typical project layout?

I'm working through learning Go, so as an exercise, I'm writing a simple raytracer. I'd like general feedback on the code style & architecture. Specific areas of concern: Is the project layout ...
1
vote
0answers
108 views

Optimizing a drawing a circular gradient in Python (aggdraw, PIL or SDL2)

I need to reduce the latency in creating a circular gradient of arbitrary radius that's then mapped to the current mouse position. Though the project uses OpenGL for video-card interaction, alas, ...
0
votes
0answers
123 views

Extending ProgressBarUI for modifying the look of a JProgressBar in Java

I have this visual mod for a javax.swing.JProgressBar: ...