From 3b1a0741b6368d335c5720cbf939e14efa5934fb Mon Sep 17 00:00:00 2001 From: uzkt Date: Mon, 10 Feb 2020 09:12:16 -0800 Subject: [PATCH] fix small typo in deform_source_mesh_to_target_mesh.ipynb (#34) Summary: fixed target object data folder path './data/doplhin'-> './data/dolphin' Pull Request resolved: https://github.com/facebookresearch/pytorch3d/pull/34 Differential Revision: D19815377 Pulled By: nikhilaravi fbshipit-source-id: ff17f6aef8d835b11d7803e912a311c7118b03fa --- docs/tutorials/deform_source_mesh_to_target_mesh.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/deform_source_mesh_to_target_mesh.ipynb b/docs/tutorials/deform_source_mesh_to_target_mesh.ipynb index c9df1812..67e238cb 100644 --- a/docs/tutorials/deform_source_mesh_to_target_mesh.ipynb +++ b/docs/tutorials/deform_source_mesh_to_target_mesh.ipynb @@ -113,7 +113,7 @@ "source": [ "# The path to the target 3D model we wish to fit\n", "# e.g. download https://free3d.com/3d-model/-dolphin-v1--12175.html and save in ./data/dolphin\n", - "trg_obj = os.path.join('./data/doplhin', '10014_dolphin_v2_max2011_it2.obj')" + "trg_obj = os.path.join('./data/dolphin', '10014_dolphin_v2_max2011_it2.obj')" ] }, {