| 129 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %lf %lf %lf ", name(), center_x, center_y, radius); }; |
| 130 | inline BOOL filter(const LASpoint* point) { return (!point->inside_circle(center_x, center_y, radius_squared)); }; |
| 131 | LAScriterionKeepCircle(F64 x, F64 y, F64 radius) { this->center_x = x; this->center_y = y; this->radius = radius; this->radius_squared = radius * radius; }; |
| 132 | private: |
| 133 | F64 center_x, center_y, radius, radius_squared; |
| 134 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected