Searched refs:fromOp (Results 1 – 6 of 6) sorted by relevance
40 const RotateTransformOperation* fromOp = static_cast<const RotateTransformOperation*>(from); in blend() local43 if (!fromOp || (fromOp->m_x == 0 && fromOp->m_y == 0 && fromOp->m_z == 1) || in blend()44 (fromOp->m_x == 0 && fromOp->m_y == 1 && fromOp->m_z == 0) || in blend()45 (fromOp->m_x == 1 && fromOp->m_y == 0 && fromOp->m_z == 0)) { in blend()46 double fromAngle = fromOp ? fromOp->m_angle : 0; in blend()47 return RotateTransformOperation::create(fromOp ? fromOp->m_x : m_x, in blend()48 fromOp ? fromOp->m_y : m_y, in blend()49 fromOp ? fromOp->m_z : m_z, in blend()58 fromT.rotate3d((float)(fromOp ? fromOp->m_x : 0), in blend()59 (float)(fromOp ? fromOp->m_y : 0), in blend()[all …]
37 const ScaleTransformOperation* fromOp = static_cast<const ScaleTransformOperation*>(from); in blend() local38 double fromX = fromOp ? fromOp->m_x : 1.; in blend()39 double fromY = fromOp ? fromOp->m_y : 1.; in blend()40 double fromZ = fromOp ? fromOp->m_z : 1.; in blend()
38 … const TranslateTransformOperation* fromOp = static_cast<const TranslateTransformOperation*>(from); in blend() local39 Length fromX = fromOp ? fromOp->m_x : Length(m_x.type()); in blend()40 Length fromY = fromOp ? fromOp->m_y : Length(m_y.type()); in blend()41 Length fromZ = fromOp ? fromOp->m_z : Length(m_z.type()); in blend()
35 const SkewTransformOperation* fromOp = static_cast<const SkewTransformOperation*>(from); in blend() local36 double fromAngleX = fromOp ? fromOp->m_angleX : 0; in blend()37 double fromAngleY = fromOp ? fromOp->m_angleY : 0; in blend()
46 …const PerspectiveTransformOperation* fromOp = static_cast<const PerspectiveTransformOperation*>(fr… in blend() local47 Length fromP = fromOp ? fromOp->m_p : Length(m_p.type()); in blend()
167 RefPtr<TransformOperation> fromOp = (i < fromSize) ? from.operations()[i].get() : 0; in blendFunc() local169 …Ptr<TransformOperation> blendedOp = toOp ? toOp->blend(fromOp.get(), progress) : (fromOp ? fromOp-… in blendFunc()177 result.operations().append(fromOp ? fromOp : identityOp); in blendFunc()