Home
last modified time | relevance | path

Searched refs:outerRoundness (Results 1 – 6 of 6) sorted by relevance

/lvgl-latest/src/libs/thorvg/
DtvgLottieModifier.h42 …nt>& inPts, Array<PathCommand>& outCmds, Array<Point>& outPts, float outerRoundness, bool hasRound…
DtvgLottieBuilder.cpp584 auto outerRoundness = star->outerRoundness(frameNo, exps) * 0.01f; in _updateStar() local
595 bool roundedCorner = roundness && (tvg::zero(innerRoundness) || tvg::zero(outerRoundness)); in _updateStar()
622 if (tvg::zero(innerRoundness) && tvg::zero(outerRoundness)) { in _updateStar()
657 auto cp1Roundness = longSegment ? innerRoundness : outerRoundness; in _updateStar()
658 auto cp2Roundness = longSegment ? outerRoundness : innerRoundness; in _updateStar()
695 …th.pts, P(intermediate)->rs.path.cmds, P(intermediate)->rs.path.pts, outerRoundness, hasRoundness); in _updateStar()
698 …pe)->rs.path.pts, P(merging)->rs.path.cmds, P(merging)->rs.path.pts, outerRoundness, hasRoundness); in _updateStar()
710 auto outerRoundness = star->outerRoundness(frameNo, exps) * 0.01f; in _updatePolygon() local
715 auto hasRoundness = !tvg::zero(outerRoundness); in _updatePolygon()
755 auto cp1x = radius * outerRoundness * POLYGON_MAGIC_NUMBER * cp1Dx; in _updatePolygon()
[all …]
DtvgLottieModel.h407 if (outerRoundness.ix == ix) return &outerRoundness; in property()
417 LottieFloat outerRoundness = 0.0f; member
DtvgLottieModifier.cpp234 …nt>& inPts, Array<PathCommand>& outCmds, Array<Point>& outPts, float outerRoundness, bool hasRound… in modifyPolystar() argument
245 int start = 3 * tvg::zero(outerRoundness); in modifyPolystar()
DtvgLottieExpressions.cpp220 auto outerRoundness = jerry_number(polystar->outerRoundness(frameNo)); in _buildPolystar() local
221 jerry_object_set_sz(obj, "outerRoundness", outerRoundness); in _buildPolystar()
222 jerry_value_free(outerRoundness); in _buildPolystar()
DtvgLottieParser.cpp729 else if (KEY_AS("os")) parseProperty<LottieProperty::Type::Float>(star->outerRoundness); in parsePolyStar()