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

Method LASoperationRotateXZ

LASlib/src/lastransform.cpp:963–970  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

961 }
962 };
963 LASoperationRotateXZ(F64 angle, F64 x_offset, F64 z_offset)
964 {
965 this->angle = angle;
966 this->x_offset = x_offset;
967 this->z_offset = z_offset;
968 cos_angle = cos(3.141592653589793238462643383279502884197169 / 180 * angle);
969 sin_angle = sin(3.141592653589793238462643383279502884197169 / 180 * angle);
970 };
971
972 private:
973 F64 angle;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected