area texte anlyse ok
This commit is contained in:
parent
d16e9a891d
commit
82660e65c3
|
@ -510,7 +510,11 @@ function animate() {
|
||||||
ctx.clearRect(0, 0, canvas.width, canvas.height)
|
ctx.clearRect(0, 0, canvas.width, canvas.height)
|
||||||
|
|
||||||
traitement_analyse()
|
traitement_analyse()
|
||||||
|
try {
|
||||||
|
if (!input2.matches(":focus")) {
|
||||||
|
input2.focus()
|
||||||
|
}
|
||||||
|
} catch (e) {}
|
||||||
|
|
||||||
}
|
}
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -14,7 +14,8 @@ function init_variable_analyse(){
|
||||||
// }
|
// }
|
||||||
checkbox_clicked_courant = {idx_checkbox:[], mots:[]}
|
checkbox_clicked_courant = {idx_checkbox:[], mots:[]}
|
||||||
// Analayse des choix avec les checkboxs
|
// Analayse des choix avec les checkboxs
|
||||||
keywords = shuffle(["Side view", "Front view", "Global view", "Eyes contact", "Pleasant", "Recognizable"]).concat(["Other:"])
|
keywords_init = ["Side view", "Front view", "Global view", "Eyes contact", "Pleasant", "Recognizable"]
|
||||||
|
keywords = shuffle(keywords_init).concat(["Other:"])
|
||||||
|
|
||||||
y_recap = 0.2*window.innerHeight
|
y_recap = 0.2*window.innerHeight
|
||||||
taille_texte_explication = 0.01*window.innerWidth
|
taille_texte_explication = 0.01*window.innerWidth
|
||||||
|
@ -47,8 +48,8 @@ function affichage_analyse(idx_tache){
|
||||||
for (let i=0; i<nb_choix_demande; i++){
|
for (let i=0; i<nb_choix_demande; i++){
|
||||||
affichage_legende(i)
|
affichage_legende(i)
|
||||||
x_recap = (i+1)*x_recap_init + i*(H_3D/2)
|
x_recap = (i+1)*x_recap_init + i*(H_3D/2)
|
||||||
//ctx.drawImage(canvasMins[i], x_recap, y_recap, H_3D/2, H_3D/2)
|
ctx.drawImage(canvasMins[i], x_recap, y_recap, H_3D/2, H_3D/2)
|
||||||
draw_contour( x_recap, y_recap, H_3D/2, H_3D/2, "rgb(255,0,0)")
|
//draw_contour( x_recap, y_recap, H_3D/2, H_3D/2, "rgb(255,0,0)")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -117,7 +118,7 @@ function action_bouton_valider_analyse(){
|
||||||
}
|
}
|
||||||
//RAZ pour la prochaine analyse
|
//RAZ pour la prochaine analyse
|
||||||
checkbox_clicked_courant = {idx_checkbox:[], mots:[]}
|
checkbox_clicked_courant = {idx_checkbox:[], mots:[]}
|
||||||
keywords = shuffle(keywords).concat(["Other:"])
|
keywords = shuffle(keywords_init).concat(["Other:"])
|
||||||
toto = document.getElementById('texte_area')
|
toto = document.getElementById('texte_area')
|
||||||
if (toto!= null){toto.parentElement.removeChild(toto)}
|
if (toto!= null){toto.parentElement.removeChild(toto)}
|
||||||
// analyse suivant
|
// analyse suivant
|
||||||
|
|
|
@ -378,7 +378,7 @@ function action_bouton_pose(){
|
||||||
|
|
||||||
// si on a pas encore choisie toutes nos poses, on peut en ajouter
|
// si on a pas encore choisie toutes nos poses, on peut en ajouter
|
||||||
if (nb_choix_fait < nb_choix_demande && !(deja_choisie)){
|
if (nb_choix_fait < nb_choix_demande && !(deja_choisie)){
|
||||||
liste_poses.push(['choix'+(nb_choix_fait+1), theta, delta, idx_i, idx_j])
|
liste_poses.push(['choix'+(nb_choix_fait+1), {'theta':theta}, {"delta":delta}, {'idx_i':idx_i}, {'idx_j':idx_j}])
|
||||||
// affichage de la vue sélectionnée dans le recap
|
// affichage de la vue sélectionnée dans le recap
|
||||||
ctxMins[nb_choix_fait].drawImage(canvasRenderer, 0.5*canvasRenderer.width-0.5*canvasRenderer.height, 0, canvasRenderer.height, canvasRenderer.height, 0, 0, canvasMins[0].width, canvasMins[0].height)//canvasRenderer.height*0.3, canvasRenderer.height*0.25)
|
ctxMins[nb_choix_fait].drawImage(canvasRenderer, 0.5*canvasRenderer.width-0.5*canvasRenderer.height, 0, canvasRenderer.height, canvasRenderer.height, 0, 0, canvasMins[0].width, canvasMins[0].height)//canvasRenderer.height*0.3, canvasRenderer.height*0.25)
|
||||||
nb_choix_fait = nb_choix_fait+1
|
nb_choix_fait = nb_choix_fait+1
|
||||||
|
|
Loading…
Reference in New Issue