Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
It did came to my mind to make "code tidy", but some functions are miles long and there is no helping.
Thanks for helping.
Your code seems to have too many tabs or spaces in it. One tab should do ya for each indent.
So thats what writing looks like from Croatia... Looks like Russian, sorta, no offense if taken...
for(x_left,x_right;(x_left>=548)||(x_right<=826);x_left-=10e-3,x_right+=10e-3){
// Can be written as
for(x_left,x_right;
(x_left>=548)||(x_right<=826);
x_left-=10e-3,x_right+=10e-3){
//
//
I guess Croatia has seen some hard times in the past. Glad your now able to enjoy some peace
Suggestions.
When exporting code for documentation replace tabs with spaces.
Use a smaller font to help longer lines fit.
As suggested by others put the text in a box or frame.
How you write the original code makes a big differance.
You have some very long lines which makes things worse.
Code:for(x_left,x_right;(x_left>=548)||(x_right<=826);x_left-=10e-3,x_right+=10e-3){ // Can be written as for(x_left,x_right; (x_left>=548)||(x_right<=826); x_left-=10e-3,x_right+=10e-3){ // //
Yeah, will do in future, I simply forgot that it will have to fit on paper,and I ain't changing all that code.
Can you print it in landscape mode ? Keep the text part and code part in different files. Print the code part in landscape mode. Combine the two after printing.
If that does not work. Bust the code up in page size chunks, stick them in a box and rotate them. You will have to play with word to see what you can do but landscape is the way to go.
3v0