mirror of
https://github.com/facebookresearch/pytorch3d.git
synced 2025-08-05 21:42:50 +08:00
Summary: Implemented a data structure for volumes. Reviewed By: gkioxari Differential Revision: D20342920 fbshipit-source-id: ccc23eaa183ed8a4e9cd7674b4dcf31e8a65c3c6
10 lines
359 B
Python
10 lines
359 B
Python
# Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.
|
|
|
|
from .meshes import Meshes, join_meshes_as_batch, join_meshes_as_scene
|
|
from .pointclouds import Pointclouds
|
|
from .utils import list_to_packed, list_to_padded, packed_to_list, padded_to_list
|
|
from .volumes import Volumes
|
|
|
|
|
|
__all__ = [k for k in globals().keys() if not k.startswith("_")]
|