scaleYfactor
ScaleYfactor is a term used in computer graphics and user interface design to describe the multiplicative factor applied to the vertical dimension of a graphical object. It is commonly used together with scaleX to perform non-uniform scaling, where horizontal and vertical sizes change at different rates.
Mathematically, scaling by scaleYfactor s transforms coordinates by y' = s*y while x' = x if only vertical
In CSS, the scaleY function is used as part of the transform property, e.g., transform: scaleY(1.5) to
In 3D engines and game development, scaleYfactor corresponds to the y component of an object's scale vector,