Lines Matching defs:that
4 * Use of this source code is governed by a BSD-style license that can be
30 // T-coordinate of max error, and outputs it and its value in pixels. (It turns out that max error
34 // halving. (It turns out that max error improves by exactly 64x on every halving.)
193 void doClick(SampleFitCubicToCircle* that) {
197 that->fEndptsX[fPtIdx] = dx/l;
198 that->fEndptsY[fPtIdx] = dy/l;
199 if (that->fEndptsX[0] * that->fEndptsY[1] - that->fEndptsY[0] * that->fEndptsX[1] < 0) {
200 std::swap(that->fEndptsX[0], that->fEndptsX[1]);
201 std::swap(that->fEndptsY[0], that->fEndptsY[1]);
204 that->fitCubic();