mirror of
https://github.com/facebookresearch/pytorch3d.git
synced 2025-08-03 04:12:48 +08:00
Summary: License lint codebase Reviewed By: theschnitz Differential Revision: D29001799 fbshipit-source-id: 5c59869911785b0181b1663bbf430bc8b7fb2909
14 lines
493 B
Python
14 lines
493 B
Python
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
# All rights reserved.
|
|
#
|
|
# This source code is licensed under the BSD-style license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
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("_")]
|