Update Parameters.md

This commit is contained in:
nilsberglund-orleans 2021-07-27 19:05:38 +02:00 committed by GitHub
parent 3a024d217b
commit 9ba9609c86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 17 deletions

View File

@ -12,24 +12,24 @@ updated gradually.
**Program: wave_billiard.c**
> #define MOVIE 1 /* set to 1 to generate movie */
>
> /* General geometrical parameters */
>
> #define WINWIDTH 1280 /* window width */
> #define WINHEIGHT 720 /* window height */
>
> #define NX 1280 /* number of grid points on x axis */
> #define NY 720 /* number of grid points on y axis */
>
> #define XMIN -1.8
> #define XMAX 1.8 /* x interval */
> #define YMIN -1.0125
> #define YMAX 1.0125 /* y interval for 9/16 aspect ratio */
>
> #define JULIA_SCALE 1.0 /* scaling for Julia sets */
``` #define MOVIE 1 /* set to 1 to generate movie */
```/* Choice of the billiard table */
/* General geometrical parameters */
#define WINWIDTH 1280 /* window width */
#define WINHEIGHT 720 /* window height */
#define NX 1280 /* number of grid points on x axis */
#define NY 720 /* number of grid points on y axis */
#define XMIN -1.8
#define XMAX 1.8 /* x interval */
#define YMIN -1.0125
#define YMAX 1.0125 /* y interval for 9/16 aspect ratio */
#define JULIA_SCALE 1.0 /* scaling for Julia sets */
/* Choice of the billiard table */
#define B_DOMAIN 3 /* choice of domain shape */