Searched refs:outPts (Results 1 – 4 of 4) sorted by relevance
/lvgl-latest/src/libs/thorvg/ |
D | tvgLottieModifier.cpp | 102 …, uint32_t movetoOutIndex, bool nextClose, Array<PathCommand>& outCmds, Array<Point>& outPts) const in corner() 108 if (nextClose) outPts[movetoOutIndex] = intersect; in corner() 109 outPts.push(intersect); in corner() 111 outPts.push(line.pt2); in corner() 114 outPts.push((line.pt2 + intersect) * 0.5f); in corner() 115 outPts.push((nextLine.pt1 + intersect) * 0.5f); in corner() 116 outPts.push(nextLine.pt1); in corner() 122 … miterLimit * fabsf(miterDirection.x * norm.x + miterDirection.y * norm.y)) outPts.push(intersect); in corner() 123 else outPts.push(nextLine.pt1); in corner() 126 outPts.push(nextLine.pt1); in corner() [all …]
|
D | tvgLottieModifier.h | 41 …nt* inPts, uint32_t inPtsCnt, Array<PathCommand>& outCmds, Array<Point>& outPts, Matrix* transform… 42 …s, const Array<Point>& inPts, Array<PathCommand>& outCmds, Array<Point>& outPts, float outerRoundn… 55 …t, const Point* inPts, uint32_t inPtsCnt, Array<PathCommand>& outCmds, Array<Point>& outPts) const; 56 …mand>& inCmds, const Array<Point>& inPts, Array<PathCommand>& outCmds, Array<Point>& outPts) const; 57 …t, const Point* inPts, uint32_t inPtsCnt, Array<PathCommand>& outCmds, Array<Point>& outPts) const;
|
D | tvgLottieParser.cpp | 215 Array<Point> outPts; in getValue() local 219 outPts.data = path.pts; in getValue() 220 outPts.reserved = path.ptsCnt; in getValue() 225 outPts.reserve(pts.count * 3 + 1 + extra); in getValue() 229 outPts.push(*pt); in getValue() 233 outPts.push(*(pt - 1) + *(out - 1)); in getValue() 234 outPts.push(*pt + *in); in getValue() 235 outPts.push(*pt); in getValue() 239 outPts.push(pts.last() + outs.last()); in getValue() 240 outPts.push(pts.first() + ins.first()); in getValue() [all …]
|
D | tvgLottieProperty.h | 156 static void _copy(PathSet* pathset, Array<Point>& outPts, Matrix* transform) in _copy() argument 164 outPts.push(pt); in _copy() 169 outPts.push(inPts); in _copy()
|