mark.warren
2019-11-15 14:54:46

If you are using big-bang in full screen mode are there any performance or other issues it is best to keep in mind?


soegaard2
2019-11-15 14:56:09

I don’t know of any performance issues wrt full screen.


soegaard2
2019-11-15 14:57:04

If you run into performance problems look into precomputing things.


soegaard2
2019-11-15 14:58:33

For example: If you have a pict with a car and use (mirror car) when drawing a car that points the other direction, you can pre-compute it (define mirrored-car (freeze (mirror car))) and then use mirrored-car.


mark.warren
2019-11-15 14:59:24

@soegaard2 Thanks, just trying to look ahead.


soegaard2
2019-11-15 14:59:33

Note the freeze btw.


mark.warren
2019-11-15 15:01:11

@soegaard2 Nice tip, thanks.