Searched refs:lineLengthFunc (Results 1 – 1 of 1) sorted by relevance
/lvgl-latest/src/libs/thorvg/ |
D | tvgMath.cpp | 55 float _bezLength(const Bezier& cur, LengthFunc lineLengthFunc) in _bezLength() argument 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() 63 return _bezLength(left, lineLengthFunc) + _bezLength(right, lineLengthFunc); in _bezLength() 70 float _bezAt(const Bezier& bz, float at, float length, LengthFunc lineLengthFunc) in _bezAt() argument 84 length = _bezLength(left, lineLengthFunc); in _bezAt()
|