Class 4 definitive

This commit is contained in:
Miguel Buenache 2018-10-30 18:20:35 +01:00
parent 0e73c84d9a
commit d748f9bcb5
2 changed files with 8 additions and 4 deletions

Binary file not shown.

View File

@ -26,13 +26,17 @@ a^2+b^2=c^2,
\]
\begin{tikzpicture}
\draw[line width=2 pt] (-2,-2)rectangle(2,2);
\draw[color=red] (-1,-2)--(2,-1);
\draw[color=blue] (2,-1)--(1,2);
\draw[color=green] (1,2)--(-2,1);
\draw[color=yellow] (-2,1)--(-1,-2);
\draw[color=red,line width=2 pt] (-1,-2)--(2,-1);
\draw[color=blue,line width=2 pt] (2,-1)--(1,2);
\draw[color=green,line width=2 pt] (1,2)--(-2,1);
\draw[color=yellow,line width=2 pt] (-2,1)--(-1,-2);
\node[below]at (-1.5,-2){$a$};
\node[below]at (-2.5,-0.5){$b$};
\node[below]at (-1,-0.5){$c$};
\fill[color=pink] (-1,-2) circle (3pt);
\fill[color=pink] (2,-1) circle (3pt);
\fill[color=pink] (1,2) circle (3pt);
\fill[color=pink] (-2,1) circle (3pt);
\end{tikzpicture}