From f5965fe633efbfa847e9a5da604cf1251dbdbc40 Mon Sep 17 00:00:00 2001 From: Matthias Wittgen Date: Tue, 22 Oct 2024 13:32:11 -0700 Subject: [PATCH] Address review comments --- include/lsst/sphgeom/CompoundRegion.h | 1 - tests/test_HtmPixelization.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/include/lsst/sphgeom/CompoundRegion.h b/include/lsst/sphgeom/CompoundRegion.h index 0dbf47a..c4b6067 100644 --- a/include/lsst/sphgeom/CompoundRegion.h +++ b/include/lsst/sphgeom/CompoundRegion.h @@ -88,7 +88,6 @@ class CompoundRegion : public Region { } static std::unique_ptr decode(std::uint8_t const *buffer, size_t n); ///@} - static void flatten(Region const ®ion, std::vector> &result); protected: diff --git a/tests/test_HtmPixelization.py b/tests/test_HtmPixelization.py index 6f282eb..f7d17ae 100644 --- a/tests/test_HtmPixelization.py +++ b/tests/test_HtmPixelization.py @@ -104,7 +104,7 @@ def test_envelope_and_interior(self): rsu2 = pixelization.envelope(union2) self.assertEqual(rsu2, rsu2 | rsu) - # CHeck with intersection + # Check with intersection c4 = Circle(UnitVector3d(1.0, 1.0, 2.0), 1) c5 = Circle(UnitVector3d(1.0, 1.0, 2.5), 0.5) rs4 = pixelization.envelope(c4)