Mon problème semble simple, mais je rame. J'aimerais avoir deux dessins côte à côte dans un seul fichier graphique. Pour cela j'ai fait:
Code : Tout sélectionner
import three;
import graph3;
import solids;
size(10cm);
picture pic1, pic2;
limits(pic1, O,X+Y+Z);
currentprojection=obliqueZ(30);
xaxis3(pic1, Label("$x$",1),black+1, Arrow3);
yaxis3(pic1, Label("$y$",1),black+1,Arrow3);
zaxis3(pic1, Label("$z$",1),black+1,Arrow3);
limits(pic2, O,X+Y+Z);
currentprojection=obliqueZ(60);
xaxis3(pic2, Label("$x$",1),black+1, Arrow3);
yaxis3(pic2, Label("$y$",1),black+1,Arrow3);
zaxis3(pic2, Label("$z$",1),black+1,Arrow3);
add (currentpicture, pic1);
add (currentpicture, pic2, (2,0));
Code : Tout sélectionner
warning [unbounded]: x scaling in picture unbounded
warning [unbounded]: y scaling in picture unbounded
Merci d'avance et bonne fin de journée