[PR #1345] [CLOSED] feat: Added the Mandelbrot set formula #1945

Open
opened 2026-01-29 15:26:33 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1345
Author: @andreyvdl
Created: 10/11/2023
Status: Closed

Base: masterHead: master


📝 Commits (3)

  • d2c7086 feat: added the formula of mandelbrot
  • 3d36b2f style+docs: added documentation and changed return style
  • 26439fb test: added 5 tests for true and false

📊 Changes

1 file changed (+104 additions, -0 deletions)

View changed files

graphics/mandelbrot.c (+104 -0)

📄 Description

Description of Change

Added ONLY the formula that tells if the passed real and imaginary numbers are part of the Mandelbrot set.

References

None

Checklist

  • Added description of change
  • Added file name matches File name guidelines
  • Added tests and example, test must pass
  • Relevant documentation/comments is changed or added
  • PR title follows semantic commit guidelines
  • Search previous suggestions before making a new one, as yours may be a duplicate.
  • I acknowledge that all my contributions will be made under the project's license.

Notes: I didn't make the graphical feature, if any other contributor want to make, feel free and happy on doing it.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheAlgorithms/C/pull/1345 **Author:** [@andreyvdl](https://github.com/andreyvdl) **Created:** 10/11/2023 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (3) - [`d2c7086`](https://github.com/TheAlgorithms/C/commit/d2c708663914dbb792a6a20ded9aa6f2b536823b) feat: added the formula of mandelbrot - [`3d36b2f`](https://github.com/TheAlgorithms/C/commit/3d36b2f61f7cbb395b0142d56d17e01431ae1715) style+docs: added documentation and changed return style - [`26439fb`](https://github.com/TheAlgorithms/C/commit/26439fbf2763f8e9c84eec0bae76427d26cdfcd4) test: added 5 tests for true and false ### 📊 Changes **1 file changed** (+104 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `graphics/mandelbrot.c` (+104 -0) </details> ### 📄 Description #### Description of Change Added ONLY the formula that tells if the passed real and imaginary numbers are part of the Mandelbrot set. #### References None #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [x] Added description of change - [x] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#File-Name-guidelines) - [x] Added tests and example, test must pass - [x] Relevant documentation/comments is changed or added - [x] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [x] Search previous suggestions before making a new one, as yours may be a duplicate. - [x] I acknowledge that all my contributions will be made under the project's license. Notes: I didn't make the graphical feature, if any other contributor want to make, feel free and happy on doing it. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:26:33 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1945