mirror of
https://github.com/facebookresearch/pytorch3d.git
synced 2025-08-02 20:02:49 +08:00
Summary: rename join_meshes to join_meshes_as_batch. Reviewed By: nikhilaravi Differential Revision: D20671293 fbshipit-source-id: e84d6a67d6c1ec28fb5e52d4607db8e92561a4cd
10 lines
339 B
Python
10 lines
339 B
Python
# Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.
|
|
|
|
from .meshes import Meshes, join_meshes_as_batch
|
|
from .pointclouds import Pointclouds
|
|
from .textures import Textures
|
|
from .utils import list_to_packed, list_to_padded, packed_to_list, padded_to_list
|
|
|
|
|
|
__all__ = [k for k in globals().keys() if not k.startswith("_")]
|