| 1026 | } |
| 1027 | }; |
| 1028 | LASoperationRotateYZ(F64 angle, F64 y_offset, F64 z_offset) |
| 1029 | { |
| 1030 | this->angle = angle; |
| 1031 | this->y_offset = y_offset; |
| 1032 | this->z_offset = z_offset; |
| 1033 | cos_angle = cos(3.141592653589793238462643383279502884197169 / 180 * angle); |
| 1034 | sin_angle = sin(3.141592653589793238462643383279502884197169 / 180 * angle); |
| 1035 | }; |
| 1036 | |
| 1037 | private: |
| 1038 | F64 angle; |
nothing calls this directly
no outgoing calls
no test coverage detected