Add files via upload

This commit is contained in:
tiera3 2024-10-02 15:56:09 +10:00 committed by GitHub
parent f1df1aeebb
commit 780dab0935
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 4 deletions

View file

@ -26,14 +26,15 @@ public class CardRun extends Rotater<String> {
}
public int iterate() {
if( stripeLen ==0 ){
if ( stripeLen ==0 ){
return super.iterate();
if( stripeDepth < stripeWidth ){
}
if ( stripeDepth < stripeWidth ){
++stripeDepth;
return super.iterate(-stripeLen);
}
stripeDepth= 1;
if this.isEdge(stripeLen){
if ( this.isEdge(stripeLen)){
this.stripeWidth= this.nextWidth();
return super.iterate(-1);
}

View file

@ -52,7 +52,7 @@ public class Rotater<T> {
}
public int iterate() {
return iterate(1)'
return this.iterate(1);
}
public T getNext() {