Skip to content

Commit

Permalink
Expose more bindings to module (#26)
Browse files Browse the repository at this point in the history
* update __init__ with more bindings

* format
  • Loading branch information
maturk authored Oct 5, 2023
1 parent a223e5a commit 0fbda5e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions diff_rast/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
from .project_gaussians import ProjectGaussians
from .rasterize import RasterizeGaussians
from .bin_and_sort_gaussians import BinAndSortGaussians
from .compute_cumulative_intersects import ComputeCumulativeIntersects
from .cov2d_bounds import ComputeCov2dBounds
from .get_tile_bin_edges import GetTileBinEdges
from .map_gaussian_to_intersects import MapGaussiansToIntersects
from .sh import SphericalHarmonics
from .version import __version__

__all__ = [
"__version__",
"ProjectGaussians",
"RasterizeGaussians",
"BinAndSortGaussians",
"ComputeCumulativeIntersects",
"ComputeCov2dBounds",
"GetTileBinEdges",
"MapGaussiansToIntersects",
"SphericalHarmonics",
]

0 comments on commit 0fbda5e

Please sign in to comment.