Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~167 People Reached
Favorite Forums

2 Posted Topics

Member Avatar for zephyrionmc

I'm new to programming and really excited to dive in. I've been playing Minecraft a lot lately, and I got inspired to build my own Circle Generator Tool to help with building perfect circles in-game. I'm thinking of using HTML, CSS, and JavaScript to make a simple web-based version, like …

Member Avatar for Dani
0
19
Member Avatar for jackwells

I came across some reference code that might help with the circle generation logic. It's based on the ellipse equation to plot pixel points accurately: function generateCircle(width, height, mode) { const points = []; const centerX = (width - 1) / 2; const centerY = (height - 1) / 2; …

Member Avatar for zephyrionmc
1
148

The End.