This commit is contained in:
2025-11-14 12:23:39 +03:00
parent 94fb4c6a48
commit 078e3f38f2
6 changed files with 31 additions and 5 deletions

View File

@@ -643,7 +643,8 @@ public:
// *result = (coords.X < _maxLimit) && (coords.X > _minLimit);
} else { // mcc_celestial_point_c
if (coords.pair_kind == MccCoordPairKind::COORDS_KIND_XY) { // hardware
*result = (coords.X < _maxLimit) && (coords.X > _minLimit);
// *result = (coords.X < _maxLimit) && (coords.X > _minLimit);
*result = (coords.X > _maxLimit) || (coords.X < _minLimit);
} else { // here one needs transform input coordinates to hardware encoder ones
MccCelestialPoint pt;