Why do I have bigger circles in the bottom right | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

Why do I have bigger circles in the bottom right

Hi everyone ! I've been working on a little project to make an hyperspace animation on web : https://code.sololearn.com/W2WT5FBhcA61 My problem with my app is that I have more bigger stars on the Bottom right, but I don't know why. My programm seems to spawns stars symetrically with same properties. Can someone help me find out where the problem is ?

5th Jun 2019, 7:42 AM
Romain P.
Romain P. - avatar
3 Answers
+ 1
Hey Romain! It seems like you've missed the center of the frame while calculating the distance here, //distance from the center d = Math.sqrt(curX*curX + curY*curY); Also, can you explain me why did you chose "50" as a value? Is there some kind of logic I'm missing? //move star toward the edge curX += speed*(curX-50)/d; curY += speed*(curY-50)/d;
5th Jun 2019, 8:11 AM
777
777 - avatar
+ 2
Thanks for your answer. Indeed I forgot that cx and cy attributes where from top-left corner and not center. That explains why circles grow bigger on the bottom-left. The 50 in my code is because I made coordonates in % so 50% is half the screen. But I should change it to get the coordinates of the spawner instead. And reverse it to have it increase speed the further from the center instead of decreasing as it does with old code.
5th Jun 2019, 8:19 AM
Romain P.
Romain P. - avatar
0
I don't know what you're talking about, but amazing code lol
4th Sep 2019, 1:46 AM
Andrew Johnson
Andrew Johnson - avatar