Répondre à : Geogebra 3D

Accueil Forums Programmation WIMS Programmation d’exercices OEF Geogebra 3D Répondre à : Geogebra 3D

#5646
Jamal Karmati
Participant
Up
0
Down
::

Bonjour, merci pour le script. Je l’avais rebosser un peu hier pour obtenir ça :

\title{Pyramide Jmol}
\integer{n=random(3..4)}
\if{\n==3}{
\integer{a=\n-2}
\integer{b=\n-1} }{
\integer{a=\n-1}
\integer{b=\n} }

\text{m=\a,\b}
\text{rep= Une pyramide à base triangulaire, Un tétraèdre, Une pyramide dont la base est quadrilatère, Une pyramide dont la base est un poylgone à quatre cotés }
\text{data = \n==4?_# nom
# Data
\n+1 \n+1 2*\n
1 2 2
0 0 0
0 1 0
1 1 0
1 0 0
1 2 3 4
0 1 2
0 2 3
0 3 4
0 4 1
0 1
0 2
0 3
0 4
1 2
2 3
3 4
4 1:# nom
# Data
\n+1 \n+1 2*\n
1 2 2
0 0 0
0 1 0
1 0 0
1 2 3 
0 1 2
0 2 3
0 3 1
0 1
0 2
0 3
1 2
2 3
3 1}

\text{applet0=slib(geo3D/off2jmol \data,[SS,A],[green,green],[0.01,0.01],url)}
\text{applet=slib(chemistry/jmolshow \applet0[2],300,300,white,script "\applet0[1]";zoom 110)}

\statement{\m
 \applet }

\hint{En géométrie dans l'espace, les sommets sont les points de la figure. <br>
N'oubliez pas de compter la base ! }

\answer{Coche la(ou les) bonne(s) réponse(s)}{\m;\rep}{type=checkbox} 
\answer{Combien y a-t-il de faces?}{\n+1}{type=numeric}
\answer{Combien y a-t-il de faces latérales?}{\n}{type=numeric}
\answer{Combien y a-t-il de sommets ?}{\n+1}{type=numeric}
\answer{Combien y a-t-il d'arêtes?}{2*\n}{type=numeric}

Jamal