MCPcopy Create free account
hub / github.com/LAStools/LAStools / LASoperationRotateXY

Method LASoperationRotateXY

LASlib/src/lastransform.cpp:898–905  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected