Home
last modified time | relevance | path

Searched refs:shear (Results 1 - 3 of 3) sorted by relevance

/third_party/vk-gl-cts/framework/common/
H A DtcuMatrixUtil.hpp41 Matrix<float, 2, 2> shearMatrix (const Vector<float, 2>& shear);
84 inline Matrix<float, 2, 2> shearMatrix (const Vector<float, 2>& shear) in shearMatrix() argument
88 mat(0, 1) = shear.x(); in shearMatrix()
89 mat(1, 0) = shear.y(); in shearMatrix()
90 mat(1, 1) = 1.0f + shear.x()*shear.y(); in shearMatrix()
/third_party/ffmpeg/libavfilter/
H A Dvf_shear.c63 { "shx", "set x shear factor", OFFSET(shx), AV_OPT_TYPE_FLOAT, {.dbl=0.}, -2, 2, .flags=FLAGS },
64 { "shy", "set y shear factor", OFFSET(shy), AV_OPT_TYPE_FLOAT, {.dbl=0.}, -2, 2, .flags=FLAGS },
73 AVFILTER_DEFINE_CLASS(shear); variable
311 .name = "shear",
/third_party/python/Lib/
H A Dturtle.py2821 def shearfactor(self, shear=None):
2824 Optional argument: shear -- number, tangent of the shear angle
2826 Shear the turtleshape according to the given shearfactor shear,
2827 which is the tangent of the shear angle. DO NOT change the
2829 If shear is not given: return the current shearfactor, i. e. the
2830 tangent of the shear angle, by which lines parallel to the
2840 if shear is None:
2842 self.pen(resizemode="user", shearfactor=shear)

Completed in 6 milliseconds