blob: a195d2bacee78f3be58ebf2f04c0338f25778e5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
\input{preamble-standalone.ltx}
\begin{document}
% Ex. No. 82 (Section 10.6.2 : \tkzcname{tkzClip} et l'option \tkzname{space})
\begin{tikzpicture}
\tkzInit[xmax=3, ymax=3]
\tkzGrid \tkzAxeXY
\tkzClip[space=-0.5]
\draw[red] (-0.5,-0.5)--(3.5,3.5);
\end{tikzpicture}
\end{document}
|