9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-30 04:29:05 +00:00

Merge pull request #830 from VolmitSoftware/Development

Development
This commit is contained in:
Brian Fopiano
2022-07-21 19:38:44 -07:00
committed by GitHub
12 changed files with 253 additions and 9 deletions

View File

@@ -75,4 +75,14 @@ public class Spiraler {
z += dz;
i++;
}
public int count() {
int c = 0;
while(hasNext()) {
next();
c++;
}
return c;
}
}