A fast integer line-drawing algorithm invented by Jack Bresenham, or one of a family of algorithms derived from the original.

learn more… | top users | synonyms

0
votes
0answers
38 views

Bresenham's line drawing algorithm function [closed]

In some websites including Wikipedia it is said that if f(x,y) < 0 then the lower point is chosen; other websites say that if f(x,y) < 0 then the upper point is chosen. Which one is correct? Is ...
1
vote
4answers
53 views

Walk a line between two points in a 3D voxel space visiting all cells

I have a line-of-sight problem I need to solve by visiting all possible cells in a 3D voxel space between two (non-grid-aligned) points. I have considered using a 3D Bresenham algorithm, but it will ...
0
votes
0answers
42 views

Ray cast quantity vs. circle radius

In experimenting with line-of-sight visibility on a 2D map, I've written a prototype that uses brute force to cast X number of rays in all directions from a given point, using Bresenham's line ...
0
votes
2answers
101 views

Can I easily skip pixels in Bresenham's line algorithm?

I have a program which is using Bresenham's line algorithm to scan pixels in a line. This is reading pixels rather than writing them, and in my particular case, reading them is costly. I can however ...
1
vote
1answer
128 views

Direct Bresenham

There is this well known algorithm for drawing lines by Bresenham, Wikipedia has very good article about it: http://en.wikipedia.org/wiki/Bresenham's_line_algorithm. The main loop iteratively ...
0
votes
0answers
73 views

What does Bresenham algorithm do exactly?

I know that you use it to draw a lines or a circle but can you use it to FIND circles in an image?
0
votes
1answer
66 views

Render Line From Rectangles

I've currently implemented the Bresenham line algorithm for a tile based world editor I'm developing. For Shift + Click functionality, I would like to render a line based off the selection rectangle ...
0
votes
2answers
237 views

Bresenham Lines Drawing Alogrithm

There Is Something In Bresenham's Floating Point Algorithm which annoying me. The Algorithm is listed below : void line(x0, x1, y0, y1) { int deltax = x1 - x0; int deltay = y1 - y0; float ...
1
vote
1answer
265 views

How to draw a line in 3D space across a grid with a start point and direction vector

I'm working on a first person 3D game. The levels are entirely cube based, walls/floors/etc are all just tiled cubes (1x1x1). I'm currently creating a ray using the camera position and the rotation ...
0
votes
1answer
201 views

Midpoint algorithm for diameter with an even number of pixels?

Using the Midpoint circle algorithm you can draw symmetrical circles, visiting each pixel only once. Due to the nature of the algorithm, it can only draw circles with an odd diameter (2 * r + 1). Is ...
1
vote
1answer
189 views

Line Rasterization / 4-connected Bresenham

