import java.util.Calendar;
import java.util.GregorianCalendar;
int dayOfWeek() { // : 0 to 6, 0 is Sunday
Calendar cal = new GregorianCalendar();
int DAY_OF_WEEK=cal.get(cal.DAY_OF_WEEK);
return DAY_OF_WEEK-1;
}
import java.util.Calendar;
import java.util.GregorianCalendar;
int dayOfWeek() { // : 0 to 6, 0 is Sunday
Calendar cal = new GregorianCalendar();
int DAY_OF_WEEK=cal.get(cal.DAY_OF_WEEK);
return DAY_OF_WEEK-1;
}
Hello @EricRogerGarcia,
Thanks for sharing your idea! For Processing feature requests, the best place is to open a GitHub issue so the team can review and track it there.
Raphaƫl