Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

if something == something show something and keep showing it

so when this is true i want to keep the images even when this turns false later

if (pose && label=="HowMuchCanYouSee"==true){
    
    let eyeR = pose.rightEye;
    let eyeL = pose.leftEye;
    let d = dist(eyeR.x, eyeR.y,eyeL.x, eyeL.y);
    
    
    //sharingan complete
    image(img1,pose.leftEye.x-d/2,pose.leftEye.y-d/2, d,d);
    image(img1,pose.rightEye.x-d/2,pose.rightEye.y-d/2, d,d);
}

>Solution :

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

I don’t understand why the condition looks like this label=="HowMuchCanYouSee"==true and not just this label=="HowMuchCanYouSee"

Anyway you may add a new flag to the story starting with false that will be turned to true the first time your code it’s hit, and after then, the condition will always pass because there’s flag===true put in OR:

var flag = false;
if( flag === true || (pose && label=="HowMuchCanYouSee") ){
    flag = true;
    //the rest of your code
}

Attention: the flag var is declared global. That’s not a good practice but it shows the concept.

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading