Lines Matching defs:right

212                           float[] right, int rightoff, int type)
216 Helpers.subdivideQuad(src, srcoff, left, leftoff, right, rightoff);
219 Helpers.subdivideCubic(src, srcoff, left, leftoff, right, rightoff);
246 * Either or both of the <code>left</code> and <code>right</code>
252 * and <code>right</code> and to use offsets, such as <code>rightoff</code>
262 * @param right the array for storing the coordinates for the second
265 * the 6 right coordinates
270 float right[], int rightoff)
284 if (right != null) {
285 right[rightoff + 6] = x2;
286 right[rightoff + 7] = y2;
308 if (right != null) {
309 right[rightoff + 0] = centerx;
310 right[rightoff + 1] = centery;
311 right[rightoff + 2] = ctrlx2;
312 right[rightoff + 3] = ctrly2;
313 right[rightoff + 4] = x2;
314 right[rightoff + 5] = y2;
321 float right[], int rightoff)
335 if (right != null) {
336 right[rightoff + 6] = x2;
337 right[rightoff + 7] = y2;
359 if (right != null) {
360 right[rightoff + 0] = centerx;
361 right[rightoff + 1] = centery;
362 right[rightoff + 2] = ctrlx2;
363 right[rightoff + 3] = ctrly2;
364 right[rightoff + 4] = x2;
365 right[rightoff + 5] = y2;
371 float right[], int rightoff)
383 if (right != null) {
384 right[rightoff + 4] = x2;
385 right[rightoff + 5] = y2;
399 if (right != null) {
400 right[rightoff + 0] = ctrlx;
401 right[rightoff + 1] = ctrly;
402 right[rightoff + 2] = x2;
403 right[rightoff + 3] = y2;
409 float right[], int rightoff)
421 if (right != null) {
422 right[rightoff + 4] = x2;
423 right[rightoff + 5] = y2;
437 if (right != null) {
438 right[rightoff + 0] = ctrlx;
439 right[rightoff + 1] = ctrly;
440 right[rightoff + 2] = x2;
441 right[rightoff + 3] = y2;
447 float right[], int rightoff, int size)
451 subdivideCubicAt(t, src, srcoff, left, leftoff, right, rightoff);
454 subdivideQuadAt(t, src, srcoff, left, leftoff, right, rightoff);