(int start, int stop)
| 5038 | |
| 5039 | |
| 5040 | protected void textSentenceBreak(int start, int stop) { |
| 5041 | if (textBreakCount == textBreakStart.length) { |
| 5042 | textBreakStart = PApplet.expand(textBreakStart); |
| 5043 | textBreakStop = PApplet.expand(textBreakStop); |
| 5044 | } |
| 5045 | textBreakStart[textBreakCount] = start; |
| 5046 | textBreakStop[textBreakCount] = stop; |
| 5047 | textBreakCount++; |
| 5048 | } |
| 5049 | |
| 5050 | |
| 5051 | public void text(int num, float x, float y) { |