1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
%%
%% A DANTE-Edition example
%%
%% Example 36-00-13 on page 774.
%%
%% Copyright (C) 2011 Herbert Voss
%%
%% It may be distributed and/or modified under the conditions
%% of the LaTeX Project Public License, either version 1.3
%% of this license or (at your option) any later version.
%%
%% See http://www.latex-project.org/lppl.txt for details.
%%
%%
%% ====
% Show page(s) 1
%%
\documentclass[]{article}
\pagestyle{empty}
\setlength\textwidth{375.57637pt}
\setlength\parindent{0pt}
\usepackage[utf8]{inputenc}
\usepackage{pst-plot,graphicx}
\begin{document}
\psset{unit=1mm}
\resizebox{0.8\linewidth}{!}{%
\pspicture(-14,-13)(132,162)
\psset{xunit=10mm}
\pspolygon[fillstyle=solid,fillcolor=yellow!60]%
(0,28)(1,147)(2,110)(3,54)(4,17)(5,25)(6,4.5)(7,7.75)
(8,6)(9,5)(10,2)(11,3)(12,4.75)(13,3)
(13,0)(0,0)(0,28)
%
\pspolygon[fillstyle=solid,fillcolor=blue!40]%
(0,28)(1,144.5)(2,101)(3,42)(4,13.5)(5,16)(6,3)(7,5)
(8,4)(9,1.5)(10,.75)(11,1.5)(12,0)(13,2)
(13,0)(0,0)(0,28)
%
\pspolygon[fillstyle=solid,fillcolor=red!40]%
(0,27)(1,135)(2,95)(3,35)(4,12)(5,14)(6,2)(7,4.5)
(8,3)(9,1)(10,.75)(11,1.5)(12,0)(13,1.5)
(13,0)(0,0)(0,27)
%
\pspolygon[fillstyle=solid,fillcolor=green!50]%
(0,24)(1,105.5)(2,54)(3,22)(4,3.5)(5,7)(6,0)(7,1)
(8,1)(9,0)(10,0)(11,1.5)(12,0)(13,1.5)
(13,0)(0,0)(0,24)
%
\pspolygon[fillstyle=solid,fillcolor=cyan!60]%
(0,14)(1,67)(2,20)(3,18)(4,2)(5,6)(6,0)(7,1)
(8,1)(9,0)(10,0)(11,.5)(12,0)(13,.5)
(13,0)(0,0)(0,14)
%
\psset{unit=1mm}
\rput[lB](70,110){\psframe[fillstyle=solid,fillcolor=yellow!60](7,5)\rput[lB](10,1.5){Enlèvement burinant}}
\rput[lB](70,102){\psframe[fillstyle=solid,fillcolor=blue!40](7,5)\rput[lB](10,1.5){Marche}}
\rput[lB](70,94){\psframe[fillstyle=solid,fillcolor=red!40](7,5)\rput[lB](10,1.5){Plume}}
\rput[lB](70,86){\psframe[fillstyle=solid,fillcolor=green!50](7,5)\rput[lB](10,1.5){Charnière}}
\rput[lB](70,78){\psframe[fillstyle=solid,fillcolor=cyan!60](7,5)\rput[lB](10,1.5){Languette}}
\psaxes[tickstyle=bottom,ticksize=2pt,linewidth=.4pt,
Dx=1,dx=1truecm,Dy=10,dy=1.145truecm](130,160.35)
\rput[b]{90}(-11,80){Nombre de pièces}
\rput[t](65,-9){Longueur de la trace en mm}
\endpspicture%
}
\end{document}
|