Bonjour,
Dans l'étude de M Critor, au paragraphe concernant les graphiques 3D, je vois
une "image de saturne" obtenue grâce à 3 fonctions. La troisième me pose problème :
je ne parviens pas à l'écrire partant "saturne pas rond".
La commande IFTE fonctionne, mais j'aimerais savoir comment écrire cette fonction
comme vous.
Merci d'avance et bonne journée.
Gérard.
Beta HP Prime 12951/12969: 3D, Python, étude de fonctions...
35 posts
• Page 4 of 4 • 1, 2, 3, 4
Re: Beta HP Prime 12951/12969: 3D, Python, étude de fonction
You do not have the required permissions to view the files attached to this post.
-
ggauny@live.frPremium
Niveau 9: IC (Compteur Infatigable)- Posts: 292
- Joined: 11 Mar 2015, 20:43
- Gender:
- Calculator(s):→ MyCalcs profile
Re: Beta HP Prime 12951/12969: 3D, Python, étude de fonction
Bonjour.
Il suffit lors de la saisie d'utiliser la touche juste à droite de la boîte à outils :
Il suffit lors de la saisie d'utiliser la touche juste à droite de la boîte à outils :
-
critorAdmin
Niveau 19: CU (Créateur Universel)- Posts: 41981
- Images: 15887
- Joined: 25 Oct 2008, 00:00
- Location: Montpellier
- Gender:
- Calculator(s):→ MyCalcs profile
- YouTube: critor3000
- Twitter: critor2000
- GitHub: critor
Re: Beta HP Prime 12951/12969: 3D, Python, étude de fonction
Merci beaucoup.
-
ggauny@live.frPremium
Niveau 9: IC (Compteur Infatigable)- Posts: 292
- Joined: 11 Mar 2015, 20:43
- Gender:
- Calculator(s):→ MyCalcs profile
-
critorAdmin
Niveau 19: CU (Créateur Universel)- Posts: 41981
- Images: 15887
- Joined: 25 Oct 2008, 00:00
- Location: Montpellier
- Gender:
- Calculator(s):→ MyCalcs profile
- YouTube: critor3000
- Twitter: critor2000
- GitHub: critor
Re: Beta HP Prime 12951/12969: 3D, Python, étude de fonction
Petit code d'une mire qui teste une liste de modes RGB incluse :
Avec le firmware beta, c'est RGB-888 qui produit une mire parfaite, comme on s'y attendait :
- Code: Select all
mireRGB(y,h,lc)
BEGIN
LOCAL s,p:=0,n,i:=1,yt:=y,str:="";
lc(SIZE(lc)+1):=0;
n:=SIZE(lc);
s:=h/n;
FOR i FROM 1 TO n DO
IF i<n THEN
str:=str+STRING(lc(i));
END;
FOR X FROM 0 TO W-1 DO
RECT_P(X,yt,X,yt+s,2^p*IP(X/(W-1)*(2^lc(i)-1)));
END;
yt:=yt+s;
p:=p+lc(i);
END;
TEXTOUT_P("RGB"+str+" ("+STRING(p)+"-bits)",0,y,1,RGB(255,255,255));
END;
EXPORT mire()
BEGIN
LOCAL lrgb:={{5,5,5},{5,6,5},{8,8,8}},i,n;
W:=320;
H:=240;
n:=SIZE(lrgb);
S:=H/n;
Y:=0;
FOR i FROM 1 TO n DO
mireRGB(Y,S,lrgb(i));
Y:=Y+S;
END;
WAIT(0)
END;
Avec le firmware beta, c'est RGB-888 qui produit une mire parfaite, comme on s'y attendait :
-
critorAdmin
Niveau 19: CU (Créateur Universel)- Posts: 41981
- Images: 15887
- Joined: 25 Oct 2008, 00:00
- Location: Montpellier
- Gender:
- Calculator(s):→ MyCalcs profile
- YouTube: critor3000
- Twitter: critor2000
- GitHub: critor
35 posts
• Page 4 of 4 • 1, 2, 3, 4
Who is online
Users browsing this forum: ClaudeBot [spider] and 1 guest