u/Rude-Flan-404

▲ 25 r/raylib

Cellular automata simulation

Hello everyone, I've made a zero player game cellular automata simulation with C++ - Conweys game of Life.

The rule of the game is very simple:

The world is an infinite grid and A cell would be alive if it had 2-3 neighbours alive.

It can die by under and overpopulation.

That's it.

But to render and simulate I've made the world as a 100x100 grid with a torus wrap. This is a very fun way to learn and spend time.

To use this all you have to do is just open the file and run the code. By default it has an Acorn Pattern and a ready to use other two patterns.

So yeah take a look at my GitHub and give my repo a star.

GitHub: https://github.com/Radhees-Engg

u/Rude-Flan-404 — 1 day ago
▲ 21 r/raylib

https://reddit.com/link/1t76kzy/video/0b6nq2aaqwzg1/player

made a transparent floating 3D cube that sits on your desktop, rotates forever, bobs up and down like it's vibing to music you can't hear. you can put ANY texture on it. minecraft block, meme, your cat's face, that one photo you should've deleted. full creative freedom. zero responsibility.
built it with Raylib + Windows API and wrote an auto installer so you don't have to touch a single line of code. no VS22, no cmake, no "why isn't this linking"
How to download and how to run all is in my GitHub repo. All you have to do is donwload the files and run the install.bat file that's it. Even if you don't have raylib or a compiler it'll download automatically. I even attached some textures in my repo you could use that too including diamond_ore.

repo is right here → [ https://github.com/Radhees-Engg/floating-widget-cube\ ]

would love to know what textures you guys put on it 👀

reddit.com
u/Rude-Flan-404 — 14 days ago
▲ 1 r/raylib

https://reddit.com/link/1t661if/video/8bb08hf0vozg1/player

see in the video Idk whether you can see it or not but yeah it's not just jittering but also a ghost cube is forming.
First of all, I made the window transparent and trying to move the window. So, This is the exact code which I'm using to move the Cube which I pasted at the end. How to solve this
Tell me friends other than this is look cool isn't it 😄

void MoveScreen(Vector2 winPos, Vector2 mousePosDelta)

{

if (IsMouseButtonDown(MOUSE\_BUTTON\_LEFT))

{

	SetWindowPosition(winPos.x + mousePos.x, winPos.y + mousePos.y);

}

}

reddit.com
u/Rude-Flan-404 — 15 days ago
▲ 99 r/raylib+1 crossposts

Tried combining two of my favourite things and enjoyed it. Like I love both the IMUs and Raylib which is a graphical library and Last day I got an Idea ' let's Visualize the Real world data with Raylib ' and I did this. Turns out to be pretty good and yeah a fun way to spend time.

I filtered the IMU noise with a compliment filter and Calibrated it and

I sent the IMU data to my PC via a MCU in COM4 Which is a serial port and with the help of ' serialib ' library I read those values in Raylib code and used it.

Yeah a fun way to spend time and if you want the code I'll give my GitHub link. So yeah take a look and let me know what you think :)

IMU Raylib visulaization

serialib - serial library for C++

u/Rude-Flan-404 — 16 days ago

hello guys, I'm an Automation Student and this is my first web app which I've made.

I usually do lots of stuffs in my free time and a lot of them are related to graphical programming. One day me and friend were playing with this FALMES kind of thing so I got an Idea of making a webapp so everyone could use it. But the problem is that I had no idea and the Programming languages I knows are C/C++,Py that's it. I used PY and Flask. my friend did the frontend since he knows HTML and that's the only language that he knows LoL.
and yeah this is my webapp link
https://cupids-algorithm--radheesvolley.replit.app/
and yeah Don't worry I'm not storing any data or anything like that :), why I'm saying this is all of my classmates asked this same question " are you storing the data ". so yeah check it out guys.
I only used replit to deploy that's it
Eng isn't my first language and If I made any mistake just yk ignore it :)

u/Rude-Flan-404 — 17 days ago