Code : Tout sélectionner
import fontsize;
unitsize(50);
defaultpen(fontsize(20pt)+3);
usepackage("xcolor");
dot((0, 1), 2bp + red);
label("$(a + b)^3 = \mathcolor[RGB]{237, 128, 4}{a^3} + \mathcolor[RGB]{0, 112, 192}{3a^2b} + \mathcolor[RGB]{84, 178, 68}{3ab^2} + \mathcolor[RGB]{249, 61, 95}{b^3}$", (0, 0));
Code : Tout sélectionner
import three;
import fontsize;
unitsize(50);
defaultpen(fontsize(20pt)+3);
usepackage("xcolor");
dot((0, 1, 0), 2bp + red);
label("$(a + b)^3 = \mathcolor[RGB]{237, 128, 4}{a^3} + \mathcolor[RGB]{0, 112, 192}{3a^2b} + \mathcolor[RGB]{84, 178, 68}{3ab^2} + \mathcolor[RGB]{249, 61, 95}{b^3}$", (0, 0, 0));