-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #151 from ckormanyos/syntax_and_images
- Loading branch information
Showing
14 changed files
with
129 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 7 additions & 2 deletions
9
MandelbrotDiscovery/Resource.h → MandelbrotDiscovery/resource.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
/////////////////////////////////////////////////////////////////////////////// | ||
// Copyright Christopher Kormanyos 1996, 2022 - 2023. | ||
// Copyright Christopher Kormanyos 2024. | ||
// Distributed under the Boost Software License, | ||
// Version 1.0. (See accompanying file LICENSE_1_0.txt | ||
// or copy at http://www.boost.org/LICENSE_1_0.txt) | ||
// | ||
|
||
#define IDI_MANDELBROT_DISCO 101 | ||
#ifndef RESOURCE_2024_08_28_H | ||
#define RESOURCE_2024_08_28_H | ||
|
||
#define IDI_MANDELBROT_DISCO 101 | ||
|
||
#endif // RESOURCE_2024_08_28_H |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions
8
mandelbrot/cfg/mandelbrot_cfg_MANDELBROT_60_SATELITE_REGION_01.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
mandelbrot/cfg/mandelbrot_cfg_MANDELBROT_61_SATELITE_REGION_02.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/////////////////////////////////////////////////////////////////////////////// | ||
// Copyright Christopher Kormanyos 2024. | ||
// Distributed under the Boost Software License, | ||
// Version 1.0. (See accompanying file LICENSE_1_0.txt | ||
// or copy at http://www.boost.org/LICENSE_1_0.txt) | ||
// | ||
|
||
#ifndef MANDELBROT_CFG_MANDELBROT_61_SATELITE_REGION_02_2024_08_29_H | ||
#define MANDELBROT_CFG_MANDELBROT_61_SATELITE_REGION_02_2024_08_29_H | ||
|
||
constexpr char MANDELBROT_FILENAME_STRING[] = "MANDELBROT_61_SATELITE_REGION_02"; | ||
|
||
constexpr int MANDELBROT_COORD_PNT_DIGITS10 = 58; | ||
constexpr int MANDELBROT_ITERATION_DIGITS10 = 58; | ||
constexpr int MANDELBROT_CALCULATION_PIXELS_X = 2048; | ||
constexpr int MANDELBROT_CALCULATION_PIXELS_Y = 2048; | ||
constexpr int MANDELBROT_CALCULATION_ITERATIONS = 8000; | ||
|
||
constexpr char MANDELBROT_POINT_DX_HALF[] = "1.15E-31"; | ||
constexpr char MANDELBROT_POINT_DY_HALF[] = "1.15E-31"; | ||
constexpr char MANDELBROT_POINT_CENTER_X[] = "-1.9771841957832528683253271547935727033203125"; | ||
constexpr char MANDELBROT_POINT_CENTER_Y[] = "+0.0003701587934278647349697471824343197265625"; | ||
|
||
#define MANDELBROT_GENERATOR_TYPE mandelbrot_generator_trivial // NOLINT(cppcoreguidelines-macro-usage) | ||
|
||
#include <mandelbrot/cfg/mandelbrot_cfg.h> | ||
|
||
#endif // MANDELBROT_CFG_MANDELBROT_61_SATELITE_REGION_02_2024_08_29_H |
28 changes: 28 additions & 0 deletions
28
mandelbrot/cfg/mandelbrot_cfg_MANDELBROT_62_SATELITE_REGION_03.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/////////////////////////////////////////////////////////////////////////////// | ||
// Copyright Christopher Kormanyos 2024. | ||
// Distributed under the Boost Software License, | ||
// Version 1.0. (See accompanying file LICENSE_1_0.txt | ||
// or copy at http://www.boost.org/LICENSE_1_0.txt) | ||
// | ||
|
||
#ifndef MANDELBROT_CFG_MANDELBROT_62_SATELITE_REGION_03_2024_08_29_H | ||
#define MANDELBROT_CFG_MANDELBROT_62_SATELITE_REGION_03_2024_08_29_H | ||
|
||
constexpr char MANDELBROT_FILENAME_STRING[] = "MANDELBROT_62_SATELITE_REGION_03"; | ||
|
||
constexpr int MANDELBROT_COORD_PNT_DIGITS10 = 114; | ||
constexpr int MANDELBROT_ITERATION_DIGITS10 = 24; | ||
constexpr int MANDELBROT_CALCULATION_PIXELS_X = 2048; | ||
constexpr int MANDELBROT_CALCULATION_PIXELS_Y = 2048; | ||
constexpr int MANDELBROT_CALCULATION_ITERATIONS = 12000; | ||
|
||
constexpr char MANDELBROT_POINT_DX_HALF[] = "1.45E-89"; | ||
constexpr char MANDELBROT_POINT_DY_HALF[] = "1.45E-89"; | ||
constexpr char MANDELBROT_POINT_CENTER_X[] = "-1.711024498065425783442616962887150075536644429276936212772197371643420276616709106166700677273062220703125"; | ||
constexpr char MANDELBROT_POINT_CENTER_Y[] = "+0.003998130357843762350089770108611803382417083111382471700501416344256825824943651749566227455277501953125"; | ||
|
||
#define MANDELBROT_GENERATOR_TYPE mandelbrot_generator_perturbative // NOLINT(cppcoreguidelines-macro-usage) | ||
|
||
#include <mandelbrot/cfg/mandelbrot_cfg.h> | ||
|
||
#endif // MANDELBROT_CFG_MANDELBROT_62_SATELITE_REGION_03_2024_08_29_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters