# Bug with points?

**URL:** https://discourse.processing.org/t/bug-with-points/35046
**Category:** Coding Questions
**Created:** [February 8, 2022, 4:08pm UTC](https://discourse.processing.org/t/bug-with-points/35046 "2022-02-08T16:08:20Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![hanslas](https://avatars.discourse-cdn.com/v4/letter/h/6a8cbe/32.png) [@hanslas](https://discourse.processing.org/u/hanslas)
#### Post date: [February 8, 2022, 4:08pm UTC](https://discourse.processing.org/t/bug-with-points/35046/1 "2022-02-08T16:08:20Z")

</div>

I’ve tried this very simple code during a Processing introduction course  
One of the students has a windows machine with a windows build 1904.1466 on it  
it turns out that the drawn line (so the points) at the last part is thinner than the rest of it. Is this explainable?

Thanks  
size(600,400);  
int x=0;  
while (x\<width) {  
println(x);  
point(x, 25);  
x=x+1;  
}

---

<div class="post-metadata">

### Author: ![hanslas](https://avatars.discourse-cdn.com/v4/letter/h/6a8cbe/32.png) [@hanslas](https://discourse.processing.org/u/hanslas)
#### Post date: [February 8, 2022, 4:09pm UTC](https://discourse.processing.org/t/bug-with-points/35046/2 "2022-02-08T16:09:21Z")

</div>

oops, btw forgot to mention we used the latest Processing version 4.0 Beta 5
