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

Function get_scan_angle

LASzip/src/laspoint.hpp:858–863  ·  view source on GitHub ↗

get scan angle in degree

Source from the content-addressed store, hash-verified

856 };
857 // get scan angle in degree
858 inline F32 get_scan_angle() const {
859 if (extended_point_type)
860 return 0.006f * extended_scan_angle;
861 else
862 return (F32)scan_angle_rank;
863 };
864 // get scan angle with common decimals
865 inline F32 get_scan_angle_disp() const {
866 return static_cast<F32>(DoubleRound(get_scan_angle(), extended_point_type?3:0));

Callers 1

get_scan_angle_dispFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected