\documentclass[border=15mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{intersections}
\begin{document}
\begin{tikzpicture}[
scale=0.5,
very thick,
fill opacity=.5
]
\pgfdeclarelayer{pre main}
\pgfsetlayers{pre main,main}
\newcommand\D{10cm}
\tikzset{
KreisLinks/.style={insert path={(.5*\D,.5*\D)circle[radius=.5*\D]}},
KreisRechts/.style={insert path={(1.5*\D,.5*\D)circle[radius=.5*\D]}},
Diagonalendreieck/.style={insert path={(0,0)--+(2*\D,\D)--+(2*\D,0)--cycle}},
reverseclip/.style={insert path={(current bounding box.south west)rectangle(current bounding box.north east)}}
}
\draw[name path=Rechteck](0,0) rectangle +(2*\D,\D);
\draw[
path picture={\fill[orange][Diagonalendreieck];},
name path=KreisLinks
] [KreisLinks];
\draw[
path picture={\fill[blue][Diagonalendreieck];},
name path=KreisRechts
] [KreisRechts];
\draw (0,0) -- +(2*\D,\D);
\path [name intersections={of=KreisLinks and Rechteck,name=KL}];
\path [name intersections={of=KreisRechts and Rechteck,name=KR}];
\pgfonlayer{pre main}
\begin{scope}
Mit der
fillbetween
-Library.OK, damit komme ich schonmal etwas weiter - siehe edit.