(int start, int stop)
| 4968 | |
| 4969 | |
| 4970 | protected void textSentenceBreak(int start, int stop) { |
| 4971 | if (textBreakCount == textBreakStart.length) { |
| 4972 | textBreakStart = PApplet.expand(textBreakStart); |
| 4973 | textBreakStop = PApplet.expand(textBreakStop); |
| 4974 | } |
| 4975 | textBreakStart[textBreakCount] = start; |
| 4976 | textBreakStop[textBreakCount] = stop; |
| 4977 | textBreakCount++; |
| 4978 | } |
| 4979 | |
| 4980 | |
| 4981 | public void text(int num, float x, float y) { |