Répondre à : dessiner des portions de fonctions sur un même graphe

Accueil Forums Programmation WIMS Programmation d’exercices OEF dessiner des portions de fonctions sur un même graphe Répondre à : dessiner des portions de fonctions sur un même graphe

#7472
jm.evers
Participant
Up
0
Down
::

Hi,
Added (SVN) to canvasdraw a new command :
newrange xmin,xmax,ymin,ymax
objects defined after command will make use of this new range
Be aware -for now- there can be only one command ‘grid’
An additional grid in the newly defined x/y-range must be created manually
(e.g. using commands like ‘segments’ ‘string’ etc etc etc)
[code]
size 400,400
xrange -10,10
yrange -10,10
fontfamily Italic 12px Courier
axis
axisnumbering
precision 1
grid 1,1,orange,10,10,2,orange
newrange 0,5,0,5
jscurve red,3*x+2
zoom red
[/code]

Hope this solves your issue…

joke