| 896 | } |
| 897 | }; |
| 898 | LASoperationRotateXY(F64 angle, F64 x_offset, F64 y_offset) |
| 899 | { |
| 900 | this->angle = angle; |
| 901 | this->x_offset = x_offset; |
| 902 | this->y_offset = y_offset; |
| 903 | cos_angle = cos(3.141592653589793238462643383279502884197169 / 180 * angle); |
| 904 | sin_angle = sin(3.141592653589793238462643383279502884197169 / 180 * angle); |
| 905 | }; |
| 906 | |
| 907 | private: |
| 908 | F64 angle; |
nothing calls this directly
no outgoing calls
no test coverage detected