Estimated Draw Time.
- This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Shop › Forum › Makelangelo Polargraph Art Robot › Estimated Draw Time.
Hello Forums!
I am quite ignorant of how the Java program works, what exactly is the method used to calculate the draw time?
Cheers,
Hi!
function time_for_one_line() {
return length of line / drawing speed.
}
sum=0;
for( all lines x ) {
sum += time_for_one_line(x) + estimated line processing time (5ms?)
}
it’s not fantastic but it’s better than nothing. Can you come up with a more accurate method?