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

Method LASoperationRotateYZ

LASlib/src/lastransform.cpp:1028–1035  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected