Home | History | Annotate | Download | only in pathops

Lines Matching defs:ts

283             SkIntersections ts;
295 pts = ts.lineHorizontal(wn.pts(), wt.left(),
297 debugShowLineIntersection(pts, wn, wt, ts);
300 pts = ts.quadHorizontal(wn.pts(), wt.left(),
302 debugShowQuadLineIntersection(pts, wn, wt, ts);
305 pts = ts.conicHorizontal(wn.pts(), wn.weight(), wt.left(),
307 debugShowConicLineIntersection(pts, wn, wt, ts);
310 pts = ts.cubicHorizontal(wn.pts(), wt.left(),
312 debugShowCubicLineIntersection(pts, wn, wt, ts);
324 pts = ts.lineVertical(wn.pts(), wt.top(),
326 debugShowLineIntersection(pts, wn, wt, ts);
330 pts = ts.quadVertical(wn.pts(), wt.top(),
332 debugShowQuadLineIntersection(pts, wn, wt, ts);
336 pts = ts.conicVertical(wn.pts(), wn.weight(), wt.top(),
338 debugShowConicLineIntersection(pts, wn, wt, ts);
342 pts = ts.cubicVertical(wn.pts(), wt.top(),
344 debugShowCubicLineIntersection(pts, wn, wt, ts);
354 pts = ts.lineHorizontal(wt.pts(), wn.left(),
356 debugShowLineIntersection(pts, wt, wn, ts);
359 pts = ts.lineVertical(wt.pts(), wn.top(),
361 debugShowLineIntersection(pts, wt, wn, ts);
364 pts = ts.lineLine(wt.pts(), wn.pts());
365 debugShowLineIntersection(pts, wt, wn, ts);
369 pts = ts.quadLine(wn.pts(), wt.pts());
370 debugShowQuadLineIntersection(pts, wn, wt, ts);
374 pts = ts.conicLine(wn.pts(), wn.weight(), wt.pts());
375 debugShowConicLineIntersection(pts, wn, wt, ts);
379 pts = ts.cubicLine(wn.pts(), wt.pts());
380 debugShowCubicLineIntersection(pts, wn, wt, ts);
389 pts = ts.quadHorizontal(wt.pts(), wn.left(),
391 debugShowQuadLineIntersection(pts, wt, wn, ts);
394 pts = ts.quadVertical(wt.pts(), wn.top(),
396 debugShowQuadLineIntersection(pts, wt, wn, ts);
399 pts = ts.quadLine(wt.pts(), wn.pts());
400 debugShowQuadLineIntersection(pts, wt, wn, ts);
403 pts = ts.intersect(quad1.set(wt.pts()), quad2.set(wn.pts()));
404 debugShowQuadIntersection(pts, wt, wn, ts);
409 pts = ts.intersect(conic2.set(wn.pts(), wn.weight()),
411 debugShowConicQuadIntersection(pts, wn, wt, ts);
416 pts = ts.intersect(cubic2.set(wn.pts()), quad1.set(wt.pts()));
417 debugShowCubicQuadIntersection(pts, wn, wt, ts);
427 pts = ts.conicHorizontal(wt.pts(), wt.weight(), wn.left(),
429 debugShowConicLineIntersection(pts, wt, wn, ts);
432 pts = ts.conicVertical(wt.pts(), wt.weight(), wn.top(),
434 debugShowConicLineIntersection(pts, wt, wn, ts);
437 pts = ts.conicLine(wt.pts(), wt.weight(), wn.pts());
438 debugShowConicLineIntersection(pts, wt, wn, ts);
441 pts = ts.intersect(conic1.set(wt.pts(), wt.weight()),
443 debugShowConicQuadIntersection(pts, wt, wn, ts);
447 pts = ts.intersect(conic1.set(wt.pts(), wt.weight()),
449 debugShowConicIntersection(pts, wt, wn, ts);
454 pts = ts.intersect(cubic2.set(wn.pts()),
456 debugShowCubicConicIntersection(pts, wn, wt, ts);
464 pts = ts.cubicHorizontal(wt.pts(), wn.left(),
466 debugShowCubicLineIntersection(pts, wt, wn, ts);
469 pts = ts.cubicVertical(wt.pts(), wn.top(),
471 debugShowCubicLineIntersection(pts, wt, wn, ts);
474 pts = ts.cubicLine(wt.pts(), wn.pts());
475 debugShowCubicLineIntersection(pts, wt, wn, ts);
478 pts = ts.intersect(cubic1.set(wt.pts()), quad2.set(wn.pts()));
479 debugShowCubicQuadIntersection(pts, wt, wn, ts);
483 pts = ts.intersect(cubic1.set(wt.pts()),
485 debugShowCubicConicIntersection(pts, wt, wn, ts);
489 pts = ts.intersect(cubic1.set(wt.pts()), cubic2.set(wn.pts()));
490 debugShowCubicIntersection(pts, wt, wn, ts);
501 test->globalState()->debugAddLoopCount(&ts, wt, wn);
506 SkASSERT(ts[0][pt] >= 0 && ts[0][pt] <= 1);
507 SkASSERT(ts[1][pt] >= 0 && ts[1][pt] <= 1);
509 SkOpPtT* testTAt = wt.segment()->addT(ts[swap][pt], SkOpSegment::kAllowAlias,
512 SkOpPtT* nextTAt = wn.segment()->addT(ts[!swap][pt], SkOpSegment::kAllowAlias,
521 if (!ts.isCoincident(pt)) {