├── .github ├── dependabot.yml └── workflows │ ├── auto-refresh-dependabot.yml │ ├── matrix.json │ └── tests.yml ├── .gitignore ├── .integration └── conda-env-test.yml ├── CMakeLists.txt ├── LICENSE.COMMERCIAL ├── LICENSE.GPL ├── README.md ├── SWIG_CGAL ├── AABB_tree │ ├── AABB_tree.h │ ├── CGAL_AABB_tree.i │ ├── CMakeLists.txt │ ├── Object.cpp │ ├── Object.h │ ├── all_includes.h │ ├── decl.h │ ├── include │ │ └── CGAL │ │ │ └── AABB_integer_primitive.h │ └── typedefs.h ├── Advancing_front_surface_reconstruction │ ├── CGAL_Advancing_front_surface_reconstruction.i │ ├── CMakeLists.txt │ └── impl.h ├── Alpha_shape_2 │ ├── Alpha_shape_2.h │ ├── CGAL_Alpha_shape_2.i │ ├── CMakeLists.txt │ ├── Object.cpp │ ├── Object.h │ ├── all_includes.h │ ├── config.h │ ├── decl.h │ ├── declare_alpha_shape_2.i │ ├── java_extensions.i │ └── typedefs.h ├── Alpha_wrap_3 │ ├── CGAL_Alpha_wrap_3.i │ ├── CMakeLists.txt │ └── all_includes.h ├── Box_intersection_d │ ├── Box_with_id.h │ ├── CGAL_Box_intersection_d.i │ ├── CMakeLists.txt │ ├── Callbacks.h │ ├── enum.h │ └── macros.i ├── Classification │ ├── CGAL_Classification.i │ ├── CMakeLists.txt │ ├── ETHZ_Random_forest_classifier.h │ ├── Evaluation.h │ ├── Feature_set.h │ ├── Label_set.h │ ├── Point_set_feature_generator.h │ ├── all_includes.h │ ├── classify.h │ └── typedefs.h ├── Common │ ├── Input_iterator_wrapper.h │ ├── Iterator.h │ ├── Macros.h │ ├── Object.i │ ├── Object_impl.h │ ├── Optional.h │ ├── Output_iterator_wrapper.h │ ├── Reference_wrapper.h │ ├── Variant.h │ ├── Wrapper_iterator_helper.h │ ├── decl.h │ ├── global_function_macros.h │ └── triple.h ├── Convex_hull_2 │ ├── CGAL_Convex_hull_2.i │ ├── CMakeLists.txt │ ├── all_includes.h │ ├── convex_hull_2.h │ └── typedefs.h ├── Convex_hull_3 │ ├── CGAL_Convex_hull_3.i │ └── CMakeLists.txt ├── HalfedgeDS │ ├── CGAL_HalfedgeDS.i │ ├── CMakeLists.txt │ ├── General_modifier.h │ ├── HalfedgeDS.h │ ├── HalfedgeDS_decorator.h │ ├── HalfedgeDS_handles.h │ ├── all_includes.h │ └── typedefs.h ├── Interpolation │ ├── CGAL_Interpolation.i │ ├── CMakeLists.txt │ ├── Data_access.h │ ├── all_includes.h │ ├── declare_interpolation_functions.i │ ├── declare_natural_neighbor_coordinates_2.i │ ├── declare_regular_neighbor_coordinates_2.i │ ├── declare_surface_neighbor_coordinates_3.i │ ├── declare_surface_neighbors_3.i │ └── typedefs.h ├── Java │ ├── CGAL_Java.i │ ├── CMakeLists.txt │ ├── Input_iterator_wrapper.h │ ├── JavaData.cpp │ ├── JavaData.h │ ├── Java_caller_code.h │ ├── Macro.i │ ├── Output_iterator_wrapper.h │ ├── SWIGCGALException.java │ ├── decl.h │ ├── exception.h │ ├── global_functions.cpp │ ├── global_functions.h │ └── typemaps.i ├── Kernel │ ├── Bbox_2.cpp │ ├── Bbox_2.h │ ├── Bbox_2_decl.h │ ├── Bbox_2_impl.h │ ├── Bbox_3.cpp │ ├── Bbox_3.h │ ├── Bbox_3_decl.h │ ├── Bbox_3_impl.h │ ├── CGAL_Kernel.i │ ├── CMakeLists.txt │ ├── Direction_2.cpp │ ├── Direction_2.h │ ├── Direction_2_decl.h │ ├── Direction_2_impl.h │ ├── Direction_3.cpp │ ├── Direction_3.h │ ├── Direction_3_decl.h │ ├── Direction_3_impl.h │ ├── Iso_cuboid_3.cpp │ ├── Iso_cuboid_3.h │ ├── Iso_rectangle_2.cpp │ ├── Iso_rectangle_2.h │ ├── Line_2.cpp │ ├── Line_2.h │ ├── Line_2_decl.h │ ├── Line_2_impl.h │ ├── Line_3.cpp │ ├── Line_3.h │ ├── Line_3_decl.h │ ├── Line_3_impl.h │ ├── Object.cpp │ ├── Object.h │ ├── Origin.cpp │ ├── Origin.h │ ├── Plane_3.cpp │ ├── Plane_3.h │ ├── Plane_3_decl.h │ ├── Plane_3_impl.h │ ├── Point_2.cpp │ ├── Point_2.h │ ├── Point_2_decl.h │ ├── Point_2_impl.h │ ├── Point_3.cpp │ ├── Point_3.h │ ├── Point_3_decl.h │ ├── Point_3_impl.h │ ├── Polygon_2.cpp │ ├── Polygon_2.h │ ├── Ray_2.cpp │ ├── Ray_2.h │ ├── Ray_2_decl.h │ ├── Ray_2_impl.h │ ├── Ray_3.cpp │ ├── Ray_3.h │ ├── Ray_3_decl.h │ ├── Ray_3_impl.h │ ├── Reference_wrappers.i │ ├── Segment_2.cpp │ ├── Segment_2.h │ ├── Segment_2_decl.h │ ├── Segment_2_impl.h │ ├── Segment_3.cpp │ ├── Segment_3.h │ ├── Segment_3_decl.h │ ├── Segment_3_impl.h │ ├── Sphere_3.cpp │ ├── Sphere_3.h │ ├── Tetrahedron_3.cpp │ ├── Tetrahedron_3.h │ ├── Triangle_2.cpp │ ├── Triangle_2.h │ ├── Triangle_3.cpp │ ├── Triangle_3.h │ ├── Vector_2.cpp │ ├── Vector_2.h │ ├── Vector_2_decl.h │ ├── Vector_2_impl.h │ ├── Vector_3.cpp │ ├── Vector_3.h │ ├── Vector_3_decl.h │ ├── Vector_3_impl.h │ ├── Weighted_point_2.cpp │ ├── Weighted_point_2.h │ ├── Weighted_point_3.cpp │ ├── Weighted_point_3.h │ ├── all_includes.h │ ├── decl.h │ ├── enum.h │ ├── global_function_signatures.h │ ├── global_functions.cpp │ ├── global_functions.h │ ├── include_conflicts_2.h │ ├── include_conflicts_3.h │ └── typedefs.h ├── Mesh_2 │ ├── CGAL_Mesh_2.i │ ├── CMakeLists.txt │ ├── Criteria.h │ ├── Delaunay_mesher_2.h │ ├── Quality.h │ ├── Triangulation_conformer_2.h │ ├── all_includes.h │ ├── java_extensions.i │ ├── mesh_2_macros.i │ ├── parameters.h │ └── typedefs.h ├── Mesh_3 │ ├── C3T3.h │ ├── CGAL_Mesh_3.i │ ├── CMakeLists.txt │ ├── Mesh_criteria.h │ ├── Mesh_domains.h │ ├── Object.cpp │ ├── Object.h │ ├── all_includes.h │ ├── decl.h │ ├── declare_global_functions.i │ ├── java_extensions.i │ ├── parameters.h │ └── typedefs.h ├── Point_set_3 │ ├── CGAL_Point_set_3.i │ ├── CMakeLists.txt │ ├── Point_set_3.h │ ├── Point_set_3_Property_map.h │ ├── all_includes.h │ └── typedefs.h ├── Point_set_processing_3 │ ├── CGAL_Point_set_processing_3.i │ ├── CMakeLists.txt │ └── functions.h ├── Polygon_mesh_processing │ ├── CGAL_Polygon_mesh_processing.i │ ├── CMakeLists.txt │ ├── Polygon_mesh_slicer.h │ ├── Side_of_triangle_mesh.h │ ├── all_includes.h │ └── utils.h ├── Polyhedron_3 │ ├── CGAL_Polyhedron_3.i │ ├── CMakeLists.txt │ ├── Modifier_base.h │ ├── Polyhedron_3.h │ ├── Polyhedron_items_with_id_and_info_3.h │ ├── all_includes.h │ ├── general_modifier.h │ ├── java_extensions.i │ ├── modifier_example.h │ ├── polyhedron_3_handles.h │ ├── python_extensions.i │ └── typedefs.h ├── Polyline_simplification_2 │ ├── CGAL_Polyline_simplification_2.i │ ├── CMakeLists.txt │ ├── Polyline_simplification_2.h │ ├── macros.i │ └── typedefs.h ├── Python │ ├── Input_iterator_wrapper.h │ ├── Output_iterator_wrapper.h │ ├── exceptions.h │ └── typemaps.i ├── Shape_detection │ ├── CGAL_Shape_detection.i │ ├── CMakeLists.txt │ └── impl.h ├── Spatial_searching │ ├── CGAL_Spatial_searching.i │ ├── CMakeLists.txt │ ├── First_of_pair.h │ ├── Fuzzy_objects.h │ ├── Kd_tree.h │ ├── NN_search.h │ ├── all_includes.h │ ├── declare_spatial_searching_objects.i │ ├── java_extensions.i │ └── typedefs.h ├── Surface_mesher │ ├── C2T3.h │ ├── CGAL_Surface_mesher.i │ ├── CMakeLists.txt │ ├── Object.cpp │ ├── Object.h │ ├── Surface_mesh_details.h │ ├── all_includes.h │ ├── decl.h │ └── typedefs.h ├── Triangulation_2 │ ├── CGAL_Triangulation_2.i │ ├── CMakeLists.txt │ ├── Constrained_Delaunay_triangulation_2.h │ ├── Constrained_triangulation_2.h │ ├── Constrained_triangulation_plus_2.h │ ├── Delaunay_triangulation_2.h │ ├── Object.cpp │ ├── Object.h │ ├── Reference_wrappers.i │ ├── Regular_triangulation_2.h │ ├── Triangulation_2.h │ ├── all_includes.h │ ├── config.h │ ├── decl.h │ ├── declare_Delaunay_triangulation_2.i │ ├── declare_constrained_Delaunay_triangulation_2.i │ ├── declare_constrained_Delaunay_triangulation_plus_2.i │ ├── declare_constrained_triangulation_2.i │ ├── declare_regular_triangulation_2.i │ ├── declare_triangulation_2.i │ ├── java_extensions.i │ ├── triangulation_handles.h │ └── typedefs.h ├── Triangulation_3 │ ├── CGAL_Triangulation_3.i │ ├── CMakeLists.txt │ ├── Delaunay_triangulation_3.h │ ├── Object.cpp │ ├── Object.h │ ├── Reference_wrappers.i │ ├── Regular_triangulation_3.h │ ├── Triangulation_3.h │ ├── all_includes.h │ ├── decl.h │ ├── declare_Delaunay_triangulation_3.i │ ├── declare_regular_triangulation_3.i │ ├── declare_triangulation_3.i │ ├── triangulation_handles.h │ └── typedefs.h ├── Voronoi_diagram_2 │ ├── CGAL_Voronoi_diagram_2.i │ ├── CMakeLists.txt │ ├── Locate_result.h │ ├── Voronoi_diagram_2.h │ ├── Voronoi_diagram_handles_2.h │ ├── all_includes.h │ ├── declare_voronoi_diagram_2.i │ ├── typedefs.h │ └── utility.h ├── common.i ├── files │ └── __init__.py └── typemaps.i ├── cmake └── Modules │ └── SWIG_CGAL_Macros.cmake ├── examples ├── data │ ├── b9_training.ply │ ├── cube.pwn │ ├── elephant.off │ ├── oni.xyz │ └── sphere.off ├── java │ ├── AABB_polyhedron_facet_intersection_example.java │ ├── AABB_triangle_3_example.java │ ├── Advancing_front_reconstruction_example.java │ ├── Classification_example.java │ ├── Mesh2Criteria.java │ ├── Mesh3CellCriteria.java │ ├── Mesh3FacetCriteria.java │ ├── Point_set_3_example.java │ ├── Point_set_processing_3_example.java │ ├── Polyhedron_incremental_builder.java │ ├── Shape_detection_example.java │ ├── conforming.java │ ├── hds_incremental_builder.java │ ├── hds_prog_halfedge_iterator.java │ ├── intersect_triangle_soup_with_polyline_aabb.java │ ├── mesh_global.java │ ├── mesh_optimisation.java │ ├── mesh_polyhedral_domain.java │ ├── polyhedron_prog_cube.java │ ├── regular_3.java │ ├── simple_triangulation_3.java │ ├── test.sh │ ├── test_aabb.java │ ├── test_as2.java │ ├── test_aw3.java │ ├── test_box_intersection_d.java │ ├── test_convex_hull_2.java │ ├── test_convex_hull_3.java │ ├── test_dt3.java │ ├── test_interpolation.java │ ├── test_kernel.java │ ├── test_mesh_2.java │ ├── test_mesh_3.java │ ├── test_operators.java │ ├── test_pmp.java │ ├── test_polyhedron.java │ ├── test_polyline_simplification_2.java │ ├── test_rt3.java │ ├── test_sp.java │ ├── test_surface_mesher.java │ ├── test_t2.java │ ├── triangulation_prog1.java │ └── vd_2_point_location.java └── python │ ├── AABB_polyhedron_facet_intersection_example.py │ ├── AABB_triangle_3_example.py │ ├── Advancing_front_reconstruction_example.py │ ├── Classification_example.py │ ├── Point_set_3_example.py │ ├── Point_set_processing_3_example.py │ ├── Polyhedron_incremental_builder.py │ ├── Shape_detection_example.py │ ├── conforming.py │ ├── hds_incremental_builder.py │ ├── hds_prog_halfedge_iterator.py │ ├── mesh_global.py │ ├── mesh_optimisation.py │ ├── mesh_polyhedral_domain.py │ ├── polygonal_triangulation.py │ ├── polyhedron_modifier_example.py │ ├── polyhedron_prog_cube.py │ ├── regular_3.py │ ├── simple_triangulation_3.py │ ├── test.py │ ├── test.sh │ ├── test_aabb.py │ ├── test_aabb2.py │ ├── test_as2.py │ ├── test_aw3.py │ ├── test_box_intersection_d.py │ ├── test_convex_hull_2.py │ ├── test_convex_hull_3.py │ ├── test_operators.py │ ├── test_pmp.py │ ├── test_polyline_simplification_2.py │ ├── test_rt2.py │ ├── test_sp.py │ ├── test_t2.py │ ├── triangulation_prog1.py │ └── vd_2_point_location.py └── setup.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-refresh-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/.github/workflows/auto-refresh-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/matrix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/.github/workflows/matrix.json -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/.gitignore -------------------------------------------------------------------------------- /.integration/conda-env-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/.integration/conda-env-test.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.COMMERCIAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/LICENSE.COMMERCIAL -------------------------------------------------------------------------------- /LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/LICENSE.GPL -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/README.md -------------------------------------------------------------------------------- /SWIG_CGAL/AABB_tree/AABB_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/AABB_tree/AABB_tree.h -------------------------------------------------------------------------------- /SWIG_CGAL/AABB_tree/CGAL_AABB_tree.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/AABB_tree/CGAL_AABB_tree.i -------------------------------------------------------------------------------- /SWIG_CGAL/AABB_tree/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/AABB_tree/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/AABB_tree/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/AABB_tree/Object.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/AABB_tree/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/AABB_tree/Object.h -------------------------------------------------------------------------------- /SWIG_CGAL/AABB_tree/all_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/AABB_tree/all_includes.h -------------------------------------------------------------------------------- /SWIG_CGAL/AABB_tree/decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/AABB_tree/decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/AABB_tree/include/CGAL/AABB_integer_primitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/AABB_tree/include/CGAL/AABB_integer_primitive.h -------------------------------------------------------------------------------- /SWIG_CGAL/AABB_tree/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/AABB_tree/typedefs.h -------------------------------------------------------------------------------- /SWIG_CGAL/Advancing_front_surface_reconstruction/CGAL_Advancing_front_surface_reconstruction.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Advancing_front_surface_reconstruction/CGAL_Advancing_front_surface_reconstruction.i -------------------------------------------------------------------------------- /SWIG_CGAL/Advancing_front_surface_reconstruction/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Advancing_front_surface_reconstruction/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/Advancing_front_surface_reconstruction/impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Advancing_front_surface_reconstruction/impl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Alpha_shape_2/Alpha_shape_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Alpha_shape_2/Alpha_shape_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Alpha_shape_2/CGAL_Alpha_shape_2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Alpha_shape_2/CGAL_Alpha_shape_2.i -------------------------------------------------------------------------------- /SWIG_CGAL/Alpha_shape_2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Alpha_shape_2/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/Alpha_shape_2/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Alpha_shape_2/Object.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Alpha_shape_2/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Alpha_shape_2/Object.h -------------------------------------------------------------------------------- /SWIG_CGAL/Alpha_shape_2/all_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Alpha_shape_2/all_includes.h -------------------------------------------------------------------------------- /SWIG_CGAL/Alpha_shape_2/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Alpha_shape_2/config.h -------------------------------------------------------------------------------- /SWIG_CGAL/Alpha_shape_2/decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Alpha_shape_2/decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Alpha_shape_2/declare_alpha_shape_2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Alpha_shape_2/declare_alpha_shape_2.i -------------------------------------------------------------------------------- /SWIG_CGAL/Alpha_shape_2/java_extensions.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Alpha_shape_2/java_extensions.i -------------------------------------------------------------------------------- /SWIG_CGAL/Alpha_shape_2/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Alpha_shape_2/typedefs.h -------------------------------------------------------------------------------- /SWIG_CGAL/Alpha_wrap_3/CGAL_Alpha_wrap_3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Alpha_wrap_3/CGAL_Alpha_wrap_3.i -------------------------------------------------------------------------------- /SWIG_CGAL/Alpha_wrap_3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Alpha_wrap_3/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/Alpha_wrap_3/all_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Alpha_wrap_3/all_includes.h -------------------------------------------------------------------------------- /SWIG_CGAL/Box_intersection_d/Box_with_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Box_intersection_d/Box_with_id.h -------------------------------------------------------------------------------- /SWIG_CGAL/Box_intersection_d/CGAL_Box_intersection_d.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Box_intersection_d/CGAL_Box_intersection_d.i -------------------------------------------------------------------------------- /SWIG_CGAL/Box_intersection_d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Box_intersection_d/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/Box_intersection_d/Callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Box_intersection_d/Callbacks.h -------------------------------------------------------------------------------- /SWIG_CGAL/Box_intersection_d/enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Box_intersection_d/enum.h -------------------------------------------------------------------------------- /SWIG_CGAL/Box_intersection_d/macros.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Box_intersection_d/macros.i -------------------------------------------------------------------------------- /SWIG_CGAL/Classification/CGAL_Classification.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Classification/CGAL_Classification.i -------------------------------------------------------------------------------- /SWIG_CGAL/Classification/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Classification/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/Classification/ETHZ_Random_forest_classifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Classification/ETHZ_Random_forest_classifier.h -------------------------------------------------------------------------------- /SWIG_CGAL/Classification/Evaluation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Classification/Evaluation.h -------------------------------------------------------------------------------- /SWIG_CGAL/Classification/Feature_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Classification/Feature_set.h -------------------------------------------------------------------------------- /SWIG_CGAL/Classification/Label_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Classification/Label_set.h -------------------------------------------------------------------------------- /SWIG_CGAL/Classification/Point_set_feature_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Classification/Point_set_feature_generator.h -------------------------------------------------------------------------------- /SWIG_CGAL/Classification/all_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Classification/all_includes.h -------------------------------------------------------------------------------- /SWIG_CGAL/Classification/classify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Classification/classify.h -------------------------------------------------------------------------------- /SWIG_CGAL/Classification/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Classification/typedefs.h -------------------------------------------------------------------------------- /SWIG_CGAL/Common/Input_iterator_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Common/Input_iterator_wrapper.h -------------------------------------------------------------------------------- /SWIG_CGAL/Common/Iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Common/Iterator.h -------------------------------------------------------------------------------- /SWIG_CGAL/Common/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Common/Macros.h -------------------------------------------------------------------------------- /SWIG_CGAL/Common/Object.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Common/Object.i -------------------------------------------------------------------------------- /SWIG_CGAL/Common/Object_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Common/Object_impl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Common/Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Common/Optional.h -------------------------------------------------------------------------------- /SWIG_CGAL/Common/Output_iterator_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Common/Output_iterator_wrapper.h -------------------------------------------------------------------------------- /SWIG_CGAL/Common/Reference_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Common/Reference_wrapper.h -------------------------------------------------------------------------------- /SWIG_CGAL/Common/Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Common/Variant.h -------------------------------------------------------------------------------- /SWIG_CGAL/Common/Wrapper_iterator_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Common/Wrapper_iterator_helper.h -------------------------------------------------------------------------------- /SWIG_CGAL/Common/decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Common/decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Common/global_function_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Common/global_function_macros.h -------------------------------------------------------------------------------- /SWIG_CGAL/Common/triple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Common/triple.h -------------------------------------------------------------------------------- /SWIG_CGAL/Convex_hull_2/CGAL_Convex_hull_2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Convex_hull_2/CGAL_Convex_hull_2.i -------------------------------------------------------------------------------- /SWIG_CGAL/Convex_hull_2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Convex_hull_2/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/Convex_hull_2/all_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Convex_hull_2/all_includes.h -------------------------------------------------------------------------------- /SWIG_CGAL/Convex_hull_2/convex_hull_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Convex_hull_2/convex_hull_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Convex_hull_2/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Convex_hull_2/typedefs.h -------------------------------------------------------------------------------- /SWIG_CGAL/Convex_hull_3/CGAL_Convex_hull_3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Convex_hull_3/CGAL_Convex_hull_3.i -------------------------------------------------------------------------------- /SWIG_CGAL/Convex_hull_3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Convex_hull_3/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/HalfedgeDS/CGAL_HalfedgeDS.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/HalfedgeDS/CGAL_HalfedgeDS.i -------------------------------------------------------------------------------- /SWIG_CGAL/HalfedgeDS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/HalfedgeDS/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/HalfedgeDS/General_modifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/HalfedgeDS/General_modifier.h -------------------------------------------------------------------------------- /SWIG_CGAL/HalfedgeDS/HalfedgeDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/HalfedgeDS/HalfedgeDS.h -------------------------------------------------------------------------------- /SWIG_CGAL/HalfedgeDS/HalfedgeDS_decorator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/HalfedgeDS/HalfedgeDS_decorator.h -------------------------------------------------------------------------------- /SWIG_CGAL/HalfedgeDS/HalfedgeDS_handles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/HalfedgeDS/HalfedgeDS_handles.h -------------------------------------------------------------------------------- /SWIG_CGAL/HalfedgeDS/all_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/HalfedgeDS/all_includes.h -------------------------------------------------------------------------------- /SWIG_CGAL/HalfedgeDS/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/HalfedgeDS/typedefs.h -------------------------------------------------------------------------------- /SWIG_CGAL/Interpolation/CGAL_Interpolation.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Interpolation/CGAL_Interpolation.i -------------------------------------------------------------------------------- /SWIG_CGAL/Interpolation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Interpolation/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/Interpolation/Data_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Interpolation/Data_access.h -------------------------------------------------------------------------------- /SWIG_CGAL/Interpolation/all_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Interpolation/all_includes.h -------------------------------------------------------------------------------- /SWIG_CGAL/Interpolation/declare_interpolation_functions.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Interpolation/declare_interpolation_functions.i -------------------------------------------------------------------------------- /SWIG_CGAL/Interpolation/declare_natural_neighbor_coordinates_2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Interpolation/declare_natural_neighbor_coordinates_2.i -------------------------------------------------------------------------------- /SWIG_CGAL/Interpolation/declare_regular_neighbor_coordinates_2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Interpolation/declare_regular_neighbor_coordinates_2.i -------------------------------------------------------------------------------- /SWIG_CGAL/Interpolation/declare_surface_neighbor_coordinates_3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Interpolation/declare_surface_neighbor_coordinates_3.i -------------------------------------------------------------------------------- /SWIG_CGAL/Interpolation/declare_surface_neighbors_3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Interpolation/declare_surface_neighbors_3.i -------------------------------------------------------------------------------- /SWIG_CGAL/Interpolation/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Interpolation/typedefs.h -------------------------------------------------------------------------------- /SWIG_CGAL/Java/CGAL_Java.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Java/CGAL_Java.i -------------------------------------------------------------------------------- /SWIG_CGAL/Java/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Java/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/Java/Input_iterator_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Java/Input_iterator_wrapper.h -------------------------------------------------------------------------------- /SWIG_CGAL/Java/JavaData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Java/JavaData.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Java/JavaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Java/JavaData.h -------------------------------------------------------------------------------- /SWIG_CGAL/Java/Java_caller_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Java/Java_caller_code.h -------------------------------------------------------------------------------- /SWIG_CGAL/Java/Macro.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Java/Macro.i -------------------------------------------------------------------------------- /SWIG_CGAL/Java/Output_iterator_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Java/Output_iterator_wrapper.h -------------------------------------------------------------------------------- /SWIG_CGAL/Java/SWIGCGALException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Java/SWIGCGALException.java -------------------------------------------------------------------------------- /SWIG_CGAL/Java/decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Java/decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Java/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Java/exception.h -------------------------------------------------------------------------------- /SWIG_CGAL/Java/global_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Java/global_functions.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Java/global_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Java/global_functions.h -------------------------------------------------------------------------------- /SWIG_CGAL/Java/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Java/typemaps.i -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Bbox_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Bbox_2.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Bbox_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Bbox_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Bbox_2_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Bbox_2_decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Bbox_2_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Bbox_2_impl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Bbox_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Bbox_3.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Bbox_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Bbox_3.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Bbox_3_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Bbox_3_decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Bbox_3_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Bbox_3_impl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/CGAL_Kernel.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/CGAL_Kernel.i -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Direction_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Direction_2.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Direction_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Direction_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Direction_2_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Direction_2_decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Direction_2_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Direction_2_impl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Direction_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Direction_3.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Direction_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Direction_3.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Direction_3_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Direction_3_decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Direction_3_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Direction_3_impl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Iso_cuboid_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Iso_cuboid_3.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Iso_cuboid_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Iso_cuboid_3.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Iso_rectangle_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Iso_rectangle_2.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Iso_rectangle_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Iso_rectangle_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Line_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Line_2.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Line_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Line_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Line_2_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Line_2_decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Line_2_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Line_2_impl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Line_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Line_3.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Line_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Line_3.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Line_3_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Line_3_decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Line_3_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Line_3_impl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Object.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Object.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Origin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Origin.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Origin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Origin.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Plane_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Plane_3.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Plane_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Plane_3.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Plane_3_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Plane_3_decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Plane_3_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Plane_3_impl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Point_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Point_2.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Point_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Point_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Point_2_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Point_2_decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Point_2_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Point_2_impl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Point_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Point_3.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Point_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Point_3.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Point_3_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Point_3_decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Point_3_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Point_3_impl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Polygon_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Polygon_2.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Polygon_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Polygon_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Ray_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Ray_2.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Ray_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Ray_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Ray_2_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Ray_2_decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Ray_2_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Ray_2_impl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Ray_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Ray_3.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Ray_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Ray_3.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Ray_3_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Ray_3_decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Ray_3_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Ray_3_impl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Reference_wrappers.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Reference_wrappers.i -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Segment_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Segment_2.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Segment_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Segment_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Segment_2_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Segment_2_decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Segment_2_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Segment_2_impl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Segment_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Segment_3.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Segment_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Segment_3.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Segment_3_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Segment_3_decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Segment_3_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Segment_3_impl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Sphere_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Sphere_3.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Sphere_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Sphere_3.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Tetrahedron_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Tetrahedron_3.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Tetrahedron_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Tetrahedron_3.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Triangle_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Triangle_2.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Triangle_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Triangle_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Triangle_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Triangle_3.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Triangle_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Triangle_3.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Vector_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Vector_2.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Vector_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Vector_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Vector_2_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Vector_2_decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Vector_2_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Vector_2_impl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Vector_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Vector_3.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Vector_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Vector_3.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Vector_3_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Vector_3_decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Vector_3_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Vector_3_impl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Weighted_point_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Weighted_point_2.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Weighted_point_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Weighted_point_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Weighted_point_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Weighted_point_3.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/Weighted_point_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/Weighted_point_3.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/all_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/all_includes.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/enum.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/global_function_signatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/global_function_signatures.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/global_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/global_functions.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/global_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/global_functions.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/include_conflicts_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/include_conflicts_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/include_conflicts_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/include_conflicts_3.h -------------------------------------------------------------------------------- /SWIG_CGAL/Kernel/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Kernel/typedefs.h -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_2/CGAL_Mesh_2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_2/CGAL_Mesh_2.i -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_2/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_2/Criteria.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_2/Criteria.h -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_2/Delaunay_mesher_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_2/Delaunay_mesher_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_2/Quality.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_2/Quality.h -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_2/Triangulation_conformer_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_2/Triangulation_conformer_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_2/all_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_2/all_includes.h -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_2/java_extensions.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_2/java_extensions.i -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_2/mesh_2_macros.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_2/mesh_2_macros.i -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_2/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_2/parameters.h -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_2/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_2/typedefs.h -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_3/C3T3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_3/C3T3.h -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_3/CGAL_Mesh_3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_3/CGAL_Mesh_3.i -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_3/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_3/Mesh_criteria.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_3/Mesh_criteria.h -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_3/Mesh_domains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_3/Mesh_domains.h -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_3/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_3/Object.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_3/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_3/Object.h -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_3/all_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_3/all_includes.h -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_3/decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_3/decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_3/declare_global_functions.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_3/declare_global_functions.i -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_3/java_extensions.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_3/java_extensions.i -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_3/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_3/parameters.h -------------------------------------------------------------------------------- /SWIG_CGAL/Mesh_3/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Mesh_3/typedefs.h -------------------------------------------------------------------------------- /SWIG_CGAL/Point_set_3/CGAL_Point_set_3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Point_set_3/CGAL_Point_set_3.i -------------------------------------------------------------------------------- /SWIG_CGAL/Point_set_3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Point_set_3/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/Point_set_3/Point_set_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Point_set_3/Point_set_3.h -------------------------------------------------------------------------------- /SWIG_CGAL/Point_set_3/Point_set_3_Property_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Point_set_3/Point_set_3_Property_map.h -------------------------------------------------------------------------------- /SWIG_CGAL/Point_set_3/all_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Point_set_3/all_includes.h -------------------------------------------------------------------------------- /SWIG_CGAL/Point_set_3/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Point_set_3/typedefs.h -------------------------------------------------------------------------------- /SWIG_CGAL/Point_set_processing_3/CGAL_Point_set_processing_3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Point_set_processing_3/CGAL_Point_set_processing_3.i -------------------------------------------------------------------------------- /SWIG_CGAL/Point_set_processing_3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Point_set_processing_3/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/Point_set_processing_3/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Point_set_processing_3/functions.h -------------------------------------------------------------------------------- /SWIG_CGAL/Polygon_mesh_processing/CGAL_Polygon_mesh_processing.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Polygon_mesh_processing/CGAL_Polygon_mesh_processing.i -------------------------------------------------------------------------------- /SWIG_CGAL/Polygon_mesh_processing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Polygon_mesh_processing/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/Polygon_mesh_processing/Polygon_mesh_slicer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Polygon_mesh_processing/Polygon_mesh_slicer.h -------------------------------------------------------------------------------- /SWIG_CGAL/Polygon_mesh_processing/Side_of_triangle_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Polygon_mesh_processing/Side_of_triangle_mesh.h -------------------------------------------------------------------------------- /SWIG_CGAL/Polygon_mesh_processing/all_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Polygon_mesh_processing/all_includes.h -------------------------------------------------------------------------------- /SWIG_CGAL/Polygon_mesh_processing/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Polygon_mesh_processing/utils.h -------------------------------------------------------------------------------- /SWIG_CGAL/Polyhedron_3/CGAL_Polyhedron_3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Polyhedron_3/CGAL_Polyhedron_3.i -------------------------------------------------------------------------------- /SWIG_CGAL/Polyhedron_3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Polyhedron_3/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/Polyhedron_3/Modifier_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Polyhedron_3/Modifier_base.h -------------------------------------------------------------------------------- /SWIG_CGAL/Polyhedron_3/Polyhedron_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Polyhedron_3/Polyhedron_3.h -------------------------------------------------------------------------------- /SWIG_CGAL/Polyhedron_3/Polyhedron_items_with_id_and_info_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Polyhedron_3/Polyhedron_items_with_id_and_info_3.h -------------------------------------------------------------------------------- /SWIG_CGAL/Polyhedron_3/all_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Polyhedron_3/all_includes.h -------------------------------------------------------------------------------- /SWIG_CGAL/Polyhedron_3/general_modifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Polyhedron_3/general_modifier.h -------------------------------------------------------------------------------- /SWIG_CGAL/Polyhedron_3/java_extensions.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Polyhedron_3/java_extensions.i -------------------------------------------------------------------------------- /SWIG_CGAL/Polyhedron_3/modifier_example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Polyhedron_3/modifier_example.h -------------------------------------------------------------------------------- /SWIG_CGAL/Polyhedron_3/polyhedron_3_handles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Polyhedron_3/polyhedron_3_handles.h -------------------------------------------------------------------------------- /SWIG_CGAL/Polyhedron_3/python_extensions.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Polyhedron_3/python_extensions.i -------------------------------------------------------------------------------- /SWIG_CGAL/Polyhedron_3/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Polyhedron_3/typedefs.h -------------------------------------------------------------------------------- /SWIG_CGAL/Polyline_simplification_2/CGAL_Polyline_simplification_2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Polyline_simplification_2/CGAL_Polyline_simplification_2.i -------------------------------------------------------------------------------- /SWIG_CGAL/Polyline_simplification_2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Polyline_simplification_2/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/Polyline_simplification_2/Polyline_simplification_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Polyline_simplification_2/Polyline_simplification_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Polyline_simplification_2/macros.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Polyline_simplification_2/macros.i -------------------------------------------------------------------------------- /SWIG_CGAL/Polyline_simplification_2/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Polyline_simplification_2/typedefs.h -------------------------------------------------------------------------------- /SWIG_CGAL/Python/Input_iterator_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Python/Input_iterator_wrapper.h -------------------------------------------------------------------------------- /SWIG_CGAL/Python/Output_iterator_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Python/Output_iterator_wrapper.h -------------------------------------------------------------------------------- /SWIG_CGAL/Python/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Python/exceptions.h -------------------------------------------------------------------------------- /SWIG_CGAL/Python/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Python/typemaps.i -------------------------------------------------------------------------------- /SWIG_CGAL/Shape_detection/CGAL_Shape_detection.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Shape_detection/CGAL_Shape_detection.i -------------------------------------------------------------------------------- /SWIG_CGAL/Shape_detection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Shape_detection/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/Shape_detection/impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Shape_detection/impl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Spatial_searching/CGAL_Spatial_searching.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Spatial_searching/CGAL_Spatial_searching.i -------------------------------------------------------------------------------- /SWIG_CGAL/Spatial_searching/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Spatial_searching/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/Spatial_searching/First_of_pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Spatial_searching/First_of_pair.h -------------------------------------------------------------------------------- /SWIG_CGAL/Spatial_searching/Fuzzy_objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Spatial_searching/Fuzzy_objects.h -------------------------------------------------------------------------------- /SWIG_CGAL/Spatial_searching/Kd_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Spatial_searching/Kd_tree.h -------------------------------------------------------------------------------- /SWIG_CGAL/Spatial_searching/NN_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Spatial_searching/NN_search.h -------------------------------------------------------------------------------- /SWIG_CGAL/Spatial_searching/all_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Spatial_searching/all_includes.h -------------------------------------------------------------------------------- /SWIG_CGAL/Spatial_searching/declare_spatial_searching_objects.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Spatial_searching/declare_spatial_searching_objects.i -------------------------------------------------------------------------------- /SWIG_CGAL/Spatial_searching/java_extensions.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Spatial_searching/java_extensions.i -------------------------------------------------------------------------------- /SWIG_CGAL/Spatial_searching/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Spatial_searching/typedefs.h -------------------------------------------------------------------------------- /SWIG_CGAL/Surface_mesher/C2T3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Surface_mesher/C2T3.h -------------------------------------------------------------------------------- /SWIG_CGAL/Surface_mesher/CGAL_Surface_mesher.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Surface_mesher/CGAL_Surface_mesher.i -------------------------------------------------------------------------------- /SWIG_CGAL/Surface_mesher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Surface_mesher/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/Surface_mesher/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Surface_mesher/Object.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Surface_mesher/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Surface_mesher/Object.h -------------------------------------------------------------------------------- /SWIG_CGAL/Surface_mesher/Surface_mesh_details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Surface_mesher/Surface_mesh_details.h -------------------------------------------------------------------------------- /SWIG_CGAL/Surface_mesher/all_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Surface_mesher/all_includes.h -------------------------------------------------------------------------------- /SWIG_CGAL/Surface_mesher/decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Surface_mesher/decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Surface_mesher/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Surface_mesher/typedefs.h -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_2/CGAL_Triangulation_2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_2/CGAL_Triangulation_2.i -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_2/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_2/Constrained_Delaunay_triangulation_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_2/Constrained_Delaunay_triangulation_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_2/Constrained_triangulation_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_2/Constrained_triangulation_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_2/Constrained_triangulation_plus_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_2/Constrained_triangulation_plus_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_2/Delaunay_triangulation_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_2/Delaunay_triangulation_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_2/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_2/Object.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_2/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_2/Object.h -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_2/Reference_wrappers.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_2/Reference_wrappers.i -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_2/Regular_triangulation_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_2/Regular_triangulation_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_2/Triangulation_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_2/Triangulation_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_2/all_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_2/all_includes.h -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_2/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_2/config.h -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_2/decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_2/decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_2/declare_Delaunay_triangulation_2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_2/declare_Delaunay_triangulation_2.i -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_2/declare_constrained_Delaunay_triangulation_2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_2/declare_constrained_Delaunay_triangulation_2.i -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_2/declare_constrained_Delaunay_triangulation_plus_2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_2/declare_constrained_Delaunay_triangulation_plus_2.i -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_2/declare_constrained_triangulation_2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_2/declare_constrained_triangulation_2.i -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_2/declare_regular_triangulation_2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_2/declare_regular_triangulation_2.i -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_2/declare_triangulation_2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_2/declare_triangulation_2.i -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_2/java_extensions.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_2/java_extensions.i -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_2/triangulation_handles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_2/triangulation_handles.h -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_2/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_2/typedefs.h -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_3/CGAL_Triangulation_3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_3/CGAL_Triangulation_3.i -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_3/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_3/Delaunay_triangulation_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_3/Delaunay_triangulation_3.h -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_3/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_3/Object.cpp -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_3/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_3/Object.h -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_3/Reference_wrappers.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_3/Reference_wrappers.i -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_3/Regular_triangulation_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_3/Regular_triangulation_3.h -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_3/Triangulation_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_3/Triangulation_3.h -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_3/all_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_3/all_includes.h -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_3/decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_3/decl.h -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_3/declare_Delaunay_triangulation_3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_3/declare_Delaunay_triangulation_3.i -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_3/declare_regular_triangulation_3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_3/declare_regular_triangulation_3.i -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_3/declare_triangulation_3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_3/declare_triangulation_3.i -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_3/triangulation_handles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_3/triangulation_handles.h -------------------------------------------------------------------------------- /SWIG_CGAL/Triangulation_3/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Triangulation_3/typedefs.h -------------------------------------------------------------------------------- /SWIG_CGAL/Voronoi_diagram_2/CGAL_Voronoi_diagram_2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Voronoi_diagram_2/CGAL_Voronoi_diagram_2.i -------------------------------------------------------------------------------- /SWIG_CGAL/Voronoi_diagram_2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Voronoi_diagram_2/CMakeLists.txt -------------------------------------------------------------------------------- /SWIG_CGAL/Voronoi_diagram_2/Locate_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Voronoi_diagram_2/Locate_result.h -------------------------------------------------------------------------------- /SWIG_CGAL/Voronoi_diagram_2/Voronoi_diagram_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Voronoi_diagram_2/Voronoi_diagram_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Voronoi_diagram_2/Voronoi_diagram_handles_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Voronoi_diagram_2/Voronoi_diagram_handles_2.h -------------------------------------------------------------------------------- /SWIG_CGAL/Voronoi_diagram_2/all_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Voronoi_diagram_2/all_includes.h -------------------------------------------------------------------------------- /SWIG_CGAL/Voronoi_diagram_2/declare_voronoi_diagram_2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Voronoi_diagram_2/declare_voronoi_diagram_2.i -------------------------------------------------------------------------------- /SWIG_CGAL/Voronoi_diagram_2/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Voronoi_diagram_2/typedefs.h -------------------------------------------------------------------------------- /SWIG_CGAL/Voronoi_diagram_2/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/Voronoi_diagram_2/utility.h -------------------------------------------------------------------------------- /SWIG_CGAL/common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/common.i -------------------------------------------------------------------------------- /SWIG_CGAL/files/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | __version__ = '@CGAL_VERSION@' 3 | -------------------------------------------------------------------------------- /SWIG_CGAL/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/SWIG_CGAL/typemaps.i -------------------------------------------------------------------------------- /cmake/Modules/SWIG_CGAL_Macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/cmake/Modules/SWIG_CGAL_Macros.cmake -------------------------------------------------------------------------------- /examples/data/b9_training.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/data/b9_training.ply -------------------------------------------------------------------------------- /examples/data/cube.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/data/cube.pwn -------------------------------------------------------------------------------- /examples/data/elephant.off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/data/elephant.off -------------------------------------------------------------------------------- /examples/data/oni.xyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/data/oni.xyz -------------------------------------------------------------------------------- /examples/data/sphere.off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/data/sphere.off -------------------------------------------------------------------------------- /examples/java/AABB_polyhedron_facet_intersection_example.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/AABB_polyhedron_facet_intersection_example.java -------------------------------------------------------------------------------- /examples/java/AABB_triangle_3_example.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/AABB_triangle_3_example.java -------------------------------------------------------------------------------- /examples/java/Advancing_front_reconstruction_example.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/Advancing_front_reconstruction_example.java -------------------------------------------------------------------------------- /examples/java/Classification_example.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/Classification_example.java -------------------------------------------------------------------------------- /examples/java/Mesh2Criteria.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/Mesh2Criteria.java -------------------------------------------------------------------------------- /examples/java/Mesh3CellCriteria.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/Mesh3CellCriteria.java -------------------------------------------------------------------------------- /examples/java/Mesh3FacetCriteria.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/Mesh3FacetCriteria.java -------------------------------------------------------------------------------- /examples/java/Point_set_3_example.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/Point_set_3_example.java -------------------------------------------------------------------------------- /examples/java/Point_set_processing_3_example.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/Point_set_processing_3_example.java -------------------------------------------------------------------------------- /examples/java/Polyhedron_incremental_builder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/Polyhedron_incremental_builder.java -------------------------------------------------------------------------------- /examples/java/Shape_detection_example.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/Shape_detection_example.java -------------------------------------------------------------------------------- /examples/java/conforming.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/conforming.java -------------------------------------------------------------------------------- /examples/java/hds_incremental_builder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/hds_incremental_builder.java -------------------------------------------------------------------------------- /examples/java/hds_prog_halfedge_iterator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/hds_prog_halfedge_iterator.java -------------------------------------------------------------------------------- /examples/java/intersect_triangle_soup_with_polyline_aabb.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/intersect_triangle_soup_with_polyline_aabb.java -------------------------------------------------------------------------------- /examples/java/mesh_global.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/mesh_global.java -------------------------------------------------------------------------------- /examples/java/mesh_optimisation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/mesh_optimisation.java -------------------------------------------------------------------------------- /examples/java/mesh_polyhedral_domain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/mesh_polyhedral_domain.java -------------------------------------------------------------------------------- /examples/java/polyhedron_prog_cube.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/polyhedron_prog_cube.java -------------------------------------------------------------------------------- /examples/java/regular_3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/regular_3.java -------------------------------------------------------------------------------- /examples/java/simple_triangulation_3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/simple_triangulation_3.java -------------------------------------------------------------------------------- /examples/java/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/test.sh -------------------------------------------------------------------------------- /examples/java/test_aabb.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/test_aabb.java -------------------------------------------------------------------------------- /examples/java/test_as2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/test_as2.java -------------------------------------------------------------------------------- /examples/java/test_aw3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/test_aw3.java -------------------------------------------------------------------------------- /examples/java/test_box_intersection_d.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/test_box_intersection_d.java -------------------------------------------------------------------------------- /examples/java/test_convex_hull_2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/test_convex_hull_2.java -------------------------------------------------------------------------------- /examples/java/test_convex_hull_3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/test_convex_hull_3.java -------------------------------------------------------------------------------- /examples/java/test_dt3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/test_dt3.java -------------------------------------------------------------------------------- /examples/java/test_interpolation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/test_interpolation.java -------------------------------------------------------------------------------- /examples/java/test_kernel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/test_kernel.java -------------------------------------------------------------------------------- /examples/java/test_mesh_2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/test_mesh_2.java -------------------------------------------------------------------------------- /examples/java/test_mesh_3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/test_mesh_3.java -------------------------------------------------------------------------------- /examples/java/test_operators.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/test_operators.java -------------------------------------------------------------------------------- /examples/java/test_pmp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/test_pmp.java -------------------------------------------------------------------------------- /examples/java/test_polyhedron.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/test_polyhedron.java -------------------------------------------------------------------------------- /examples/java/test_polyline_simplification_2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/test_polyline_simplification_2.java -------------------------------------------------------------------------------- /examples/java/test_rt3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/test_rt3.java -------------------------------------------------------------------------------- /examples/java/test_sp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/test_sp.java -------------------------------------------------------------------------------- /examples/java/test_surface_mesher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/test_surface_mesher.java -------------------------------------------------------------------------------- /examples/java/test_t2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/test_t2.java -------------------------------------------------------------------------------- /examples/java/triangulation_prog1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/triangulation_prog1.java -------------------------------------------------------------------------------- /examples/java/vd_2_point_location.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/java/vd_2_point_location.java -------------------------------------------------------------------------------- /examples/python/AABB_polyhedron_facet_intersection_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/AABB_polyhedron_facet_intersection_example.py -------------------------------------------------------------------------------- /examples/python/AABB_triangle_3_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/AABB_triangle_3_example.py -------------------------------------------------------------------------------- /examples/python/Advancing_front_reconstruction_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/Advancing_front_reconstruction_example.py -------------------------------------------------------------------------------- /examples/python/Classification_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/Classification_example.py -------------------------------------------------------------------------------- /examples/python/Point_set_3_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/Point_set_3_example.py -------------------------------------------------------------------------------- /examples/python/Point_set_processing_3_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/Point_set_processing_3_example.py -------------------------------------------------------------------------------- /examples/python/Polyhedron_incremental_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/Polyhedron_incremental_builder.py -------------------------------------------------------------------------------- /examples/python/Shape_detection_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/Shape_detection_example.py -------------------------------------------------------------------------------- /examples/python/conforming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/conforming.py -------------------------------------------------------------------------------- /examples/python/hds_incremental_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/hds_incremental_builder.py -------------------------------------------------------------------------------- /examples/python/hds_prog_halfedge_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/hds_prog_halfedge_iterator.py -------------------------------------------------------------------------------- /examples/python/mesh_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/mesh_global.py -------------------------------------------------------------------------------- /examples/python/mesh_optimisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/mesh_optimisation.py -------------------------------------------------------------------------------- /examples/python/mesh_polyhedral_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/mesh_polyhedral_domain.py -------------------------------------------------------------------------------- /examples/python/polygonal_triangulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/polygonal_triangulation.py -------------------------------------------------------------------------------- /examples/python/polyhedron_modifier_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/polyhedron_modifier_example.py -------------------------------------------------------------------------------- /examples/python/polyhedron_prog_cube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/polyhedron_prog_cube.py -------------------------------------------------------------------------------- /examples/python/regular_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/regular_3.py -------------------------------------------------------------------------------- /examples/python/simple_triangulation_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/simple_triangulation_3.py -------------------------------------------------------------------------------- /examples/python/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/test.py -------------------------------------------------------------------------------- /examples/python/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/test.sh -------------------------------------------------------------------------------- /examples/python/test_aabb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/test_aabb.py -------------------------------------------------------------------------------- /examples/python/test_aabb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/test_aabb2.py -------------------------------------------------------------------------------- /examples/python/test_as2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/test_as2.py -------------------------------------------------------------------------------- /examples/python/test_aw3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/test_aw3.py -------------------------------------------------------------------------------- /examples/python/test_box_intersection_d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/test_box_intersection_d.py -------------------------------------------------------------------------------- /examples/python/test_convex_hull_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/test_convex_hull_2.py -------------------------------------------------------------------------------- /examples/python/test_convex_hull_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/test_convex_hull_3.py -------------------------------------------------------------------------------- /examples/python/test_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/test_operators.py -------------------------------------------------------------------------------- /examples/python/test_pmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/test_pmp.py -------------------------------------------------------------------------------- /examples/python/test_polyline_simplification_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/test_polyline_simplification_2.py -------------------------------------------------------------------------------- /examples/python/test_rt2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/test_rt2.py -------------------------------------------------------------------------------- /examples/python/test_sp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/test_sp.py -------------------------------------------------------------------------------- /examples/python/test_t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/test_t2.py -------------------------------------------------------------------------------- /examples/python/triangulation_prog1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/triangulation_prog1.py -------------------------------------------------------------------------------- /examples/python/vd_2_point_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/examples/python/vd_2_point_location.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-swig-bindings/HEAD/setup.py --------------------------------------------------------------------------------