-------------------------------------------------------------
| 862 | |
| 863 | //------------------------------------------------------------- |
| 864 | unsigned parser::parse_skew_x(const char* str) |
| 865 | { |
| 866 | double arg; |
| 867 | unsigned na = 0; |
| 868 | unsigned len = parse_transform_args(str, &arg, 1, &na); |
| 869 | m_path.transform().premultiply(trans_affine_skewing(deg2rad(arg), 0.0)); |
| 870 | return len; |
| 871 | } |
| 872 | |
| 873 | //------------------------------------------------------------- |
| 874 | unsigned parser::parse_skew_y(const char* str) |
nothing calls this directly
no test coverage detected