summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/generic/pst-solides3d/doc-en/par-projectioncercle_en_corr.tex
blob: 98ca34b8b1727c28b1c1fd696e39760a89c31608 (plain)
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
\section{Circles}

\subsection{Direct definition}

The object \texttt{cercle} allows us to define and draw a circle.
In the \texttt{pst-solides3d} package, a circle in 2D is defined
by its centre and radius.

We use the option \verb+args+ to specify the centre and radius of
the chosen circle. We can use coordinates or named variables.

The argument \texttt{[range=$t_{\rm min}$ $t_{\rm max}$]} allows %$
us to specify an arc of the chosen circle.

As for all the other object, we can save the circle data using the
option \texttt{name}.

\begin{LTXexample}[width=7.5cm]
\begin{pspicture}(-3,-3)(4,3.5)%
\psframe*[linecolor=blue!50](-3,-3)(4,3.5)
\psset{viewpoint=50 30 15,Decran=60}
\psset{solidmemory}
%% definition du plan de projection
\psSolid[object=plan,
   definition=equation,
   args={[1 0 0 0] 90},
   planmarks,
   name=monplan]
\psset{plan=monplan}
%% definition du point A
\psProjection[object=point,
   name=A,
   text=A,
   pos=ur](-2,1.25)
\psProjection[object=cercle,
   args=A 1,
   range=0 360]
\psProjection[object=cercle,
   args=1 1 .5,linecolor=blue,
   range=0 180]
\composeSolid
\end{pspicture}
\end{LTXexample}

\subsection{Some other definitions}

There are additional methods to define a circle in 2D. The options
\texttt{definition} and \texttt{args} give the following supported
methods:

\begin{itemize}

\item \texttt{[definition=ABcercle]};
\verb+args=+ $A$ $B$ $C$. 

A circle through the points $A$, $B$
and $C$.

\item \texttt{[definition=diamcercle]};
\verb+args=+ $A$ $B$. 

A circle with diameter $[AB]$.

\end{itemize}

\endinput