Affichage des articles dont le libellé est cercle. Afficher tous les articles
Affichage des articles dont le libellé est cercle. Afficher tous les articles

samedi 9 octobre 2010

Exercice 19 : Le limaçon de Pascal


Tutoriels utilisés : 2,7.




Sorry, the GeoGebra Applet could not be started. Please make sure that Java 1.5 (or later) is installed and active in your browser (Click here to install Java now)

dimanche 3 octobre 2010

Tutoriel Javascript 6: Animer un point

























Fonctions et boutons :

<script type="text/javascript">

var nTimerID = 0;
var vitesse = 100;


function tracecercle()
{
var app = document.ggbApplet;
app.setRepaintingActive(false);
app.evalCommand("O=(0,0)");
app.evalCommand("A=(3,4)");
app.evalCommand("C=Cercle[O,A]");
app.evalCommand("M=Point[C]");
app.evalCommand("s=Segment[O,M]");
app.setLabelVisible('C',false);
app.setLabelVisible('s',false);
app.setVisible('A',0);
app.setRepaintingActive(true);
}

function avance()
{
var app = document.ggbApplet;
n=6.28*Math.random();
cosn=5*Math.cos(n);
sinn=5*Math.sin(n);
app.setCoords('M',cosn,sinn);
}

function CalledByTimer() 
{
// Bouge le point "M"
if (nTimerID == 0) return true;
avance();
}


function Animer(vite) 
{
// Anime le point M

if (nTimerID==0) {
   nTimerID = setInterval('CalledByTimer()',vite)}
}

function moinsvite()
{
vitesse=vitesse+50;
Animer(vitesse);

}

function plusvite()
{
vitesse=vitesse-10;
Animer(vitesse);

}
</script>
 
<input onclick="tracecercle();" type="button" value="Afficher la figure" /><br />
<input onclick="avance();" type="button" value="Modifier la position de M" /><br />
<input type="button" value="Animer M" onclick="Animer(vitesse);">
<input type="button" value="Stop" onclick="clearInterval(nTimerID);  nTimerID=0;"><br /
<input type="button" value="Moins vite (appuyer sur Stop pour continuer de décélérer)" onclick="moinsvite();">
<input type="button" value="Plus vite (appuyer sur Stop pour continuer d'accélérer)" onclick="plusvite();"><br /
<input type="button" value="RAZ"    onclick="document.ggbApplet.reset();vitesse=100;
            if (nTimerID !=0) { clearInterval(nTimerID);  nTimerID=0;}"> 


Voir aussi:  

samedi 2 octobre 2010

Tutoriel 26 : Calcul formel


A partir de GeoGebra  4. 


A noter que le logiciel ne prend pas encore en compte le dénominateur dans la résolution d'une équation de type `A/B=0`.







Sorry, the GeoGebra Applet could not be started. Please make sure that Java 1.5 (or later) is installed and active in your browser (Click here to install Java now)

mardi 21 septembre 2010

Exercice 14: Construction d'un pentagone régulier


Tutoriels utilisés 6, 11, 19.





Sorry, the GeoGebra Applet could not be started. Please make sure that Java 1.4.2 (or later) is installed and active in your browser (Click here to install Java now)



Preuve: ici


dimanche 19 septembre 2010

Exercice 9: Cercle trigonométrique et arc associés


Tutoriels utilisés 4,5,6,8,13.





Sorry, the GeoGebra Applet could not be started. Please make sure that Java 1.4.2 (or later) is installed and active in your browser (Click here to install Java now)

samedi 18 septembre 2010

Tutoriel 13: Trigonométrie, fonction sinus











Sorry, the GeoGebra Applet could not be started. Please make sure that Java 1.4.2 (or later) is installed and active in your browser (Click here to install Java now)

Tutoriel 9: Les translations











Sorry, the GeoGebra Applet could not be started. Please make sure that Java 1.4.2 (or later) is installed and active in your browser (Click here to install Java now)