For collision testing I need to raster a line. The bresenham algorithm works almost as desired, but has the flaw that is produces a line like: And I need: My current implementation (based on ...
0
votes
1answer
142 views

Pseudcode to java

I have looked around for the past hour or so but I can not find any help on this problem. I am trying to convert this pseudocode to java and can not figure out what I am doing wrong(it ever prints ...
3
votes
4answers
461 views

Bresenham concentric circles leaving empty pixels

I am using the midpoint circle algorithm, also known as Bresenham's, to draw concentric circles. The difference between each circle's radius and that of the next is always 1, so the final result ...
0
votes
2answers
1k views

All cases covered Bresenham's line-algorithm [closed]

I need to check all pixels in a line, so I'm using Bresenham's algorithm to access each pixel in it. In particular I need to check if all pixels are located on valid pixel of a bitmap. This is the ...
1
vote
1answer
68 views

Pixels: Getting the Pixels Within Certain Plots

I'm wondering if there's an algorithm that would can get pixels inside a certain "pixeled" area? So if we have a 3 x 3 pixel square that isn't filled in, the plots that aren't filled in would be: 2,2 ...
1
vote
1answer
227 views

high-speed drawing algorithm for cornu spiral/spline?

Has anyone seen a decent drawing algorithm for cornu spirals (aka, clothoids) or splines? For arcs and lines we have things like Bresenham's algorithm. Is that adaptable to clothoids? The Wikipedia ...
0
votes
1answer
127 views

Store Bresenham generated circle as polygon?

I'm generating circles using the Midpoint circle algorithm. I don't want to draw these circles. Instead, I want to store them as polygons. Obviously, the coordinates are in the wrong order so if I ...
1
vote
2answers
2k views

Drawing lines with Bresenham's Line Algorithm

My computer graphics homework is to implement OpenGL algorithms using only the ability to draw points. So obviously I need to get drawLine() to work before I can draw anything else. drawLine() has ...
0
votes
2answers
173 views

Bresenham algorithm failure — continually going out of bounds

I'm prototyping a game using the Bresenham algorithm for player movement. I used the implementation under the "EDIT" here, but I don't store the points: Bresenham algorithm in Javascript I'm weak at ...
2
votes
1answer
471 views

OpenGL Line Drawing Artifacts

I am using OpenGL/GLUT to implement Bresenham's line drawing algorithm and having some issues with seemingly arbitrary artifacts showing up. Here is an example: Here is some code that I think may ...
2
votes
0answers
312 views

algorithm to rasterize and fill a hypersphere?

I'm trying to rasterize and fill a hypersphere. In essence, I have a d-dimensional grid of fixed size and a sphere (center, radius) and want to find out which cells of the grid overlap with the sphere ...
0
votes
1answer
183 views

Bresenham lines w/o diagonal movement

Is there a modified Bresenham algorithm, where the step from one pixel to the next one isn't allowed to be diagonally, just horizontally or vertically? Or any other algorithm which does that? (PHP ...
2
votes
1answer
539 views

Why Bresenham's line algorithm more efficent then Naive algorithim

For my graphics course we were taught the Naive line rasterizing algorithm then Bresenham's line drawing algorithm. We were told computers are integer machines which is why we should use the latter. ...
1
vote
2answers
1k views

c++ Bresenham's line algorithm draw arc and rotate

I'm searching way to make arc with Bresenham's line algorithm. This algoritm draw perfect circle, but what if i need draw arc (from 0 to Pi) and rotate it for 30 degrees (for example)? void ...
4
votes
1answer
3k views

Simplified Bresenham's line algorithm: What does it *exactly* do?

Based on Wikipedia's article on Bresenham's line algorithm I've implemented the simplified version described there, my Java implementation looks like this: int dx = Math.abs(x2 - x1); int dy = ...
1
vote
2answers
117 views

Bresenham line doesn't terminate

I've implemented the Bresenham algorithm from Wikipedia in python but for some lines it doesn't work, like from 1,0 to 0,1 it doesn't stop and keeps going on to make a super long line def line(x0, ...
3
votes
2answers
349 views

bresenham's line algorithm error

I had the following code of bresenham's algorithm which represents adapted to Scala Java code. def bresenham(x0: Int, y0: Int, x1: Int, y1: Int) = { import scala.math.abs val dx = abs(x1 - ...
2
votes
2answers
436 views

Bresenham algorithm [duplicate]

Possible Duplicate: how do I create a line of arbitrary thickness using Bresenham? How can I use Bresenham algorithm to draw lines of more than a pixel thick? Do i have to run the ...
11
votes
4answers
484 views

A* heuristic to create Bresenham lines

From what I understand about A* heuristics and how the Bresenham algorithm works, this may not be be possible since only the current state and goal state are passed to the heuristic function. But ...
1
vote
1answer
441 views

Optimising Bresenham by drawing many horizontal and vertical lines instead of pixels

I have a set of very efficient horizontal and vertical line drawing functions which can draw many pixels per cycle (for the horizontal one, ~4 pixels/cycle, and the vertical one ~0.25 pixels/cycle.) ...
5
votes
2answers
1k views

Algorithm for drawing a 4-connected line

I'm looking for an algorithm (coded in Java would be nice, but anything clear enough to translate to Java is fine) to draw a 4-connected line. It seems that Bresenham's algorithm is the most widely ...
3
votes
3answers
1k views

Drawing circle with Bresenham's Algorithm on OpenGL

I can draw a circle with the algorithm. However, the boundary looks weird, the pixels look so separate from each other. I want them to be closer. I have tried to bigger the point size. But the result ...
1
vote
1answer
300 views

implementing free hand drawing in ipad points missing problem

i am making a free hand ipad drawing app like "brushes" with some kind of brushes. my problem is that touchmove event misses some points on fast moving. so i want to get all these intermediate ...
0
votes
1answer
841 views

Simple Chase Game Movement Using Bresenham’s Line Algorithm

I'm creating a game where I'm trying to use Bresenham's line algorithm(http://en.wikipedia.org/wiki/Bresenham%27s_line_algorithm ) to have enemies chase a player on a 2D map. The concept of the game ...
8
votes
2answers
2k views

Bresenham algorithm in Javascript

I need a fast algorithm for calculating coordinates for a line between two points. I tried to find good JavaScript Bresenham implementation, but there are too many and quite confusing publications. In ...
0
votes
2answers
685 views

How was the decision variable in Bresenham Line Algorithm figured out?

Every articles I studied about Bresenham Line Algorithm, they talk about a decision variable Pi = dx * (d1 - d2) Where does the idea of this mathematical term come from? I mean, what was the ...
0
votes
1answer
414 views

Drawing fast lines in pygame

I'm trying to draw fast lines using pygame that aren't rendered directly to the screen. I've got a Python list as large as the number of pixels for the desired resolution, and store integer values ...
0
votes
1answer
374 views

Why isn't this bresenham line appearing where it should?

I'm writing a MS paint-like application (I'm not allowed to use opengl primitives). So far it only draws lines and points. I don't understand why when rendering a single point on click this code ...
-3
votes
3answers
2k views

Implementation for Bresenham's ellipse drawing algorithm in OpenGL [closed]

I'm looking for one to build a MS-paint like app.
3
votes
1answer
465 views

Looking for a fast outlined line rendering algorithm

I'm looking for a fast algorithm to draw an outlined line. For this application, the outline only needs to be 1 pixel wide. It should be possible, whether by default or through an option, to make two ...
2
votes
2answers
450 views

My implementation of Bresenham's algorithm fails for lines at certain angles

I've written an implementation of Bresenham's algorithm in Python (following the Wikipedia article), and it works correctly except for lines at certain angles. All lines that should extend between 45 ...
3
votes
6answers
1k views

Asteroids Game Movement In C#

I am trying to make the game Asteroids. My issue I have right now, is if you press the UP Arrow key, it will move the "ship" 10 pixels up. And if you hit the LEFT Arrow key, it will turn the "ship" 5 ...
4
votes
2answers
3k views

efficient algorithm for drawing circle arcs?

I am using the mid-point circle algorithm (bresenham circle) to efficiently draw whole circles. Is there something similar to draw circle arcs? I would like to specify a start angle and end angle and ...