mirror of
https://github.com/facebookresearch/pytorch3d.git
synced 2025-08-04 04:42:49 +08:00
Summary: License lint codebase Reviewed By: theschnitz Differential Revision: D29001799 fbshipit-source-id: 5c59869911785b0181b1663bbf430bc8b7fb2909
16 lines
564 B
Python
16 lines
564 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 .chamfer import chamfer_distance
|
|
from .mesh_edge_loss import mesh_edge_loss
|
|
from .mesh_laplacian_smoothing import mesh_laplacian_smoothing
|
|
from .mesh_normal_consistency import mesh_normal_consistency
|
|
from .point_mesh_distance import point_mesh_edge_distance, point_mesh_face_distance
|
|
|
|
|
|
__all__ = [k for k in globals().keys() if not k.startswith("_")]
|