Lines Matching refs:start
58 …auto len = lineLengthFunc(cur.start, cur.ctrl1) + lineLengthFunc(cur.ctrl1, cur.ctrl2) + lineLengt… in _bezLength()
59 auto chord = lineLengthFunc(cur.start, cur.end); in _bezLength()
250 left.ctrl1.x = (start.x + ctrl1.x) * 0.5f; in split()
252 left.start.x = start.x; in split()
256 left.end.x = right.start.x = (left.ctrl2.x + right.ctrl1.x) * 0.5f; in split()
259 left.ctrl1.y = (start.y + ctrl1.y) * 0.5f; in split()
261 left.start.y = start.y; in split()
265 left.end.y = right.start.y = (left.ctrl2.y + right.ctrl1.y) * 0.5f; in split()
291 left.start = start; in split()
293 left.ctrl1.x = start.x + t * (ctrl1.x - start.x); in split()
294 left.ctrl1.y = start.y + t * (ctrl1.y - start.y); in split()
308 left.end.x = start.x = left.ctrl2.x + t * (ctrl1.x - left.ctrl2.x); in split()
309 left.end.y = start.y = left.ctrl2.y + t * (ctrl1.y - left.ctrl2.y); in split()
330 auto ax = start.x * it + ctrl1.x * t; in at()
337 float ay = start.y * it + ctrl1.y * t; in at()
361 …Point pt ={a * start.x + b * ctrl1.x + c * ctrl2.x + d * end.x, a * start.y + b * ctrl1.y + c * ct… in angle()
369 uint8_t lerp(const uint8_t &start, const uint8_t &end, float t) in lerp() argument
371 auto result = static_cast<int>(start + (end - start) * t); in lerp()