Home | History | Annotate | Download | only in monkey

Lines Matching defs:stepCount

502             int stepCount = Integer.parseInt(args[4]);
509 if (stepCount > 0) {
510 float xStep = (xEnd - xStart) / stepCount;
511 float yStep = (yEnd - yStart) / stepCount;
518 for (int i = 0; i < stepCount; ++i) {
547 int stepCount = Integer.parseInt(args[8]);
557 if (stepCount > 0) {
558 float pt1xStep = (pt1xEnd - pt1xStart) / stepCount;
559 float pt1yStep = (pt1yEnd - pt1yStart) / stepCount;
561 float pt2xStep = (pt2xEnd - pt2xStart) / stepCount;
562 float pt2yStep = (pt2yEnd - pt2yStart) / stepCount;
571 for (int i = 0; i < stepCount; ++i) {