AddPoint
Description :
Cette fonction permet de placer un point dans un graphique.
Syntaxe :
ADDPOINT GraphName X Y
Variables :
Paramètre | Entrées / Sorties | Type | Description |
GraphName | Entrée | Graphe | Nom interne du graphe à ouvrir dans le programme PGM |
X | Entrée | Entier / Réel | Coordonnée suivant X du point |
Y | Entrée | Entier / Réel | Coordonnée suivant Y du point |
Voir aussi :
Exemple :
OpenGraph graph "lines" "graphe d'essai" "X" "Y" for i=1 10 AddPoint graph i i*i/10 next i Télécharger l'exemple |