mirror of
https://github.com/facebookresearch/pytorch3d.git
synced 2026-04-12 07:26:00 +08:00
8 lines
218 B
Python
8 lines
218 B
Python
# Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.
|
|
|
|
|
|
from .obj_io import load_obj, save_obj
|
|
from .ply_io import load_ply, save_ply
|
|
|
|
__all__ = [k for k in globals().keys() if not k.startswith("_")]
|