├── .gitignore ├── README.md ├── color_texture_branch ├── __init__.py ├── config.py ├── dataset.py ├── model.py ├── model_eigengan.py ├── module.py ├── predictor │ ├── __init__.py │ ├── predictor_config.py │ ├── predictor_model.py │ ├── predictor_solver.py │ └── predictor_train.py ├── script_find_direction.py ├── solver.py ├── train.py └── validation_in_train.py ├── common_dataset.py ├── dataset_scripts ├── __init__.py ├── script_crop.py ├── script_get_color_var_label.py ├── script_get_mask.py ├── script_get_rgb_hsv_label.py ├── script_get_sean_code.py ├── script_landmark_detection.py └── utils.py ├── external_code ├── __init__.py ├── crop.py ├── data │ └── 3DMM │ │ ├── 3DMM_normal.obj.mtl │ │ ├── BFM_UV.mat │ │ ├── UV.png │ │ ├── color_label_v4.png │ │ ├── label_v4.png │ │ └── model_info.mat ├── face_parsing │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── __init__.py │ ├── evaluate.py │ ├── face_dataset.py │ ├── logger.py │ ├── loss.py │ ├── makeup.py │ ├── model.py │ ├── modules │ │ ├── __init__.py │ │ ├── bn.py │ │ ├── deeplab.py │ │ ├── dense.py │ │ ├── functions.py │ │ ├── misc.py │ │ ├── residual.py │ │ └── src │ │ │ ├── checks.h │ │ │ ├── inplace_abn.cpp │ │ │ ├── inplace_abn.h │ │ │ ├── inplace_abn_cpu.cpp │ │ │ ├── inplace_abn_cuda.cu │ │ │ ├── inplace_abn_cuda_half.cu │ │ │ └── utils │ │ │ ├── checks.h │ │ │ ├── common.h │ │ │ └── cuda.cuh │ ├── my_parsing_util.py │ ├── optimizer.py │ ├── prepropess_data.py │ ├── resnet.py │ ├── train.py │ └── transform.py ├── landmarks_util.py └── my_cython │ ├── __init__.py │ ├── build │ ├── temp.linux-x86_64-3.6 │ │ ├── mesh_core.o │ │ └── mesh_core_cython.o │ └── temp.linux-x86_64-3.8 │ │ ├── mesh_core.o │ │ └── mesh_core_cython.o │ ├── mesh_core.cpp │ ├── mesh_core.h │ ├── mesh_core_cython.cpp │ ├── mesh_core_cython.cpython-36m-x86_64-linux-gnu.so │ ├── mesh_core_cython.cpython-38-x86_64-linux-gnu.so │ ├── mesh_core_cython.pyx │ ├── my_mesh_core_cython.pyx │ ├── readme.md │ └── setup.py ├── global_value_utils.py ├── hair_editor.py ├── imgs ├── CelebaMask_HQ___00541.png ├── CelebaMask_HQ___00644.png ├── CelebaMask_HQ___01303.png ├── CelebaMask_HQ___01385.png ├── CelebaMask_HQ___01483.png ├── CelebaMask_HQ___01697.png ├── CelebaMask_HQ___01825.png ├── CelebaMask_HQ___02378.png ├── CelebaMask_HQ___02974.png ├── CelebaMask_HQ___02989.png ├── CelebaMask_HQ___03854.png ├── CelebaMask_HQ___04313.png ├── CelebaMask_HQ___04716.png ├── CelebaMask_HQ___04884.png ├── CelebaMask_HQ___05236.png ├── CelebaMask_HQ___06195.png ├── CelebaMask_HQ___06410.png ├── CelebaMask_HQ___07373.png ├── CelebaMask_HQ___07733.png ├── CelebaMask_HQ___08125.png ├── CelebaMask_HQ___09657.png ├── CelebaMask_HQ___09846.png ├── CelebaMask_HQ___10058.png ├── CelebaMask_HQ___10968.png ├── CelebaMask_HQ___11028.png ├── CelebaMask_HQ___12264.png ├── CelebaMask_HQ___13307.png ├── CelebaMask_HQ___13530.png ├── CelebaMask_HQ___13585.png ├── CelebaMask_HQ___17048.png ├── CelebaMask_HQ___19156.png ├── CelebaMask_HQ___21459.png ├── CelebaMask_HQ___23711.png ├── CelebaMask_HQ___26250.png ├── CelebaMask_HQ___27640.png ├── ffhq___00744.png ├── ffhq___05118.png ├── ffhq___08962.png ├── ffhq___13195.png ├── ffhq___21812.png ├── ffhq___27127.png ├── ffhq___46704.png ├── ffhq___49828.png ├── ffhq___51913.png ├── ffhq___53833.png ├── ffhq___54534.png ├── ffhq___58529.png ├── ffhq___62430.png ├── ffhq___65720.png └── ffhq___66537.png ├── my_pylib ├── __init__.py ├── path.py ├── timer.py └── utils.py ├── my_torchlib ├── __init__.py ├── layers │ ├── __init__.py │ └── layers.py ├── module.py ├── train_utils.py └── utils.py ├── poisson_blending.py ├── sean_codes ├── __init__.py ├── data │ ├── __init__.py │ ├── base_dataset.py │ ├── custom_dataset.py │ ├── image_folder.py │ └── pix2pix_dataset.py ├── get_mean_code.py ├── models │ ├── __init__.py │ ├── networks │ │ ├── __init__.py │ │ ├── architecture.py │ │ ├── base_network.py │ │ ├── discriminator.py │ │ ├── encoder.py │ │ ├── generator.py │ │ ├── loss.py │ │ ├── normalization.py │ │ └── sync_batchnorm │ │ │ ├── __init__.py │ │ │ ├── batchnorm.py │ │ │ ├── batchnorm_reimpl.py │ │ │ ├── comm.py │ │ │ ├── replicate.py │ │ │ └── unittest.py │ └── pix2pix_model.py ├── options │ ├── __init__.py │ ├── base_options.py │ ├── test_options.py │ └── train_options.py ├── styles_test │ └── mean_style_code │ │ ├── mean │ │ ├── 0 │ │ │ └── ACE.npy │ │ ├── 1 │ │ │ └── ACE.npy │ │ ├── 2 │ │ │ └── ACE.npy │ │ ├── 3 │ │ │ └── ACE.npy │ │ ├── 4 │ │ │ └── ACE.npy │ │ ├── 5 │ │ │ └── ACE.npy │ │ ├── 6 │ │ │ └── ACE.npy │ │ ├── 7 │ │ │ └── ACE.npy │ │ ├── 8 │ │ │ └── ACE.npy │ │ ├── 9 │ │ │ └── ACE.npy │ │ ├── 10 │ │ │ └── ACE.npy │ │ ├── 11 │ │ │ └── ACE.npy │ │ ├── 12 │ │ │ └── ACE.npy │ │ ├── 13 │ │ │ └── ACE.npy │ │ ├── 14 │ │ │ └── ACE.npy │ │ ├── 15 │ │ │ └── ACE.npy │ │ ├── 16 │ │ │ └── ACE.npy │ │ ├── 17 │ │ │ └── ACE.npy │ │ └── 18 │ │ │ └── ACE.npy │ │ └── median │ │ ├── 0 │ │ └── ACE.npy │ │ ├── 1 │ │ └── ACE.npy │ │ ├── 2 │ │ └── ACE.npy │ │ ├── 3 │ │ └── ACE.npy │ │ ├── 4 │ │ └── ACE.npy │ │ ├── 5 │ │ └── ACE.npy │ │ ├── 6 │ │ └── ACE.npy │ │ ├── 7 │ │ └── ACE.npy │ │ ├── 8 │ │ └── ACE.npy │ │ ├── 9 │ │ └── ACE.npy │ │ ├── 10 │ │ └── ACE.npy │ │ ├── 11 │ │ └── ACE.npy │ │ ├── 12 │ │ └── ACE.npy │ │ ├── 13 │ │ └── ACE.npy │ │ ├── 14 │ │ └── ACE.npy │ │ ├── 15 │ │ └── ACE.npy │ │ ├── 16 │ │ └── ACE.npy │ │ ├── 17 │ │ └── ACE.npy │ │ └── 18 │ │ └── ACE.npy └── trainers │ ├── __init__.py │ └── pix2pix_trainer.py ├── shape_branch ├── __init__.py ├── adaptor_generation.py ├── config.py ├── dataset.py ├── model.py ├── script_adaptor_test_pool.py ├── script_adaptor_train_pool.py ├── script_find_direction.py ├── shape_util.py ├── solver.py ├── train.py └── validation_in_train.py ├── ui ├── __init__.py ├── backend.py └── frontend_demo.py ├── util ├── __init__.py ├── canvas_grid.py ├── color_from_hsv_to_gaussian.py ├── common_options.py ├── find_semantic_direction.py ├── imutil.py ├── mask_color_util.py └── util.py └── wrap_codes ├── __init__.py ├── mask_adaptor.py └── wrap_triangle ├── __init__.py ├── libigl_arap ├── my_arap ├── my_arap.cpp └── my_arap.sh ├── step_3 ├── __init__.py ├── detect_landmark.py ├── generate_node.py ├── run_node.sh ├── script_generate_node.py ├── script_landmark.py └── triangle_berkeley │ ├── A.poly │ ├── README │ ├── makefile │ ├── showme │ ├── showme.c │ ├── triangle │ ├── triangle.c │ ├── triangle.h │ └── tricall.c ├── step_4 ├── __init__.py ├── get_pixelValue.py ├── help_warp.py ├── my_loadMesh.py ├── my_warp.py ├── run_warp.sh └── script_warp.py ├── triangle_wrap_hair.py ├── useful_code ├── README.md ├── libigl │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ ├── compilation.md │ │ │ ├── config.yml │ │ │ ├── feature_request.md │ │ │ └── question.md │ │ ├── pull_request_template.md │ │ └── workflows │ │ │ ├── continuous.yml │ │ │ └── nightly.yml │ ├── .gitignore │ ├── .mailmap │ ├── CMakeLists.txt │ ├── LICENSE.GPL │ ├── LICENSE.MPL2 │ ├── README.md │ ├── cmake │ │ ├── CXXFeatures.cmake │ │ ├── DownloadProject.CMakeLists.cmake.in │ │ ├── DownloadProject.cmake │ │ ├── FindCORK.cmake │ │ ├── FindMATLAB.cmake │ │ ├── FindMOSEK.cmake │ │ ├── HunterGate.cmake │ │ ├── LibiglDownloadExternal.cmake │ │ ├── LibiglFolders.cmake │ │ ├── LibiglWindows.cmake │ │ ├── libigl-cgal.yml │ │ ├── libigl-config.cmake.in │ │ └── libigl.cmake │ ├── include │ │ └── igl │ │ │ ├── AABB.cpp │ │ │ ├── AABB.h │ │ │ ├── ARAPEnergyType.h │ │ │ ├── AtA_cached.cpp │ │ │ ├── AtA_cached.h │ │ │ ├── C_STR.h │ │ │ ├── Camera.h │ │ │ ├── EPS.cpp │ │ │ ├── EPS.h │ │ │ ├── FastWindingNumberForSoups.h │ │ │ ├── HalfEdgeIterator.cpp │ │ │ ├── HalfEdgeIterator.h │ │ │ ├── Hit.h │ │ │ ├── IO │ │ │ ├── IndexComparison.h │ │ │ ├── LinSpaced.h │ │ │ ├── MappingEnergyType.h │ │ │ ├── MeshBooleanType.h │ │ │ ├── NormalType.h │ │ │ ├── ONE.h │ │ │ ├── PI.h │ │ │ ├── REDRUM.h │ │ │ ├── STR.h │ │ │ ├── Singular_Value_Decomposition_Givens_QR_Factorization_Kernel.hpp │ │ │ ├── Singular_Value_Decomposition_Jacobi_Conjugation_Kernel.hpp │ │ │ ├── Singular_Value_Decomposition_Kernel_Declarations.hpp │ │ │ ├── Singular_Value_Decomposition_Main_Kernel_Body.hpp │ │ │ ├── Singular_Value_Decomposition_Preamble.hpp │ │ │ ├── SolverStatus.h │ │ │ ├── SortableRow.h │ │ │ ├── Timer.h │ │ │ ├── Viewport.h │ │ │ ├── WindingNumberAABB.h │ │ │ ├── WindingNumberMethod.h │ │ │ ├── WindingNumberTree.h │ │ │ ├── ZERO.h │ │ │ ├── accumarray.cpp │ │ │ ├── accumarray.h │ │ │ ├── active_set.cpp │ │ │ ├── active_set.h │ │ │ ├── adjacency_list.cpp │ │ │ ├── adjacency_list.h │ │ │ ├── adjacency_matrix.cpp │ │ │ ├── adjacency_matrix.h │ │ │ ├── all.cpp │ │ │ ├── all.h │ │ │ ├── all_edges.cpp │ │ │ ├── all_edges.h │ │ │ ├── all_pairs_distances.cpp │ │ │ ├── all_pairs_distances.h │ │ │ ├── ambient_occlusion.cpp │ │ │ ├── ambient_occlusion.h │ │ │ ├── angular_distance.cpp │ │ │ ├── angular_distance.h │ │ │ ├── any.cpp │ │ │ ├── any.h │ │ │ ├── any_of.cpp │ │ │ ├── any_of.h │ │ │ ├── arap.cpp │ │ │ ├── arap.h │ │ │ ├── arap_dof.cpp │ │ │ ├── arap_dof.h │ │ │ ├── arap_linear_block.cpp │ │ │ ├── arap_linear_block.h │ │ │ ├── arap_rhs.cpp │ │ │ ├── arap_rhs.h │ │ │ ├── average_onto_faces.cpp │ │ │ ├── average_onto_faces.h │ │ │ ├── average_onto_vertices.cpp │ │ │ ├── average_onto_vertices.h │ │ │ ├── avg_edge_length.cpp │ │ │ ├── avg_edge_length.h │ │ │ ├── axis_angle_to_quat.cpp │ │ │ ├── axis_angle_to_quat.h │ │ │ ├── barycenter.cpp │ │ │ ├── barycenter.h │ │ │ ├── barycentric_coordinates.cpp │ │ │ ├── barycentric_coordinates.h │ │ │ ├── barycentric_to_global.cpp │ │ │ ├── barycentric_to_global.h │ │ │ ├── basename.cpp │ │ │ ├── basename.h │ │ │ ├── bbw.cpp │ │ │ ├── bbw.h │ │ │ ├── bezier.cpp │ │ │ ├── bezier.h │ │ │ ├── bfs.cpp │ │ │ ├── bfs.h │ │ │ ├── bfs_orient.cpp │ │ │ ├── bfs_orient.h │ │ │ ├── biharmonic_coordinates.cpp │ │ │ ├── biharmonic_coordinates.h │ │ │ ├── bijective_composite_harmonic_mapping.cpp │ │ │ ├── bijective_composite_harmonic_mapping.h │ │ │ ├── bone_parents.cpp │ │ │ ├── bone_parents.h │ │ │ ├── boundary_conditions.cpp │ │ │ ├── boundary_conditions.h │ │ │ ├── boundary_facets.cpp │ │ │ ├── boundary_facets.h │ │ │ ├── boundary_loop.cpp │ │ │ ├── boundary_loop.h │ │ │ ├── bounding_box.cpp │ │ │ ├── bounding_box.h │ │ │ ├── bounding_box_diagonal.cpp │ │ │ ├── bounding_box_diagonal.h │ │ │ ├── canonical_quaternions.cpp │ │ │ ├── canonical_quaternions.h │ │ │ ├── cat.cpp │ │ │ ├── cat.h │ │ │ ├── ceil.cpp │ │ │ ├── ceil.h │ │ │ ├── centroid.cpp │ │ │ ├── centroid.h │ │ │ ├── circulation.cpp │ │ │ ├── circulation.h │ │ │ ├── circumradius.cpp │ │ │ ├── circumradius.h │ │ │ ├── collapse_edge.cpp │ │ │ ├── collapse_edge.h │ │ │ ├── collapse_small_triangles.cpp │ │ │ ├── collapse_small_triangles.h │ │ │ ├── colon.cpp │ │ │ ├── colon.h │ │ │ ├── colormap.cpp │ │ │ ├── colormap.h │ │ │ ├── column_to_quats.cpp │ │ │ ├── column_to_quats.h │ │ │ ├── columnize.cpp │ │ │ ├── columnize.h │ │ │ ├── comb_cross_field.cpp │ │ │ ├── comb_cross_field.h │ │ │ ├── comb_frame_field.cpp │ │ │ ├── comb_frame_field.h │ │ │ ├── comb_line_field.cpp │ │ │ ├── comb_line_field.h │ │ │ ├── combine.cpp │ │ │ ├── combine.h │ │ │ ├── compute_frame_field_bisectors.cpp │ │ │ ├── compute_frame_field_bisectors.h │ │ │ ├── connect_boundary_to_infinity.cpp │ │ │ ├── connect_boundary_to_infinity.h │ │ │ ├── connected_components.cpp │ │ │ ├── connected_components.h │ │ │ ├── copyleft │ │ │ ├── README.md │ │ │ ├── cgal │ │ │ │ ├── BinaryWindingNumberOperations.h │ │ │ │ ├── CGAL_includes.hpp │ │ │ │ ├── CSGTree.h │ │ │ │ ├── RemeshSelfIntersectionsParam.h │ │ │ │ ├── SelfIntersectMesh.h │ │ │ │ ├── assign.cpp │ │ │ │ ├── assign.h │ │ │ │ ├── assign_scalar.cpp │ │ │ │ ├── assign_scalar.h │ │ │ │ ├── barycenter.cpp │ │ │ │ ├── cell_adjacency.cpp │ │ │ │ ├── cell_adjacency.h │ │ │ │ ├── closest_facet.cpp │ │ │ │ ├── closest_facet.h │ │ │ │ ├── complex_to_mesh.cpp │ │ │ │ ├── complex_to_mesh.h │ │ │ │ ├── component_inside_component.cpp │ │ │ │ ├── component_inside_component.h │ │ │ │ ├── convex_hull.cpp │ │ │ │ ├── convex_hull.h │ │ │ │ ├── coplanar.cpp │ │ │ │ ├── coplanar.h │ │ │ │ ├── delaunay_triangulation.cpp │ │ │ │ ├── delaunay_triangulation.h │ │ │ │ ├── extract_cells.cpp │ │ │ │ ├── extract_cells.h │ │ │ │ ├── extract_feature.cpp │ │ │ │ ├── extract_feature.h │ │ │ │ ├── fast_winding_number.cpp │ │ │ │ ├── fast_winding_number.h │ │ │ │ ├── half_space_box.cpp │ │ │ │ ├── half_space_box.h │ │ │ │ ├── hausdorff.cpp │ │ │ │ ├── hausdorff.h │ │ │ │ ├── incircle.cpp │ │ │ │ ├── incircle.h │ │ │ │ ├── insert_into_cdt.cpp │ │ │ │ ├── insert_into_cdt.h │ │ │ │ ├── insphere.cpp │ │ │ │ ├── insphere.h │ │ │ │ ├── intersect_other.cpp │ │ │ │ ├── intersect_other.h │ │ │ │ ├── intersect_with_half_space.cpp │ │ │ │ ├── intersect_with_half_space.h │ │ │ │ ├── lexicographic_triangulation.cpp │ │ │ │ ├── lexicographic_triangulation.h │ │ │ │ ├── list_to_matrix.cpp │ │ │ │ ├── mesh_boolean.cpp │ │ │ │ ├── mesh_boolean.h │ │ │ │ ├── mesh_boolean_type_to_funcs.cpp │ │ │ │ ├── mesh_boolean_type_to_funcs.h │ │ │ │ ├── mesh_to_cgal_triangle_list.cpp │ │ │ │ ├── mesh_to_cgal_triangle_list.h │ │ │ │ ├── mesh_to_polyhedron.cpp │ │ │ │ ├── mesh_to_polyhedron.h │ │ │ │ ├── minkowski_sum.cpp │ │ │ │ ├── minkowski_sum.h │ │ │ │ ├── order_facets_around_edge.cpp │ │ │ │ ├── order_facets_around_edge.h │ │ │ │ ├── order_facets_around_edges.cpp │ │ │ │ ├── order_facets_around_edges.h │ │ │ │ ├── orient2D.cpp │ │ │ │ ├── orient2D.h │ │ │ │ ├── orient3D.cpp │ │ │ │ ├── orient3D.h │ │ │ │ ├── outer_element.cpp │ │ │ │ ├── outer_element.h │ │ │ │ ├── outer_facet.cpp │ │ │ │ ├── outer_facet.h │ │ │ │ ├── outer_hull.cpp │ │ │ │ ├── outer_hull.h │ │ │ │ ├── peel_outer_hull_layers.cpp │ │ │ │ ├── peel_outer_hull_layers.h │ │ │ │ ├── peel_winding_number_layers.cpp │ │ │ │ ├── peel_winding_number_layers.h │ │ │ │ ├── piecewise_constant_winding_number.cpp │ │ │ │ ├── piecewise_constant_winding_number.h │ │ │ │ ├── point_areas.cpp │ │ │ │ ├── point_areas.h │ │ │ │ ├── point_mesh_squared_distance.cpp │ │ │ │ ├── point_mesh_squared_distance.h │ │ │ │ ├── point_segment_squared_distance.cpp │ │ │ │ ├── point_segment_squared_distance.h │ │ │ │ ├── point_solid_signed_squared_distance.cpp │ │ │ │ ├── point_solid_signed_squared_distance.h │ │ │ │ ├── point_triangle_squared_distance.cpp │ │ │ │ ├── point_triangle_squared_distance.h │ │ │ │ ├── points_inside_component.cpp │ │ │ │ ├── points_inside_component.h │ │ │ │ ├── polyhedron_to_mesh.cpp │ │ │ │ ├── polyhedron_to_mesh.h │ │ │ │ ├── projected_cdt.cpp │ │ │ │ ├── projected_cdt.h │ │ │ │ ├── projected_delaunay.cpp │ │ │ │ ├── projected_delaunay.h │ │ │ │ ├── propagate_winding_numbers.cpp │ │ │ │ ├── propagate_winding_numbers.h │ │ │ │ ├── read_triangle_mesh.cpp │ │ │ │ ├── read_triangle_mesh.h │ │ │ │ ├── relabel_small_immersed_cells.cpp │ │ │ │ ├── relabel_small_immersed_cells.h │ │ │ │ ├── remesh_intersections.cpp │ │ │ │ ├── remesh_intersections.h │ │ │ │ ├── remesh_self_intersections.cpp │ │ │ │ ├── remesh_self_intersections.h │ │ │ │ ├── remove_unreferenced.cpp │ │ │ │ ├── resolve_intersections.cpp │ │ │ │ ├── resolve_intersections.h │ │ │ │ ├── row_to_point.cpp │ │ │ │ ├── row_to_point.h │ │ │ │ ├── segment_segment_squared_distance.cpp │ │ │ │ ├── segment_segment_squared_distance.h │ │ │ │ ├── signed_distance_isosurface.cpp │ │ │ │ ├── signed_distance_isosurface.h │ │ │ │ ├── slice.cpp │ │ │ │ ├── slice_mask.cpp │ │ │ │ ├── snap_rounding.cpp │ │ │ │ ├── snap_rounding.h │ │ │ │ ├── string_to_mesh_boolean_type.cpp │ │ │ │ ├── string_to_mesh_boolean_type.h │ │ │ │ ├── subdivide_segments.cpp │ │ │ │ ├── subdivide_segments.h │ │ │ │ ├── submesh_aabb_tree.cpp │ │ │ │ ├── submesh_aabb_tree.h │ │ │ │ ├── triangle_triangle_squared_distance.cpp │ │ │ │ ├── triangle_triangle_squared_distance.h │ │ │ │ ├── trim_with_solid.cpp │ │ │ │ ├── trim_with_solid.h │ │ │ │ ├── unique.cpp │ │ │ │ ├── unique_rows.cpp │ │ │ │ ├── wire_mesh.cpp │ │ │ │ └── wire_mesh.h │ │ │ ├── comiso │ │ │ │ ├── frame_field.cpp │ │ │ │ ├── frame_field.h │ │ │ │ ├── miq.cpp │ │ │ │ ├── miq.h │ │ │ │ ├── nrosy.cpp │ │ │ │ └── nrosy.h │ │ │ ├── cork │ │ │ │ ├── from_cork_mesh.cpp │ │ │ │ ├── from_cork_mesh.h │ │ │ │ ├── mesh_boolean.cpp │ │ │ │ ├── mesh_boolean.h │ │ │ │ ├── to_cork_mesh.cpp │ │ │ │ └── to_cork_mesh.h │ │ │ ├── marching_cubes.cpp │ │ │ ├── marching_cubes.h │ │ │ ├── marching_cubes_tables.h │ │ │ ├── offset_surface.cpp │ │ │ ├── offset_surface.h │ │ │ ├── opengl2 │ │ │ │ ├── render_to_tga.cpp │ │ │ │ ├── render_to_tga.h │ │ │ │ ├── texture_from_tga.cpp │ │ │ │ ├── texture_from_tga.h │ │ │ │ ├── tga.cpp │ │ │ │ └── tga.h │ │ │ ├── progressive_hulls.cpp │ │ │ ├── progressive_hulls.h │ │ │ ├── progressive_hulls_cost_and_placement.cpp │ │ │ ├── progressive_hulls_cost_and_placement.h │ │ │ ├── quadprog.cpp │ │ │ ├── quadprog.h │ │ │ ├── swept_volume.cpp │ │ │ ├── swept_volume.h │ │ │ └── tetgen │ │ │ │ ├── README │ │ │ │ ├── cdt.cpp │ │ │ │ ├── cdt.h │ │ │ │ ├── mesh_to_tetgenio.cpp │ │ │ │ ├── mesh_to_tetgenio.h │ │ │ │ ├── mesh_with_skeleton.cpp │ │ │ │ ├── mesh_with_skeleton.h │ │ │ │ ├── read_into_tetgenio.cpp │ │ │ │ ├── read_into_tetgenio.h │ │ │ │ ├── tetgenio_to_tetmesh.cpp │ │ │ │ ├── tetgenio_to_tetmesh.h │ │ │ │ ├── tetrahedralize.cpp │ │ │ │ └── tetrahedralize.h │ │ │ ├── cotmatrix.cpp │ │ │ ├── cotmatrix.h │ │ │ ├── cotmatrix_entries.cpp │ │ │ ├── cotmatrix_entries.h │ │ │ ├── cotmatrix_intrinsic.cpp │ │ │ ├── cotmatrix_intrinsic.h │ │ │ ├── count.cpp │ │ │ ├── count.h │ │ │ ├── covariance_scatter_matrix.cpp │ │ │ ├── covariance_scatter_matrix.h │ │ │ ├── cross.cpp │ │ │ ├── cross.h │ │ │ ├── cross_field_mismatch.cpp │ │ │ ├── cross_field_mismatch.h │ │ │ ├── crouzeix_raviart_cotmatrix.cpp │ │ │ ├── crouzeix_raviart_cotmatrix.h │ │ │ ├── crouzeix_raviart_massmatrix.cpp │ │ │ ├── crouzeix_raviart_massmatrix.h │ │ │ ├── cumprod.cpp │ │ │ ├── cumprod.h │ │ │ ├── cumsum.cpp │ │ │ ├── cumsum.h │ │ │ ├── cut_mesh.cpp │ │ │ ├── cut_mesh.h │ │ │ ├── cut_mesh_from_singularities.cpp │ │ │ ├── cut_mesh_from_singularities.h │ │ │ ├── cut_to_disk.cpp │ │ │ ├── cut_to_disk.h │ │ │ ├── cylinder.cpp │ │ │ ├── cylinder.h │ │ │ ├── dated_copy.cpp │ │ │ ├── dated_copy.h │ │ │ ├── decimate.cpp │ │ │ ├── decimate.h │ │ │ ├── deform_skeleton.cpp │ │ │ ├── deform_skeleton.h │ │ │ ├── delaunay_triangulation.cpp │ │ │ ├── delaunay_triangulation.h │ │ │ ├── deprecated.h │ │ │ ├── dfs.cpp │ │ │ ├── dfs.h │ │ │ ├── diag.cpp │ │ │ ├── diag.h │ │ │ ├── dihedral_angles.cpp │ │ │ ├── dihedral_angles.h │ │ │ ├── dijkstra.cpp │ │ │ ├── dijkstra.h │ │ │ ├── direct_delta_mush.cpp │ │ │ ├── direct_delta_mush.h │ │ │ ├── directed_edge_orientations.cpp │ │ │ ├── directed_edge_orientations.h │ │ │ ├── directed_edge_parents.cpp │ │ │ ├── directed_edge_parents.h │ │ │ ├── dirname.cpp │ │ │ ├── dirname.h │ │ │ ├── dot.cpp │ │ │ ├── dot.h │ │ │ ├── dot_row.cpp │ │ │ ├── dot_row.h │ │ │ ├── doublearea.cpp │ │ │ ├── doublearea.h │ │ │ ├── dqs.cpp │ │ │ ├── dqs.h │ │ │ ├── ears.cpp │ │ │ ├── ears.h │ │ │ ├── edge_collapse_is_valid.cpp │ │ │ ├── edge_collapse_is_valid.h │ │ │ ├── edge_exists_near.cpp │ │ │ ├── edge_exists_near.h │ │ │ ├── edge_flaps.cpp │ │ │ ├── edge_flaps.h │ │ │ ├── edge_lengths.cpp │ │ │ ├── edge_lengths.h │ │ │ ├── edge_topology.cpp │ │ │ ├── edge_topology.h │ │ │ ├── edges.cpp │ │ │ ├── edges.h │ │ │ ├── edges_to_path.cpp │ │ │ ├── edges_to_path.h │ │ │ ├── eigs.cpp │ │ │ ├── eigs.h │ │ │ ├── embree │ │ │ ├── EmbreeIntersector.h │ │ │ ├── ambient_occlusion.cpp │ │ │ ├── ambient_occlusion.h │ │ │ ├── bone_heat.cpp │ │ │ ├── bone_heat.h │ │ │ ├── bone_visible.cpp │ │ │ ├── bone_visible.h │ │ │ ├── line_mesh_intersection.cpp │ │ │ ├── line_mesh_intersection.h │ │ │ ├── reorient_facets_raycast.cpp │ │ │ ├── reorient_facets_raycast.h │ │ │ ├── shape_diameter_function.cpp │ │ │ ├── shape_diameter_function.h │ │ │ ├── unproject_in_mesh.cpp │ │ │ ├── unproject_in_mesh.h │ │ │ ├── unproject_onto_mesh.cpp │ │ │ └── unproject_onto_mesh.h │ │ │ ├── euler_characteristic.cpp │ │ │ ├── euler_characteristic.h │ │ │ ├── exact_geodesic.cpp │ │ │ ├── exact_geodesic.h │ │ │ ├── example_fun.cpp │ │ │ ├── example_fun.h │ │ │ ├── exploded_view.cpp │ │ │ ├── exploded_view.h │ │ │ ├── exterior_edges.cpp │ │ │ ├── exterior_edges.h │ │ │ ├── extract_manifold_patches.cpp │ │ │ ├── extract_manifold_patches.h │ │ │ ├── extract_non_manifold_edge_curves.cpp │ │ │ ├── extract_non_manifold_edge_curves.h │ │ │ ├── face_areas.cpp │ │ │ ├── face_areas.h │ │ │ ├── face_occurrences.cpp │ │ │ ├── face_occurrences.h │ │ │ ├── faces_first.cpp │ │ │ ├── faces_first.h │ │ │ ├── facet_adjacency_matrix.cpp │ │ │ ├── facet_adjacency_matrix.h │ │ │ ├── facet_components.cpp │ │ │ ├── facet_components.h │ │ │ ├── false_barycentric_subdivision.cpp │ │ │ ├── false_barycentric_subdivision.h │ │ │ ├── fast_winding_number.cpp │ │ │ ├── fast_winding_number.h │ │ │ ├── file_contents_as_string.cpp │ │ │ ├── file_contents_as_string.h │ │ │ ├── file_dialog_open.cpp │ │ │ ├── file_dialog_open.h │ │ │ ├── file_dialog_save.cpp │ │ │ ├── file_dialog_save.h │ │ │ ├── file_exists.cpp │ │ │ ├── file_exists.h │ │ │ ├── find.cpp │ │ │ ├── find.h │ │ │ ├── find_cross_field_singularities.cpp │ │ │ ├── find_cross_field_singularities.h │ │ │ ├── find_zero.cpp │ │ │ ├── find_zero.h │ │ │ ├── fit_cubic_bezier.cpp │ │ │ ├── fit_cubic_bezier.h │ │ │ ├── fit_plane.cpp │ │ │ ├── fit_plane.h │ │ │ ├── fit_rotations.cpp │ │ │ ├── fit_rotations.h │ │ │ ├── flip_avoiding_line_search.cpp │ │ │ ├── flip_avoiding_line_search.h │ │ │ ├── flip_edge.cpp │ │ │ ├── flip_edge.h │ │ │ ├── flipped_triangles.cpp │ │ │ ├── flipped_triangles.h │ │ │ ├── flood_fill.cpp │ │ │ ├── flood_fill.h │ │ │ ├── floor.cpp │ │ │ ├── floor.h │ │ │ ├── for_each.h │ │ │ ├── forward_kinematics.cpp │ │ │ ├── forward_kinematics.h │ │ │ ├── frame_field_deformer.cpp │ │ │ ├── frame_field_deformer.h │ │ │ ├── frame_to_cross_field.cpp │ │ │ ├── frame_to_cross_field.h │ │ │ ├── frustum.cpp │ │ │ ├── frustum.h │ │ │ ├── gaussian_curvature.cpp │ │ │ ├── gaussian_curvature.h │ │ │ ├── get_seconds.cpp │ │ │ ├── get_seconds.h │ │ │ ├── get_seconds_hires.cpp │ │ │ ├── get_seconds_hires.h │ │ │ ├── grad.cpp │ │ │ ├── grad.h │ │ │ ├── grad_intrinsic.cpp │ │ │ ├── grad_intrinsic.h │ │ │ ├── grid.cpp │ │ │ ├── grid.h │ │ │ ├── grid_search.cpp │ │ │ ├── grid_search.h │ │ │ ├── group_sum_matrix.cpp │ │ │ ├── group_sum_matrix.h │ │ │ ├── guess_extension.cpp │ │ │ ├── guess_extension.h │ │ │ ├── harmonic.cpp │ │ │ ├── harmonic.h │ │ │ ├── harwell_boeing.cpp │ │ │ ├── harwell_boeing.h │ │ │ ├── hausdorff.cpp │ │ │ ├── hausdorff.h │ │ │ ├── heat_geodesics.cpp │ │ │ ├── heat_geodesics.h │ │ │ ├── hessian.cpp │ │ │ ├── hessian.h │ │ │ ├── hessian_energy.cpp │ │ │ ├── hessian_energy.h │ │ │ ├── histc.cpp │ │ │ ├── histc.h │ │ │ ├── hsv_to_rgb.cpp │ │ │ ├── hsv_to_rgb.h │ │ │ ├── igl_inline.h │ │ │ ├── in_element.cpp │ │ │ ├── in_element.h │ │ │ ├── infinite_cost_stopping_condition.cpp │ │ │ ├── infinite_cost_stopping_condition.h │ │ │ ├── inradius.cpp │ │ │ ├── inradius.h │ │ │ ├── internal_angles.cpp │ │ │ ├── internal_angles.h │ │ │ ├── intersect.cpp │ │ │ ├── intersect.h │ │ │ ├── intrinsic_delaunay_cotmatrix.cpp │ │ │ ├── intrinsic_delaunay_cotmatrix.h │ │ │ ├── intrinsic_delaunay_triangulation.cpp │ │ │ ├── intrinsic_delaunay_triangulation.h │ │ │ ├── invert_diag.cpp │ │ │ ├── invert_diag.h │ │ │ ├── is_border_vertex.cpp │ │ │ ├── is_border_vertex.h │ │ │ ├── is_boundary_edge.cpp │ │ │ ├── is_boundary_edge.h │ │ │ ├── is_delaunay.cpp │ │ │ ├── is_delaunay.h │ │ │ ├── is_dir.cpp │ │ │ ├── is_dir.h │ │ │ ├── is_edge_manifold.cpp │ │ │ ├── is_edge_manifold.h │ │ │ ├── is_file.cpp │ │ │ ├── is_file.h │ │ │ ├── is_intrinsic_delaunay.cpp │ │ │ ├── is_intrinsic_delaunay.h │ │ │ ├── is_irregular_vertex.cpp │ │ │ ├── is_irregular_vertex.h │ │ │ ├── is_planar.cpp │ │ │ ├── is_planar.h │ │ │ ├── is_readable.cpp │ │ │ ├── is_readable.h │ │ │ ├── is_sparse.cpp │ │ │ ├── is_sparse.h │ │ │ ├── is_stl.cpp │ │ │ ├── is_stl.h │ │ │ ├── is_symmetric.cpp │ │ │ ├── is_symmetric.h │ │ │ ├── is_vertex_manifold.cpp │ │ │ ├── is_vertex_manifold.h │ │ │ ├── is_writable.cpp │ │ │ ├── is_writable.h │ │ │ ├── isdiag.cpp │ │ │ ├── isdiag.h │ │ │ ├── ismember.cpp │ │ │ ├── ismember.h │ │ │ ├── isolines.cpp │ │ │ ├── isolines.h │ │ │ ├── isolines_map.cpp │ │ │ ├── isolines_map.h │ │ │ ├── iterative_closest_point.cpp │ │ │ ├── iterative_closest_point.h │ │ │ ├── jet.cpp │ │ │ ├── jet.h │ │ │ ├── knn.cpp │ │ │ ├── knn.h │ │ │ ├── launch_medit.cpp │ │ │ ├── launch_medit.h │ │ │ ├── lbs_matrix.cpp │ │ │ ├── lbs_matrix.h │ │ │ ├── lexicographic_triangulation.cpp │ │ │ ├── lexicographic_triangulation.h │ │ │ ├── limit_faces.cpp │ │ │ ├── limit_faces.h │ │ │ ├── line_field_mismatch.cpp │ │ │ ├── line_field_mismatch.h │ │ │ ├── line_search.cpp │ │ │ ├── line_search.h │ │ │ ├── line_segment_in_rectangle.cpp │ │ │ ├── line_segment_in_rectangle.h │ │ │ ├── linprog.cpp │ │ │ ├── linprog.h │ │ │ ├── list_to_matrix.cpp │ │ │ ├── list_to_matrix.h │ │ │ ├── local_basis.cpp │ │ │ ├── local_basis.h │ │ │ ├── look_at.cpp │ │ │ ├── look_at.h │ │ │ ├── loop.cpp │ │ │ ├── loop.h │ │ │ ├── lscm.cpp │ │ │ ├── lscm.h │ │ │ ├── map_vertices_to_circle.cpp │ │ │ ├── map_vertices_to_circle.h │ │ │ ├── mapping_energy_with_jacobians.cpp │ │ │ ├── mapping_energy_with_jacobians.h │ │ │ ├── marching_tets.cpp │ │ │ ├── marching_tets.h │ │ │ ├── massmatrix.cpp │ │ │ ├── massmatrix.h │ │ │ ├── massmatrix_intrinsic.cpp │ │ │ ├── massmatrix_intrinsic.h │ │ │ ├── mat_max.cpp │ │ │ ├── mat_max.h │ │ │ ├── mat_min.cpp │ │ │ ├── mat_min.h │ │ │ ├── mat_to_quat.cpp │ │ │ ├── mat_to_quat.h │ │ │ ├── material_colors.h │ │ │ ├── matlab │ │ │ ├── MatlabWorkspace.h │ │ │ ├── MexStream.h │ │ │ ├── matlabinterface.cpp │ │ │ ├── matlabinterface.h │ │ │ ├── mexErrMsgTxt.cpp │ │ │ ├── mexErrMsgTxt.h │ │ │ ├── parse_rhs.cpp │ │ │ ├── parse_rhs.h │ │ │ ├── prepare_lhs.cpp │ │ │ ├── prepare_lhs.h │ │ │ ├── requires_arg.cpp │ │ │ ├── requires_arg.h │ │ │ ├── validate_arg.cpp │ │ │ └── validate_arg.h │ │ │ ├── matlab_format.cpp │ │ │ ├── matlab_format.h │ │ │ ├── matrix_to_list.cpp │ │ │ ├── matrix_to_list.h │ │ │ ├── max.cpp │ │ │ ├── max.h │ │ │ ├── max_faces_stopping_condition.cpp │ │ │ ├── max_faces_stopping_condition.h │ │ │ ├── max_size.cpp │ │ │ ├── max_size.h │ │ │ ├── median.cpp │ │ │ ├── median.h │ │ │ ├── min.cpp │ │ │ ├── min.h │ │ │ ├── min_quad_dense.cpp │ │ │ ├── min_quad_dense.h │ │ │ ├── min_quad_with_fixed.cpp │ │ │ ├── min_quad_with_fixed.h │ │ │ ├── min_size.cpp │ │ │ ├── min_size.h │ │ │ ├── mod.cpp │ │ │ ├── mod.h │ │ │ ├── mode.cpp │ │ │ ├── mode.h │ │ │ ├── mosek │ │ │ ├── bbw.cpp │ │ │ ├── bbw.h │ │ │ ├── mosek_guarded.cpp │ │ │ ├── mosek_guarded.h │ │ │ ├── mosek_linprog.cpp │ │ │ ├── mosek_linprog.h │ │ │ ├── mosek_quadprog.cpp │ │ │ └── mosek_quadprog.h │ │ │ ├── mvc.cpp │ │ │ ├── mvc.h │ │ │ ├── nchoosek.cpp │ │ │ ├── nchoosek.h │ │ │ ├── next_filename.cpp │ │ │ ├── next_filename.h │ │ │ ├── normal_derivative.cpp │ │ │ ├── normal_derivative.h │ │ │ ├── normalize_quat.cpp │ │ │ ├── normalize_quat.h │ │ │ ├── normalize_row_lengths.cpp │ │ │ ├── normalize_row_lengths.h │ │ │ ├── normalize_row_sums.cpp │ │ │ ├── normalize_row_sums.h │ │ │ ├── null.cpp │ │ │ ├── null.h │ │ │ ├── octree.cpp │ │ │ ├── octree.h │ │ │ ├── on_boundary.cpp │ │ │ ├── on_boundary.h │ │ │ ├── opengl │ │ │ ├── MeshGL.cpp │ │ │ ├── MeshGL.h │ │ │ ├── ViewerCore.cpp │ │ │ ├── ViewerCore.h │ │ │ ├── ViewerData.cpp │ │ │ ├── ViewerData.h │ │ │ ├── bind_vertex_attrib_array.cpp │ │ │ ├── bind_vertex_attrib_array.h │ │ │ ├── create_index_vbo.cpp │ │ │ ├── create_index_vbo.h │ │ │ ├── create_mesh_vbo.cpp │ │ │ ├── create_mesh_vbo.h │ │ │ ├── create_shader_program.cpp │ │ │ ├── create_shader_program.h │ │ │ ├── create_vector_vbo.cpp │ │ │ ├── create_vector_vbo.h │ │ │ ├── destroy_shader_program.cpp │ │ │ ├── destroy_shader_program.h │ │ │ ├── gl.h │ │ │ ├── gl_type_size.cpp │ │ │ ├── gl_type_size.h │ │ │ ├── glfw │ │ │ │ ├── Viewer.cpp │ │ │ │ ├── Viewer.h │ │ │ │ ├── ViewerPlugin.h │ │ │ │ ├── background_window.cpp │ │ │ │ ├── background_window.h │ │ │ │ ├── imgui │ │ │ │ │ ├── ImGuiHelpers.h │ │ │ │ │ ├── ImGuiMenu.cpp │ │ │ │ │ ├── ImGuiMenu.h │ │ │ │ │ └── ImGuiTraits.h │ │ │ │ ├── map_texture.cpp │ │ │ │ └── map_texture.h │ │ │ ├── init_render_to_texture.cpp │ │ │ ├── init_render_to_texture.h │ │ │ ├── load_shader.cpp │ │ │ ├── load_shader.h │ │ │ ├── print_program_info_log.cpp │ │ │ ├── print_program_info_log.h │ │ │ ├── print_shader_info_log.cpp │ │ │ ├── print_shader_info_log.h │ │ │ ├── report_gl_error.cpp │ │ │ ├── report_gl_error.h │ │ │ ├── uniform_type_to_string.cpp │ │ │ ├── uniform_type_to_string.h │ │ │ ├── vertex_array.cpp │ │ │ └── vertex_array.h │ │ │ ├── orient_outward.cpp │ │ │ ├── orient_outward.h │ │ │ ├── orientable_patches.cpp │ │ │ ├── orientable_patches.h │ │ │ ├── oriented_facets.cpp │ │ │ ├── oriented_facets.h │ │ │ ├── orth.cpp │ │ │ ├── orth.h │ │ │ ├── ortho.cpp │ │ │ ├── ortho.h │ │ │ ├── outer_element.cpp │ │ │ ├── outer_element.h │ │ │ ├── parallel_for.h │ │ │ ├── parallel_transport_angles.cpp │ │ │ ├── parallel_transport_angles.h │ │ │ ├── partition.cpp │ │ │ ├── partition.h │ │ │ ├── parula.cpp │ │ │ ├── parula.h │ │ │ ├── path_to_edges.cpp │ │ │ ├── path_to_edges.h │ │ │ ├── path_to_executable.cpp │ │ │ ├── path_to_executable.h │ │ │ ├── pathinfo.cpp │ │ │ ├── pathinfo.h │ │ │ ├── per_corner_normals.cpp │ │ │ ├── per_corner_normals.h │ │ │ ├── per_edge_normals.cpp │ │ │ ├── per_edge_normals.h │ │ │ ├── per_face_normals.cpp │ │ │ ├── per_face_normals.h │ │ │ ├── per_vertex_attribute_smoothing.cpp │ │ │ ├── per_vertex_attribute_smoothing.h │ │ │ ├── per_vertex_normals.cpp │ │ │ ├── per_vertex_normals.h │ │ │ ├── per_vertex_point_to_plane_quadrics.cpp │ │ │ ├── per_vertex_point_to_plane_quadrics.h │ │ │ ├── piecewise_constant_winding_number.cpp │ │ │ ├── piecewise_constant_winding_number.h │ │ │ ├── pinv.cpp │ │ │ ├── pinv.h │ │ │ ├── planarize_quad_mesh.cpp │ │ │ ├── planarize_quad_mesh.h │ │ │ ├── png │ │ │ ├── readPNG.cpp │ │ │ ├── readPNG.h │ │ │ ├── render_to_png.cpp │ │ │ ├── render_to_png.h │ │ │ ├── render_to_png_async.cpp │ │ │ ├── render_to_png_async.h │ │ │ ├── texture_from_file.cpp │ │ │ ├── texture_from_file.h │ │ │ ├── texture_from_png.cpp │ │ │ ├── texture_from_png.h │ │ │ ├── writePNG.cpp │ │ │ └── writePNG.h │ │ │ ├── point_in_circle.cpp │ │ │ ├── point_in_circle.h │ │ │ ├── point_in_poly.cpp │ │ │ ├── point_in_poly.h │ │ │ ├── point_mesh_squared_distance.cpp │ │ │ ├── point_mesh_squared_distance.h │ │ │ ├── point_simplex_squared_distance.cpp │ │ │ ├── point_simplex_squared_distance.h │ │ │ ├── polar_dec.cpp │ │ │ ├── polar_dec.h │ │ │ ├── polar_svd.cpp │ │ │ ├── polar_svd.h │ │ │ ├── polar_svd3x3.cpp │ │ │ ├── polar_svd3x3.h │ │ │ ├── polygon_mesh_to_triangle_mesh.cpp │ │ │ ├── polygon_mesh_to_triangle_mesh.h │ │ │ ├── predicates │ │ │ ├── ear_clipping.cpp │ │ │ ├── ear_clipping.h │ │ │ ├── point_inside_convex_polygon.cpp │ │ │ ├── point_inside_convex_polygon.h │ │ │ ├── predicates.cpp │ │ │ ├── predicates.h │ │ │ ├── segment_segment_intersect.cpp │ │ │ └── segment_segment_intersect.h │ │ │ ├── principal_curvature.cpp │ │ │ ├── principal_curvature.h │ │ │ ├── print_ijv.cpp │ │ │ ├── print_ijv.h │ │ │ ├── print_vector.cpp │ │ │ ├── print_vector.h │ │ │ ├── procrustes.cpp │ │ │ ├── procrustes.h │ │ │ ├── project.cpp │ │ │ ├── project.h │ │ │ ├── project_isometrically_to_plane.cpp │ │ │ ├── project_isometrically_to_plane.h │ │ │ ├── project_to_line.cpp │ │ │ ├── project_to_line.h │ │ │ ├── project_to_line_segment.cpp │ │ │ ├── project_to_line_segment.h │ │ │ ├── projection_constraint.cpp │ │ │ ├── projection_constraint.h │ │ │ ├── pseudonormal_test.cpp │ │ │ ├── pseudonormal_test.h │ │ │ ├── pso.cpp │ │ │ ├── pso.h │ │ │ ├── qslim.cpp │ │ │ ├── qslim.h │ │ │ ├── qslim_optimal_collapse_edge_callbacks.cpp │ │ │ ├── qslim_optimal_collapse_edge_callbacks.h │ │ │ ├── quad_grid.cpp │ │ │ ├── quad_grid.h │ │ │ ├── quad_planarity.cpp │ │ │ ├── quad_planarity.h │ │ │ ├── quadric_binary_plus_operator.cpp │ │ │ ├── quadric_binary_plus_operator.h │ │ │ ├── quat_conjugate.cpp │ │ │ ├── quat_conjugate.h │ │ │ ├── quat_mult.cpp │ │ │ ├── quat_mult.h │ │ │ ├── quat_to_axis_angle.cpp │ │ │ ├── quat_to_axis_angle.h │ │ │ ├── quat_to_mat.cpp │ │ │ ├── quat_to_mat.h │ │ │ ├── quats_to_column.cpp │ │ │ ├── quats_to_column.h │ │ │ ├── ramer_douglas_peucker.cpp │ │ │ ├── ramer_douglas_peucker.h │ │ │ ├── random_dir.cpp │ │ │ ├── random_dir.h │ │ │ ├── random_points_on_mesh.cpp │ │ │ ├── random_points_on_mesh.h │ │ │ ├── random_quaternion.cpp │ │ │ ├── random_quaternion.h │ │ │ ├── random_search.cpp │ │ │ ├── random_search.h │ │ │ ├── randperm.cpp │ │ │ ├── randperm.h │ │ │ ├── ray_box_intersect.cpp │ │ │ ├── ray_box_intersect.h │ │ │ ├── ray_mesh_intersect.cpp │ │ │ ├── ray_mesh_intersect.h │ │ │ ├── ray_sphere_intersect.cpp │ │ │ ├── ray_sphere_intersect.h │ │ │ ├── raytri.c │ │ │ ├── readBF.cpp │ │ │ ├── readBF.h │ │ │ ├── readCSV.cpp │ │ │ ├── readCSV.h │ │ │ ├── readDMAT.cpp │ │ │ ├── readDMAT.h │ │ │ ├── readMESH.cpp │ │ │ ├── readMESH.h │ │ │ ├── readMSH.cpp │ │ │ ├── readMSH.h │ │ │ ├── readNODE.cpp │ │ │ ├── readNODE.h │ │ │ ├── readOBJ.cpp │ │ │ ├── readOBJ.h │ │ │ ├── readOFF.cpp │ │ │ ├── readOFF.h │ │ │ ├── readPLY.cpp │ │ │ ├── readPLY.h │ │ │ ├── readSTL.cpp │ │ │ ├── readSTL.h │ │ │ ├── readTGF.cpp │ │ │ ├── readTGF.h │ │ │ ├── readWRL.cpp │ │ │ ├── readWRL.h │ │ │ ├── read_triangle_mesh.cpp │ │ │ ├── read_triangle_mesh.h │ │ │ ├── redux.h │ │ │ ├── remesh_along_isoline.cpp │ │ │ ├── remesh_along_isoline.h │ │ │ ├── remove_duplicate_vertices.cpp │ │ │ ├── remove_duplicate_vertices.h │ │ │ ├── remove_duplicates.cpp │ │ │ ├── remove_duplicates.h │ │ │ ├── remove_unreferenced.cpp │ │ │ ├── remove_unreferenced.h │ │ │ ├── reorder.cpp │ │ │ ├── reorder.h │ │ │ ├── repdiag.cpp │ │ │ ├── repdiag.h │ │ │ ├── repmat.cpp │ │ │ ├── repmat.h │ │ │ ├── resolve_duplicated_faces.cpp │ │ │ ├── resolve_duplicated_faces.h │ │ │ ├── rgb_to_hsv.cpp │ │ │ ├── rgb_to_hsv.h │ │ │ ├── rigid_alignment.cpp │ │ │ ├── rigid_alignment.h │ │ │ ├── rotate_by_quat.cpp │ │ │ ├── rotate_by_quat.h │ │ │ ├── rotate_vectors.cpp │ │ │ ├── rotate_vectors.h │ │ │ ├── rotation_matrix_from_directions.cpp │ │ │ ├── rotation_matrix_from_directions.h │ │ │ ├── round.cpp │ │ │ ├── round.h │ │ │ ├── rows_to_matrix.cpp │ │ │ ├── rows_to_matrix.h │ │ │ ├── sample_edges.cpp │ │ │ ├── sample_edges.h │ │ │ ├── scaf.cpp │ │ │ ├── scaf.h │ │ │ ├── seam_edges.cpp │ │ │ ├── seam_edges.h │ │ │ ├── segment_segment_intersect.cpp │ │ │ ├── segment_segment_intersect.h │ │ │ ├── serialize.h │ │ │ ├── setdiff.cpp │ │ │ ├── setdiff.h │ │ │ ├── setunion.cpp │ │ │ ├── setunion.h │ │ │ ├── setxor.cpp │ │ │ ├── setxor.h │ │ │ ├── shape_diameter_function.cpp │ │ │ ├── shape_diameter_function.h │ │ │ ├── shapeup.cpp │ │ │ ├── shapeup.h │ │ │ ├── sharp_edges.cpp │ │ │ ├── sharp_edges.h │ │ │ ├── shortest_edge_and_midpoint.cpp │ │ │ ├── shortest_edge_and_midpoint.h │ │ │ ├── signed_angle.cpp │ │ │ ├── signed_angle.h │ │ │ ├── signed_distance.cpp │ │ │ ├── signed_distance.h │ │ │ ├── simplify_polyhedron.cpp │ │ │ ├── simplify_polyhedron.h │ │ │ ├── slice.cpp │ │ │ ├── slice.h │ │ │ ├── slice_cached.cpp │ │ │ ├── slice_cached.h │ │ │ ├── slice_into.cpp │ │ │ ├── slice_into.h │ │ │ ├── slice_mask.cpp │ │ │ ├── slice_mask.h │ │ │ ├── slice_sorted.cpp │ │ │ ├── slice_sorted.h │ │ │ ├── slim.cpp │ │ │ ├── slim.h │ │ │ ├── snap_points.cpp │ │ │ ├── snap_points.h │ │ │ ├── snap_to_canonical_view_quat.cpp │ │ │ ├── snap_to_canonical_view_quat.h │ │ │ ├── snap_to_fixed_up.cpp │ │ │ ├── snap_to_fixed_up.h │ │ │ ├── solid_angle.cpp │ │ │ ├── solid_angle.h │ │ │ ├── sort.cpp │ │ │ ├── sort.h │ │ │ ├── sort_angles.cpp │ │ │ ├── sort_angles.h │ │ │ ├── sort_triangles.cpp │ │ │ ├── sort_triangles.h │ │ │ ├── sort_vectors_ccw.cpp │ │ │ ├── sort_vectors_ccw.h │ │ │ ├── sortrows.cpp │ │ │ ├── sortrows.h │ │ │ ├── sparse.cpp │ │ │ ├── sparse.h │ │ │ ├── sparse_cached.cpp │ │ │ ├── sparse_cached.h │ │ │ ├── sparse_voxel_grid.cpp │ │ │ ├── sparse_voxel_grid.h │ │ │ ├── speye.cpp │ │ │ ├── speye.h │ │ │ ├── squared_edge_lengths.cpp │ │ │ ├── squared_edge_lengths.h │ │ │ ├── stdin_to_temp.cpp │ │ │ ├── stdin_to_temp.h │ │ │ ├── straighten_seams.cpp │ │ │ ├── straighten_seams.h │ │ │ ├── sum.cpp │ │ │ ├── sum.h │ │ │ ├── svd3x3.cpp │ │ │ ├── svd3x3.h │ │ │ ├── svd3x3_avx.cpp │ │ │ ├── svd3x3_avx.h │ │ │ ├── svd3x3_sse.cpp │ │ │ ├── svd3x3_sse.h │ │ │ ├── swept_volume_bounding_box.cpp │ │ │ ├── swept_volume_bounding_box.h │ │ │ ├── swept_volume_signed_distance.cpp │ │ │ ├── swept_volume_signed_distance.h │ │ │ ├── tan_half_angle.cpp │ │ │ ├── tan_half_angle.h │ │ │ ├── tet_tet_adjacency.cpp │ │ │ ├── tet_tet_adjacency.h │ │ │ ├── tinyply.cpp │ │ │ ├── tinyply.h │ │ │ ├── topological_hole_fill.cpp │ │ │ ├── topological_hole_fill.h │ │ │ ├── trackball.cpp │ │ │ ├── trackball.h │ │ │ ├── transpose_blocks.cpp │ │ │ ├── transpose_blocks.h │ │ │ ├── triangle │ │ │ ├── cdt.cpp │ │ │ ├── cdt.h │ │ │ ├── triangulate.cpp │ │ │ └── triangulate.h │ │ │ ├── triangle_fan.cpp │ │ │ ├── triangle_fan.h │ │ │ ├── triangle_triangle_adjacency.cpp │ │ │ ├── triangle_triangle_adjacency.h │ │ │ ├── triangles_from_strip.cpp │ │ │ ├── triangles_from_strip.h │ │ │ ├── triangulated_grid.cpp │ │ │ ├── triangulated_grid.h │ │ │ ├── two_axis_valuator_fixed_up.cpp │ │ │ ├── two_axis_valuator_fixed_up.h │ │ │ ├── uniformly_sample_two_manifold.cpp │ │ │ ├── uniformly_sample_two_manifold.h │ │ │ ├── unique.cpp │ │ │ ├── unique.h │ │ │ ├── unique_edge_map.cpp │ │ │ ├── unique_edge_map.h │ │ │ ├── unique_rows.cpp │ │ │ ├── unique_rows.h │ │ │ ├── unique_simplices.cpp │ │ │ ├── unique_simplices.h │ │ │ ├── unproject.cpp │ │ │ ├── unproject.h │ │ │ ├── unproject_in_mesh.cpp │ │ │ ├── unproject_in_mesh.h │ │ │ ├── unproject_on_line.cpp │ │ │ ├── unproject_on_line.h │ │ │ ├── unproject_on_plane.cpp │ │ │ ├── unproject_on_plane.h │ │ │ ├── unproject_onto_mesh.cpp │ │ │ ├── unproject_onto_mesh.h │ │ │ ├── unproject_ray.cpp │ │ │ ├── unproject_ray.h │ │ │ ├── unzip_corners.cpp │ │ │ ├── unzip_corners.h │ │ │ ├── upsample.cpp │ │ │ ├── upsample.h │ │ │ ├── vector_area_matrix.cpp │ │ │ ├── vector_area_matrix.h │ │ │ ├── verbose.h │ │ │ ├── vertex_components.cpp │ │ │ ├── vertex_components.h │ │ │ ├── vertex_triangle_adjacency.cpp │ │ │ ├── vertex_triangle_adjacency.h │ │ │ ├── volume.cpp │ │ │ ├── volume.h │ │ │ ├── voxel_grid.cpp │ │ │ ├── voxel_grid.h │ │ │ ├── winding_number.cpp │ │ │ ├── winding_number.h │ │ │ ├── writeBF.cpp │ │ │ ├── writeBF.h │ │ │ ├── writeDMAT.cpp │ │ │ ├── writeDMAT.h │ │ │ ├── writeMESH.cpp │ │ │ ├── writeMESH.h │ │ │ ├── writeOBJ.cpp │ │ │ ├── writeOBJ.h │ │ │ ├── writeOFF.cpp │ │ │ ├── writeOFF.h │ │ │ ├── writePLY.cpp │ │ │ ├── writePLY.h │ │ │ ├── writeSTL.cpp │ │ │ ├── writeSTL.h │ │ │ ├── writeTGF.cpp │ │ │ ├── writeTGF.h │ │ │ ├── writeWRL.cpp │ │ │ ├── writeWRL.h │ │ │ ├── write_triangle_mesh.cpp │ │ │ ├── write_triangle_mesh.h │ │ │ └── xml │ │ │ ├── ReAntTweakBarXMLSerialization.h │ │ │ ├── XMLSerializable.h │ │ │ ├── serialization_test.skip │ │ │ ├── serialize_xml.cpp │ │ │ ├── serialize_xml.h │ │ │ ├── writeDAE.cpp │ │ │ ├── writeDAE.h │ │ │ ├── write_triangle_mesh.cpp │ │ │ └── write_triangle_mesh.h │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── igl │ │ │ │ ├── accumarray.cpp │ │ │ │ ├── avg_edge_length.cpp │ │ │ │ ├── bbw.cpp │ │ │ │ ├── bezier.cpp │ │ │ │ ├── boundary_facets.cpp │ │ │ │ ├── boundary_loop.cpp │ │ │ │ ├── cat.cpp │ │ │ │ ├── circulation.cpp │ │ │ │ ├── copyleft │ │ │ │ ├── boolean │ │ │ │ │ └── mesh_boolean.cpp │ │ │ │ ├── cgal │ │ │ │ │ ├── CSGTree.cpp │ │ │ │ │ ├── delaunay_triangulation.cpp │ │ │ │ │ ├── hausdorff.cpp │ │ │ │ │ ├── mesh_to_polyhedron.cpp │ │ │ │ │ ├── order_facets_around_edges.cpp │ │ │ │ │ ├── outer_facet.cpp │ │ │ │ │ ├── outer_hull.cpp │ │ │ │ │ ├── peel_outer_hull_layers.cpp │ │ │ │ │ ├── points_inside_component.cpp │ │ │ │ │ └── remesh_self_intersections.cpp │ │ │ │ ├── comiso │ │ │ │ │ └── miq.cpp │ │ │ │ └── tetgen │ │ │ │ │ └── tetrahedralize.cpp │ │ │ │ ├── cotmatrix.cpp │ │ │ │ ├── cotmatrix_entries.cpp │ │ │ │ ├── cotmatrix_intrinsic.cpp │ │ │ │ ├── cumprod.cpp │ │ │ │ ├── cumsum.cpp │ │ │ │ ├── cut_mesh.cpp │ │ │ │ ├── cut_to_disk.cpp │ │ │ │ ├── decimate.cpp │ │ │ │ ├── delaunay_triangulation.cpp │ │ │ │ ├── dijkstra.cpp │ │ │ │ ├── direct_delta_mush.cpp │ │ │ │ ├── dirname.cpp │ │ │ │ ├── doublearea.cpp │ │ │ │ ├── edge_exists_near.cpp │ │ │ │ ├── edge_flaps.cpp │ │ │ │ ├── edge_lengths.cpp │ │ │ │ ├── embree │ │ │ │ └── EmbreeIntersector.cpp │ │ │ │ ├── facet_components.cpp │ │ │ │ ├── fast_winding_number.cpp │ │ │ │ ├── fit_cubic_bezier.cpp │ │ │ │ ├── grad.cpp │ │ │ │ ├── grad_intrinsic.cpp │ │ │ │ ├── grid.cpp │ │ │ │ ├── guess_extension.cpp │ │ │ │ ├── heat_geodesics.cpp │ │ │ │ ├── intrinsic_delaunay_cotmatrix.cpp │ │ │ │ ├── intrinsic_delaunay_triangulation.cpp │ │ │ │ ├── is_delaunay.cpp │ │ │ │ ├── is_edge_manifold.cpp │ │ │ │ ├── is_intrinsic_delaunay.cpp │ │ │ │ ├── is_irregular_vertex.cpp │ │ │ │ ├── is_symmetric.cpp │ │ │ │ ├── ismember.cpp │ │ │ │ ├── iterative_closest_point.cpp │ │ │ │ ├── list_to_matrix.cpp │ │ │ │ ├── mosek │ │ │ │ └── bbw.cpp │ │ │ │ ├── path_to_edges.cpp │ │ │ │ ├── path_to_executable.cpp │ │ │ │ ├── pathinfo.cpp │ │ │ │ ├── per_face_normals.cpp │ │ │ │ ├── predicates │ │ │ │ ├── ear_clipping.cpp │ │ │ │ ├── predicates.cpp │ │ │ │ └── segment_segment_intersect.cpp │ │ │ │ ├── qslim.cpp │ │ │ │ ├── randperm.cpp │ │ │ │ ├── readDMAT.cpp │ │ │ │ ├── readOBJ.cpp │ │ │ │ ├── readOFF.cpp │ │ │ │ ├── readPLY.cpp │ │ │ │ ├── rigid_alignment.cpp │ │ │ │ ├── scaf.cpp │ │ │ │ ├── seam_edges.cpp │ │ │ │ ├── segment_segment_intersect.cpp │ │ │ │ ├── setdiff.cpp │ │ │ │ ├── signed_distance.cpp │ │ │ │ ├── slice.cpp │ │ │ │ ├── slice_into.cpp │ │ │ │ ├── slice_sorted.cpp │ │ │ │ ├── sort.cpp │ │ │ │ ├── squared_edge_lengths.cpp │ │ │ │ ├── tet_tet_adjacency.cpp │ │ │ │ ├── triangle_triangle_adjacency.cpp │ │ │ │ ├── triangulated_grid.cpp │ │ │ │ ├── unique.cpp │ │ │ │ ├── unique_simplices.cpp │ │ │ │ ├── upsample.cpp │ │ │ │ └── writePLY.cpp │ │ ├── main.cpp │ │ └── test_common.h │ └── tutorial │ │ ├── 101_FileIO │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 102_DrawMesh │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 103_Events │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 104_Colors │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 105_Overlays │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 106_ViewerMenu │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 107_MultipleMeshes │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 108_MultipleViews │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 201_Normals │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 202_GaussianCurvature │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 203_CurvatureDirections │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 204_Gradient │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 205_Laplacian │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 206_GeodesicDistance │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 301_Slice │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 302_Sort │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 303_LaplaceEquation │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 304_LinearEqualityConstraints │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 305_QuadraticProgramming │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 306_EigenDecomposition │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 401_BiharmonicDeformation │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 402_PolyharmonicDeformation │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 403_BoundedBiharmonicWeights │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 404_DualQuaternionSkinning │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 405_AsRigidAsPossible │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 406_FastAutomaticSkinningTransformations │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 407_BiharmonicCoordinates │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 408_DirectDeltaMush │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 501_HarmonicParam │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 502_LSCMParam │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 503_ARAPParam │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 504_NRosyDesign │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 505_MIQ │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 506_FrameField │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 507_Planarization │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 601_Serialization │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 602_Matlab │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ └── run.sh │ │ ├── 603_MEX │ │ ├── compileMEX.m │ │ └── readOBJ_mex.cpp │ │ ├── 604_Triangle │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 605_Tetgen │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 606_AmbientOcclusion │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 607_ScreenCapture │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 609_Boolean │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 610_CSGTree │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 701_Statistics │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 702_WindingNumber │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 703_Decimation │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 704_SignedDistance │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 705_MarchingCubes │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 706_FacetOrientation │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 707_SweptVolume │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 708_Picking │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 709_SLIM │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 710_SCAF │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 711_Subdivision │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 712_DataSmoothing │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 713_ShapeUp │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 714_MarchingTets │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 715_MeshImplicitFunction │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 716_HeatGeodesics │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 717_FastWindingNumber │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 718_IterativeClosestPoint │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── 719_ExplodedView │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── CMakeLists.txt │ │ └── tutorial_shared_path.h └── triangle.shar └── wrap_utils ├── __init__.py ├── get_pixelValue.py ├── load_texture.py ├── my_OpenEXR.py ├── my_objLoader_meshlab.py └── utils_shtools.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/README.md -------------------------------------------------------------------------------- /color_texture_branch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/color_texture_branch/__init__.py -------------------------------------------------------------------------------- /color_texture_branch/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/color_texture_branch/config.py -------------------------------------------------------------------------------- /color_texture_branch/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/color_texture_branch/dataset.py -------------------------------------------------------------------------------- /color_texture_branch/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/color_texture_branch/model.py -------------------------------------------------------------------------------- /color_texture_branch/model_eigengan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/color_texture_branch/model_eigengan.py -------------------------------------------------------------------------------- /color_texture_branch/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/color_texture_branch/module.py -------------------------------------------------------------------------------- /color_texture_branch/predictor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/color_texture_branch/predictor/__init__.py -------------------------------------------------------------------------------- /color_texture_branch/predictor/predictor_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/color_texture_branch/predictor/predictor_config.py -------------------------------------------------------------------------------- /color_texture_branch/predictor/predictor_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/color_texture_branch/predictor/predictor_model.py -------------------------------------------------------------------------------- /color_texture_branch/predictor/predictor_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/color_texture_branch/predictor/predictor_solver.py -------------------------------------------------------------------------------- /color_texture_branch/predictor/predictor_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/color_texture_branch/predictor/predictor_train.py -------------------------------------------------------------------------------- /color_texture_branch/script_find_direction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/color_texture_branch/script_find_direction.py -------------------------------------------------------------------------------- /color_texture_branch/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/color_texture_branch/solver.py -------------------------------------------------------------------------------- /color_texture_branch/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/color_texture_branch/train.py -------------------------------------------------------------------------------- /color_texture_branch/validation_in_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/color_texture_branch/validation_in_train.py -------------------------------------------------------------------------------- /common_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/common_dataset.py -------------------------------------------------------------------------------- /dataset_scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/dataset_scripts/__init__.py -------------------------------------------------------------------------------- /dataset_scripts/script_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/dataset_scripts/script_crop.py -------------------------------------------------------------------------------- /dataset_scripts/script_get_color_var_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/dataset_scripts/script_get_color_var_label.py -------------------------------------------------------------------------------- /dataset_scripts/script_get_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/dataset_scripts/script_get_mask.py -------------------------------------------------------------------------------- /dataset_scripts/script_get_rgb_hsv_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/dataset_scripts/script_get_rgb_hsv_label.py -------------------------------------------------------------------------------- /dataset_scripts/script_get_sean_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/dataset_scripts/script_get_sean_code.py -------------------------------------------------------------------------------- /dataset_scripts/script_landmark_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/dataset_scripts/script_landmark_detection.py -------------------------------------------------------------------------------- /dataset_scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/dataset_scripts/utils.py -------------------------------------------------------------------------------- /external_code/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/__init__.py -------------------------------------------------------------------------------- /external_code/crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/crop.py -------------------------------------------------------------------------------- /external_code/data/3DMM/3DMM_normal.obj.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/data/3DMM/3DMM_normal.obj.mtl -------------------------------------------------------------------------------- /external_code/data/3DMM/BFM_UV.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/data/3DMM/BFM_UV.mat -------------------------------------------------------------------------------- /external_code/data/3DMM/UV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/data/3DMM/UV.png -------------------------------------------------------------------------------- /external_code/data/3DMM/color_label_v4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/data/3DMM/color_label_v4.png -------------------------------------------------------------------------------- /external_code/data/3DMM/label_v4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/data/3DMM/label_v4.png -------------------------------------------------------------------------------- /external_code/data/3DMM/model_info.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/data/3DMM/model_info.mat -------------------------------------------------------------------------------- /external_code/face_parsing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/.gitignore -------------------------------------------------------------------------------- /external_code/face_parsing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/LICENSE -------------------------------------------------------------------------------- /external_code/face_parsing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/README.md -------------------------------------------------------------------------------- /external_code/face_parsing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/__init__.py -------------------------------------------------------------------------------- /external_code/face_parsing/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/evaluate.py -------------------------------------------------------------------------------- /external_code/face_parsing/face_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/face_dataset.py -------------------------------------------------------------------------------- /external_code/face_parsing/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/logger.py -------------------------------------------------------------------------------- /external_code/face_parsing/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/loss.py -------------------------------------------------------------------------------- /external_code/face_parsing/makeup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/makeup.py -------------------------------------------------------------------------------- /external_code/face_parsing/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/model.py -------------------------------------------------------------------------------- /external_code/face_parsing/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/modules/__init__.py -------------------------------------------------------------------------------- /external_code/face_parsing/modules/bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/modules/bn.py -------------------------------------------------------------------------------- /external_code/face_parsing/modules/deeplab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/modules/deeplab.py -------------------------------------------------------------------------------- /external_code/face_parsing/modules/dense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/modules/dense.py -------------------------------------------------------------------------------- /external_code/face_parsing/modules/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/modules/functions.py -------------------------------------------------------------------------------- /external_code/face_parsing/modules/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/modules/misc.py -------------------------------------------------------------------------------- /external_code/face_parsing/modules/residual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/modules/residual.py -------------------------------------------------------------------------------- /external_code/face_parsing/modules/src/checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/modules/src/checks.h -------------------------------------------------------------------------------- /external_code/face_parsing/modules/src/inplace_abn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/modules/src/inplace_abn.cpp -------------------------------------------------------------------------------- /external_code/face_parsing/modules/src/inplace_abn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/modules/src/inplace_abn.h -------------------------------------------------------------------------------- /external_code/face_parsing/modules/src/inplace_abn_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/modules/src/inplace_abn_cpu.cpp -------------------------------------------------------------------------------- /external_code/face_parsing/modules/src/inplace_abn_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/modules/src/inplace_abn_cuda.cu -------------------------------------------------------------------------------- /external_code/face_parsing/modules/src/inplace_abn_cuda_half.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/modules/src/inplace_abn_cuda_half.cu -------------------------------------------------------------------------------- /external_code/face_parsing/modules/src/utils/checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/modules/src/utils/checks.h -------------------------------------------------------------------------------- /external_code/face_parsing/modules/src/utils/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/modules/src/utils/common.h -------------------------------------------------------------------------------- /external_code/face_parsing/modules/src/utils/cuda.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/modules/src/utils/cuda.cuh -------------------------------------------------------------------------------- /external_code/face_parsing/my_parsing_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/my_parsing_util.py -------------------------------------------------------------------------------- /external_code/face_parsing/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/optimizer.py -------------------------------------------------------------------------------- /external_code/face_parsing/prepropess_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/prepropess_data.py -------------------------------------------------------------------------------- /external_code/face_parsing/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/resnet.py -------------------------------------------------------------------------------- /external_code/face_parsing/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/train.py -------------------------------------------------------------------------------- /external_code/face_parsing/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/face_parsing/transform.py -------------------------------------------------------------------------------- /external_code/landmarks_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/landmarks_util.py -------------------------------------------------------------------------------- /external_code/my_cython/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/my_cython/__init__.py -------------------------------------------------------------------------------- /external_code/my_cython/build/temp.linux-x86_64-3.6/mesh_core.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/my_cython/build/temp.linux-x86_64-3.6/mesh_core.o -------------------------------------------------------------------------------- /external_code/my_cython/build/temp.linux-x86_64-3.6/mesh_core_cython.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/my_cython/build/temp.linux-x86_64-3.6/mesh_core_cython.o -------------------------------------------------------------------------------- /external_code/my_cython/build/temp.linux-x86_64-3.8/mesh_core.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/my_cython/build/temp.linux-x86_64-3.8/mesh_core.o -------------------------------------------------------------------------------- /external_code/my_cython/build/temp.linux-x86_64-3.8/mesh_core_cython.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/my_cython/build/temp.linux-x86_64-3.8/mesh_core_cython.o -------------------------------------------------------------------------------- /external_code/my_cython/mesh_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/my_cython/mesh_core.cpp -------------------------------------------------------------------------------- /external_code/my_cython/mesh_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/my_cython/mesh_core.h -------------------------------------------------------------------------------- /external_code/my_cython/mesh_core_cython.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/my_cython/mesh_core_cython.cpp -------------------------------------------------------------------------------- /external_code/my_cython/mesh_core_cython.cpython-36m-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/my_cython/mesh_core_cython.cpython-36m-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /external_code/my_cython/mesh_core_cython.cpython-38-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/my_cython/mesh_core_cython.cpython-38-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /external_code/my_cython/mesh_core_cython.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/my_cython/mesh_core_cython.pyx -------------------------------------------------------------------------------- /external_code/my_cython/my_mesh_core_cython.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/my_cython/my_mesh_core_cython.pyx -------------------------------------------------------------------------------- /external_code/my_cython/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/my_cython/readme.md -------------------------------------------------------------------------------- /external_code/my_cython/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/external_code/my_cython/setup.py -------------------------------------------------------------------------------- /global_value_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/global_value_utils.py -------------------------------------------------------------------------------- /hair_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/hair_editor.py -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___00541.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___00541.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___00644.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___00644.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___01303.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___01303.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___01385.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___01385.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___01483.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___01483.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___01697.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___01697.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___01825.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___01825.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___02378.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___02378.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___02974.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___02974.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___02989.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___02989.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___03854.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___03854.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___04313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___04313.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___04716.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___04716.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___04884.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___04884.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___05236.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___05236.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___06195.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___06195.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___06410.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___06410.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___07373.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___07373.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___07733.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___07733.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___08125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___08125.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___09657.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___09657.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___09846.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___09846.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___10058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___10058.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___10968.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___10968.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___11028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___11028.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___12264.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___12264.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___13307.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___13307.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___13530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___13530.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___13585.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___13585.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___17048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___17048.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___19156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___19156.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___21459.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___21459.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___23711.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___23711.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___26250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___26250.png -------------------------------------------------------------------------------- /imgs/CelebaMask_HQ___27640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/CelebaMask_HQ___27640.png -------------------------------------------------------------------------------- /imgs/ffhq___00744.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/ffhq___00744.png -------------------------------------------------------------------------------- /imgs/ffhq___05118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/ffhq___05118.png -------------------------------------------------------------------------------- /imgs/ffhq___08962.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/ffhq___08962.png -------------------------------------------------------------------------------- /imgs/ffhq___13195.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/ffhq___13195.png -------------------------------------------------------------------------------- /imgs/ffhq___21812.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/ffhq___21812.png -------------------------------------------------------------------------------- /imgs/ffhq___27127.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/ffhq___27127.png -------------------------------------------------------------------------------- /imgs/ffhq___46704.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/ffhq___46704.png -------------------------------------------------------------------------------- /imgs/ffhq___49828.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/ffhq___49828.png -------------------------------------------------------------------------------- /imgs/ffhq___51913.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/ffhq___51913.png -------------------------------------------------------------------------------- /imgs/ffhq___53833.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/ffhq___53833.png -------------------------------------------------------------------------------- /imgs/ffhq___54534.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/ffhq___54534.png -------------------------------------------------------------------------------- /imgs/ffhq___58529.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/ffhq___58529.png -------------------------------------------------------------------------------- /imgs/ffhq___62430.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/ffhq___62430.png -------------------------------------------------------------------------------- /imgs/ffhq___65720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/ffhq___65720.png -------------------------------------------------------------------------------- /imgs/ffhq___66537.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/imgs/ffhq___66537.png -------------------------------------------------------------------------------- /my_pylib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/my_pylib/__init__.py -------------------------------------------------------------------------------- /my_pylib/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/my_pylib/path.py -------------------------------------------------------------------------------- /my_pylib/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/my_pylib/timer.py -------------------------------------------------------------------------------- /my_pylib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/my_pylib/utils.py -------------------------------------------------------------------------------- /my_torchlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/my_torchlib/__init__.py -------------------------------------------------------------------------------- /my_torchlib/layers/__init__.py: -------------------------------------------------------------------------------- 1 | from .layers import * 2 | -------------------------------------------------------------------------------- /my_torchlib/layers/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/my_torchlib/layers/layers.py -------------------------------------------------------------------------------- /my_torchlib/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/my_torchlib/module.py -------------------------------------------------------------------------------- /my_torchlib/train_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/my_torchlib/train_utils.py -------------------------------------------------------------------------------- /my_torchlib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/my_torchlib/utils.py -------------------------------------------------------------------------------- /poisson_blending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/poisson_blending.py -------------------------------------------------------------------------------- /sean_codes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/__init__.py -------------------------------------------------------------------------------- /sean_codes/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/data/__init__.py -------------------------------------------------------------------------------- /sean_codes/data/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/data/base_dataset.py -------------------------------------------------------------------------------- /sean_codes/data/custom_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/data/custom_dataset.py -------------------------------------------------------------------------------- /sean_codes/data/image_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/data/image_folder.py -------------------------------------------------------------------------------- /sean_codes/data/pix2pix_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/data/pix2pix_dataset.py -------------------------------------------------------------------------------- /sean_codes/get_mean_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/get_mean_code.py -------------------------------------------------------------------------------- /sean_codes/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/models/__init__.py -------------------------------------------------------------------------------- /sean_codes/models/networks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/models/networks/__init__.py -------------------------------------------------------------------------------- /sean_codes/models/networks/architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/models/networks/architecture.py -------------------------------------------------------------------------------- /sean_codes/models/networks/base_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/models/networks/base_network.py -------------------------------------------------------------------------------- /sean_codes/models/networks/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/models/networks/discriminator.py -------------------------------------------------------------------------------- /sean_codes/models/networks/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/models/networks/encoder.py -------------------------------------------------------------------------------- /sean_codes/models/networks/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/models/networks/generator.py -------------------------------------------------------------------------------- /sean_codes/models/networks/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/models/networks/loss.py -------------------------------------------------------------------------------- /sean_codes/models/networks/normalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/models/networks/normalization.py -------------------------------------------------------------------------------- /sean_codes/models/networks/sync_batchnorm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/models/networks/sync_batchnorm/__init__.py -------------------------------------------------------------------------------- /sean_codes/models/networks/sync_batchnorm/batchnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/models/networks/sync_batchnorm/batchnorm.py -------------------------------------------------------------------------------- /sean_codes/models/networks/sync_batchnorm/batchnorm_reimpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/models/networks/sync_batchnorm/batchnorm_reimpl.py -------------------------------------------------------------------------------- /sean_codes/models/networks/sync_batchnorm/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/models/networks/sync_batchnorm/comm.py -------------------------------------------------------------------------------- /sean_codes/models/networks/sync_batchnorm/replicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/models/networks/sync_batchnorm/replicate.py -------------------------------------------------------------------------------- /sean_codes/models/networks/sync_batchnorm/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/models/networks/sync_batchnorm/unittest.py -------------------------------------------------------------------------------- /sean_codes/models/pix2pix_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/models/pix2pix_model.py -------------------------------------------------------------------------------- /sean_codes/options/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/options/__init__.py -------------------------------------------------------------------------------- /sean_codes/options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/options/base_options.py -------------------------------------------------------------------------------- /sean_codes/options/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/options/test_options.py -------------------------------------------------------------------------------- /sean_codes/options/train_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/options/train_options.py -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/mean/0/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/mean/0/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/mean/1/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/mean/1/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/mean/10/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/mean/10/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/mean/11/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/mean/11/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/mean/12/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/mean/12/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/mean/13/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/mean/13/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/mean/14/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/mean/14/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/mean/15/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/mean/15/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/mean/16/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/mean/16/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/mean/17/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/mean/17/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/mean/18/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/mean/18/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/mean/2/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/mean/2/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/mean/3/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/mean/3/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/mean/4/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/mean/4/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/mean/5/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/mean/5/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/mean/6/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/mean/6/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/mean/7/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/mean/7/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/mean/8/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/mean/8/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/mean/9/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/mean/9/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/median/0/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/median/0/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/median/1/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/median/1/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/median/10/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/median/10/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/median/11/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/median/11/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/median/12/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/median/12/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/median/13/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/median/13/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/median/14/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/median/14/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/median/15/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/median/15/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/median/16/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/median/16/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/median/17/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/median/17/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/median/18/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/median/18/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/median/2/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/median/2/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/median/3/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/median/3/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/median/4/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/median/4/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/median/5/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/median/5/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/median/6/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/median/6/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/median/7/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/median/7/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/median/8/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/median/8/ACE.npy -------------------------------------------------------------------------------- /sean_codes/styles_test/mean_style_code/median/9/ACE.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/styles_test/mean_style_code/median/9/ACE.npy -------------------------------------------------------------------------------- /sean_codes/trainers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/trainers/__init__.py -------------------------------------------------------------------------------- /sean_codes/trainers/pix2pix_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/sean_codes/trainers/pix2pix_trainer.py -------------------------------------------------------------------------------- /shape_branch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/shape_branch/__init__.py -------------------------------------------------------------------------------- /shape_branch/adaptor_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/shape_branch/adaptor_generation.py -------------------------------------------------------------------------------- /shape_branch/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/shape_branch/config.py -------------------------------------------------------------------------------- /shape_branch/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/shape_branch/dataset.py -------------------------------------------------------------------------------- /shape_branch/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/shape_branch/model.py -------------------------------------------------------------------------------- /shape_branch/script_adaptor_test_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/shape_branch/script_adaptor_test_pool.py -------------------------------------------------------------------------------- /shape_branch/script_adaptor_train_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/shape_branch/script_adaptor_train_pool.py -------------------------------------------------------------------------------- /shape_branch/script_find_direction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/shape_branch/script_find_direction.py -------------------------------------------------------------------------------- /shape_branch/shape_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/shape_branch/shape_util.py -------------------------------------------------------------------------------- /shape_branch/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/shape_branch/solver.py -------------------------------------------------------------------------------- /shape_branch/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/shape_branch/train.py -------------------------------------------------------------------------------- /shape_branch/validation_in_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/shape_branch/validation_in_train.py -------------------------------------------------------------------------------- /ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/ui/__init__.py -------------------------------------------------------------------------------- /ui/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/ui/backend.py -------------------------------------------------------------------------------- /ui/frontend_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/ui/frontend_demo.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/canvas_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/util/canvas_grid.py -------------------------------------------------------------------------------- /util/color_from_hsv_to_gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/util/color_from_hsv_to_gaussian.py -------------------------------------------------------------------------------- /util/common_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/util/common_options.py -------------------------------------------------------------------------------- /util/find_semantic_direction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/util/find_semantic_direction.py -------------------------------------------------------------------------------- /util/imutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/util/imutil.py -------------------------------------------------------------------------------- /util/mask_color_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/util/mask_color_util.py -------------------------------------------------------------------------------- /util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/util/util.py -------------------------------------------------------------------------------- /wrap_codes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/__init__.py -------------------------------------------------------------------------------- /wrap_codes/mask_adaptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/mask_adaptor.py -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/__init__.py -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/libigl_arap/my_arap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/libigl_arap/my_arap -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/libigl_arap/my_arap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/libigl_arap/my_arap.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/libigl_arap/my_arap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/libigl_arap/my_arap.sh -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/step_3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/step_3/__init__.py -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/step_3/detect_landmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/step_3/detect_landmark.py -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/step_3/generate_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/step_3/generate_node.py -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/step_3/run_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/step_3/run_node.sh -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/step_3/script_generate_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/step_3/script_generate_node.py -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/step_3/script_landmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/step_3/script_landmark.py -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/step_3/triangle_berkeley/A.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/step_3/triangle_berkeley/A.poly -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/step_3/triangle_berkeley/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/step_3/triangle_berkeley/README -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/step_3/triangle_berkeley/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/step_3/triangle_berkeley/makefile -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/step_3/triangle_berkeley/showme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/step_3/triangle_berkeley/showme -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/step_3/triangle_berkeley/showme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/step_3/triangle_berkeley/showme.c -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/step_3/triangle_berkeley/triangle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/step_3/triangle_berkeley/triangle -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/step_3/triangle_berkeley/triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/step_3/triangle_berkeley/triangle.c -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/step_3/triangle_berkeley/triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/step_3/triangle_berkeley/triangle.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/step_3/triangle_berkeley/tricall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/step_3/triangle_berkeley/tricall.c -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/step_4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/step_4/__init__.py -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/step_4/get_pixelValue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/step_4/get_pixelValue.py -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/step_4/help_warp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/step_4/help_warp.py -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/step_4/my_loadMesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/step_4/my_loadMesh.py -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/step_4/my_warp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/step_4/my_warp.py -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/step_4/run_warp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/step_4/run_warp.sh -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/step_4/script_warp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/step_4/script_warp.py -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/triangle_wrap_hair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/triangle_wrap_hair.py -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/README.md: -------------------------------------------------------------------------------- 1 | Include useful code here 2 | -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/.gitignore -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/.mailmap -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/CMakeLists.txt -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/LICENSE.GPL -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/LICENSE.MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/LICENSE.MPL2 -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/README.md -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/cmake/CXXFeatures.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/cmake/CXXFeatures.cmake -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/cmake/DownloadProject.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/cmake/DownloadProject.cmake -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/cmake/FindCORK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/cmake/FindCORK.cmake -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/cmake/FindMATLAB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/cmake/FindMATLAB.cmake -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/cmake/FindMOSEK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/cmake/FindMOSEK.cmake -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/cmake/HunterGate.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/cmake/HunterGate.cmake -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/cmake/LibiglFolders.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/cmake/LibiglFolders.cmake -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/cmake/LibiglWindows.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/cmake/LibiglWindows.cmake -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/cmake/libigl-cgal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/cmake/libigl-cgal.yml -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/cmake/libigl-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/cmake/libigl-config.cmake.in -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/cmake/libigl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/cmake/libigl.cmake -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/AABB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/AABB.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/AABB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/AABB.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/ARAPEnergyType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/ARAPEnergyType.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/AtA_cached.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/AtA_cached.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/AtA_cached.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/AtA_cached.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/C_STR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/C_STR.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/Camera.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/EPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/EPS.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/EPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/EPS.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/Hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/Hit.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/IO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/IO -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/LinSpaced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/LinSpaced.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/NormalType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/NormalType.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/ONE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/ONE.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/PI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/PI.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/REDRUM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/REDRUM.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/STR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/STR.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/SolverStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/SolverStatus.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/SortableRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/SortableRow.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/Timer.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/Viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/Viewport.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/ZERO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/ZERO.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/accumarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/accumarray.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/accumarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/accumarray.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/active_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/active_set.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/active_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/active_set.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/adjacency_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/adjacency_list.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/all.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/all.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/all.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/all_edges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/all_edges.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/all_edges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/all_edges.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/any.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/any.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/any_of.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/any_of.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/any_of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/any_of.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/arap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/arap.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/arap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/arap.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/arap_dof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/arap_dof.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/arap_dof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/arap_dof.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/arap_rhs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/arap_rhs.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/arap_rhs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/arap_rhs.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/barycenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/barycenter.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/barycenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/barycenter.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/basename.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/basename.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/basename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/basename.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bbw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bbw.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bbw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bbw.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bezier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bezier.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bezier.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bfs.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bfs.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bfs_orient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bfs_orient.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bfs_orient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bfs_orient.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bone_parents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bone_parents.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bone_parents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bone_parents.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/boundary_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/boundary_loop.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bounding_box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bounding_box.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bounding_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/bounding_box.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cat.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cat.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/ceil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/ceil.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/ceil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/ceil.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/centroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/centroid.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/centroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/centroid.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/circulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/circulation.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/circulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/circulation.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/circumradius.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/circumradius.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/circumradius.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/circumradius.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/collapse_edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/collapse_edge.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/colon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/colon.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/colon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/colon.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/colormap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/colormap.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/colormap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/colormap.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/columnize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/columnize.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/columnize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/columnize.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/combine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/combine.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/combine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/combine.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cotmatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cotmatrix.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cotmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cotmatrix.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/count.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/count.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/count.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cross.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cross.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cross.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cross.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cumprod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cumprod.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cumprod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cumprod.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cumsum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cumsum.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cumsum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cumsum.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cut_mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cut_mesh.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cut_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cut_mesh.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cut_to_disk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cut_to_disk.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cut_to_disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cut_to_disk.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cylinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cylinder.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cylinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/cylinder.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dated_copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dated_copy.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dated_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dated_copy.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/decimate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/decimate.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/decimate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/decimate.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/deprecated.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dfs.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dfs.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/diag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/diag.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/diag.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dijkstra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dijkstra.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dijkstra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dijkstra.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dirname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dirname.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dirname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dirname.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dot.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dot.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dot_row.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dot_row.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dot_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dot_row.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/doublearea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/doublearea.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/doublearea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/doublearea.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dqs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dqs.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/dqs.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/ears.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/ears.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/ears.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/ears.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/edge_flaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/edge_flaps.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/edge_flaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/edge_flaps.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/edge_lengths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/edge_lengths.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/edge_lengths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/edge_lengths.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/edge_topology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/edge_topology.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/edges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/edges.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/edges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/edges.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/edges_to_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/edges_to_path.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/eigs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/eigs.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/eigs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/eigs.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/exact_geodesic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/exact_geodesic.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/example_fun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/example_fun.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/example_fun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/example_fun.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/exploded_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/exploded_view.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/exterior_edges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/exterior_edges.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/face_areas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/face_areas.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/face_areas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/face_areas.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/faces_first.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/faces_first.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/faces_first.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/faces_first.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/file_exists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/file_exists.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/file_exists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/file_exists.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/find.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/find.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/find.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/find_zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/find_zero.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/find_zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/find_zero.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/fit_plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/fit_plane.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/fit_plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/fit_plane.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/fit_rotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/fit_rotations.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/flip_edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/flip_edge.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/flip_edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/flip_edge.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/flood_fill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/flood_fill.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/flood_fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/flood_fill.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/floor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/floor.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/floor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/floor.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/for_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/for_each.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/frustum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/frustum.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/frustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/frustum.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/get_seconds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/get_seconds.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/get_seconds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/get_seconds.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/grad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/grad.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/grad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/grad.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/grad_intrinsic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/grad_intrinsic.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/grid.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/grid.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/grid_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/grid_search.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/grid_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/grid_search.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/harmonic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/harmonic.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/harmonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/harmonic.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/harwell_boeing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/harwell_boeing.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/hausdorff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/hausdorff.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/hausdorff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/hausdorff.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/heat_geodesics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/heat_geodesics.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/hessian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/hessian.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/hessian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/hessian.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/hessian_energy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/hessian_energy.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/histc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/histc.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/histc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/histc.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/hsv_to_rgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/hsv_to_rgb.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/hsv_to_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/hsv_to_rgb.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/igl_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/igl_inline.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/in_element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/in_element.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/in_element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/in_element.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/inradius.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/inradius.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/inradius.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/inradius.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/intersect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/intersect.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/intersect.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/invert_diag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/invert_diag.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/invert_diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/invert_diag.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_delaunay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_delaunay.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_delaunay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_delaunay.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_dir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_dir.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_dir.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_file.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_file.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_planar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_planar.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_planar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_planar.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_readable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_readable.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_readable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_readable.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_sparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_sparse.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_sparse.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_stl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_stl.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_stl.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_symmetric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_symmetric.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_symmetric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_symmetric.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_writable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_writable.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_writable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/is_writable.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/isdiag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/isdiag.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/isdiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/isdiag.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/ismember.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/ismember.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/ismember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/ismember.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/isolines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/isolines.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/isolines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/isolines.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/isolines_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/isolines_map.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/isolines_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/isolines_map.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/jet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/jet.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/jet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/jet.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/knn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/knn.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/knn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/knn.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/launch_medit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/launch_medit.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/launch_medit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/launch_medit.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/lbs_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/lbs_matrix.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/lbs_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/lbs_matrix.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/limit_faces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/limit_faces.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/limit_faces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/limit_faces.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/line_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/line_search.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/line_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/line_search.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/linprog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/linprog.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/linprog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/linprog.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/list_to_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/list_to_matrix.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/local_basis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/local_basis.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/local_basis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/local_basis.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/look_at.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/look_at.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/look_at.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/look_at.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/loop.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/loop.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/lscm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/lscm.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/lscm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/lscm.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/marching_tets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/marching_tets.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/massmatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/massmatrix.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/massmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/massmatrix.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mat_max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mat_max.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mat_max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mat_max.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mat_min.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mat_min.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mat_min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mat_min.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mat_to_quat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mat_to_quat.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mat_to_quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mat_to_quat.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/matlab_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/matlab_format.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/matrix_to_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/matrix_to_list.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/max.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/max.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/max_size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/max_size.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/max_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/max_size.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/median.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/median.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/median.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/median.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/min.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/min.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/min.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/min_quad_dense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/min_quad_dense.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/min_size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/min_size.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/min_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/min_size.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mod.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mod.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mode.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mode.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mosek/bbw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mosek/bbw.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mosek/bbw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mosek/bbw.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mvc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mvc.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/mvc.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/nchoosek.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/nchoosek.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/nchoosek.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/nchoosek.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/next_filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/next_filename.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/normalize_quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/normalize_quat.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/null.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/null.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/octree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/octree.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/octree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/octree.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/on_boundary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/on_boundary.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/on_boundary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/on_boundary.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/opengl/MeshGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/opengl/MeshGL.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/opengl/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/opengl/gl.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/orient_outward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/orient_outward.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/orth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/orth.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/orth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/orth.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/ortho.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/ortho.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/ortho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/ortho.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/outer_element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/outer_element.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/parallel_for.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/parallel_for.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/partition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/partition.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/partition.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/parula.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/parula.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/parula.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/parula.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/path_to_edges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/path_to_edges.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/pathinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/pathinfo.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/pathinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/pathinfo.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/pinv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/pinv.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/pinv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/pinv.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/png/readPNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/png/readPNG.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/png/readPNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/png/readPNG.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/png/writePNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/png/writePNG.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/png/writePNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/png/writePNG.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/point_in_poly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/point_in_poly.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/polar_dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/polar_dec.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/polar_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/polar_dec.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/polar_svd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/polar_svd.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/polar_svd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/polar_svd.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/polar_svd3x3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/polar_svd3x3.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/polar_svd3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/polar_svd3x3.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/print_ijv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/print_ijv.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/print_ijv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/print_ijv.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/print_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/print_vector.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/print_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/print_vector.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/procrustes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/procrustes.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/procrustes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/procrustes.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/project.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/project.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/project.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/pso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/pso.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/pso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/pso.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/qslim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/qslim.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/qslim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/qslim.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/quad_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/quad_grid.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/quad_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/quad_grid.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/quad_planarity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/quad_planarity.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/quat_conjugate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/quat_conjugate.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/quat_mult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/quat_mult.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/quat_mult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/quat_mult.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/quat_to_mat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/quat_to_mat.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/quat_to_mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/quat_to_mat.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/random_dir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/random_dir.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/random_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/random_dir.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/random_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/random_search.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/randperm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/randperm.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/randperm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/randperm.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/raytri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/raytri.c -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readBF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readBF.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readBF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readBF.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readCSV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readCSV.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readCSV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readCSV.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readDMAT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readDMAT.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readDMAT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readDMAT.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readMESH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readMESH.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readMESH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readMESH.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readMSH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readMSH.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readMSH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readMSH.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readNODE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readNODE.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readNODE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readNODE.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readOBJ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readOBJ.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readOBJ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readOBJ.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readOFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readOFF.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readOFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readOFF.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readPLY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readPLY.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readPLY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readPLY.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readSTL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readSTL.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readSTL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readSTL.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readTGF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readTGF.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readTGF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readTGF.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readWRL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readWRL.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readWRL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/readWRL.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/redux.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/reorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/reorder.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/reorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/reorder.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/repdiag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/repdiag.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/repdiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/repdiag.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/repmat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/repmat.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/repmat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/repmat.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/rgb_to_hsv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/rgb_to_hsv.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/rgb_to_hsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/rgb_to_hsv.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/rotate_by_quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/rotate_by_quat.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/rotate_vectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/rotate_vectors.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/round.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/round.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/round.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/rows_to_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/rows_to_matrix.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sample_edges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sample_edges.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sample_edges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sample_edges.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/scaf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/scaf.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/scaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/scaf.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/seam_edges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/seam_edges.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/seam_edges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/seam_edges.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/serialize.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/setdiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/setdiff.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/setdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/setdiff.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/setunion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/setunion.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/setunion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/setunion.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/setxor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/setxor.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/setxor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/setxor.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/shapeup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/shapeup.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/shapeup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/shapeup.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sharp_edges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sharp_edges.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/slice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/slice.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/slice.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/slice_into.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/slice_into.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/slice_mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/slice_mask.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/slim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/slim.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/slim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/slim.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/snap_points.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/snap_points.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/solid_angle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/solid_angle.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sort.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sort.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sort_angles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sort_angles.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sortrows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sortrows.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sortrows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sortrows.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sparse.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sparse.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/speye.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/speye.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/speye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/speye.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sum.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/sum.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/svd3x3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/svd3x3.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/svd3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/svd3x3.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/svd3x3_avx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/svd3x3_avx.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/svd3x3_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/svd3x3_sse.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/tinyply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/tinyply.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/tinyply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/tinyply.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/trackball.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/trackball.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/trackball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/trackball.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/unique.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/unique.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/unique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/unique.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/unique_rows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/unique_rows.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/unproject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/unproject.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/unproject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/unproject.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/upsample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/upsample.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/upsample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/upsample.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/verbose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/verbose.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/volume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/volume.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/volume.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/voxel_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/voxel_grid.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeBF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeBF.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeBF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeBF.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeDMAT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeDMAT.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeDMAT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeDMAT.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeMESH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeMESH.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeMESH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeMESH.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeOBJ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeOBJ.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeOBJ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeOBJ.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeOFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeOFF.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeOFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeOFF.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writePLY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writePLY.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writePLY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writePLY.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeSTL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeSTL.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeSTL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeSTL.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeTGF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeTGF.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeTGF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeTGF.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeWRL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeWRL.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeWRL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/include/igl/writeWRL.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/tests/CMakeLists.txt -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/tests/include/igl/bbw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/tests/include/igl/bbw.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/tests/include/igl/cat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/tests/include/igl/cat.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/tests/main.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/tests/test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/tests/test_common.h -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/tutorial/505_MIQ/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/tutorial/505_MIQ/main.cpp -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/libigl/tutorial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/libigl/tutorial/CMakeLists.txt -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/useful_code/triangle.shar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/useful_code/triangle.shar -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/wrap_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/wrap_utils/__init__.py -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/wrap_utils/get_pixelValue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/wrap_utils/get_pixelValue.py -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/wrap_utils/load_texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/wrap_utils/load_texture.py -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/wrap_utils/my_OpenEXR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/wrap_utils/my_OpenEXR.py -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/wrap_utils/my_objLoader_meshlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/wrap_utils/my_objLoader_meshlab.py -------------------------------------------------------------------------------- /wrap_codes/wrap_triangle/wrap_utils/utils_shtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuyangGuo/CtrlHair/HEAD/wrap_codes/wrap_triangle/wrap_utils/utils_shtools.py --------------------------------------------------------------------------------