Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

163
Views
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);
}
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

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.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!