Source
usecolor
-2 2 setxrange
-2 3 setyrange

%% echelle
100 setxunit

%% position de la camera
3 10 6 SetCamPos
0 0 0 SetCamView

2 setlinejoin 

%% dessin de la sphere
/aretescachees false def
.5 setlinewidth         %% epaisseur du trait
.6 setgray              %% niveau de gris
2 [18 36] newsphere     %% rayon + nb d'horizontales et verticales
drawsolid

%% les axes
0 2 2 axesRVB

%% r, theta, phi
/A {2 0 0} def
/B {2 0 90} def
/C {2 90 90} def

%% les essais
1.5 setlinewidth
bleu
A B arcspherique
A C arcspherique
B C arcspherique

%% on marque les points
orange
A rtp2xyz point3d
C rtp2xyz point3d
B rtp2xyz point3d

noir
.4 setlinewidth
pointilles
[0 0 0 A rtp2xyz] ligne3d
[0 0 0 B rtp2xyz] ligne3d
[0 0 0 C rtp2xyz] ligne3d

%% orange
%% 2 35 65 120 65 arcspherique
%% rouge
%% 2 35 65 80 120 arcspherique

%% et on inscrit leurs noms
noir
18 setfontsize
setTimesItalic
   (A) A rtp2xyz uctext3d
   (B) B rtp2xyz cltext3d
   (C) C rtp2xyz urtext3d