├── .coveragerc ├── .drone.yml ├── .gitattributes ├── .github └── workflows │ ├── build.yml │ ├── install.yml │ └── test-build.yml ├── .gitignore ├── .pep8 ├── .pre-commit-config.yaml ├── .pyenchant_dessia.dict ├── .pylintrc ├── .readthedocs.yaml ├── .woodpecker.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── MANIFEST.in ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── ROADMAP.md ├── code_changelog.sh ├── code_pep8.sh ├── code_pydocstyle.py ├── code_pylint.py ├── code_quality.py ├── coverage.py ├── doc ├── Makefile ├── make.bat └── source │ ├── _static │ ├── index-images │ │ ├── block.png │ │ ├── block_babylonjs.png │ │ ├── bsplineface3d.png │ │ ├── closedshell3d.png │ │ ├── cone.png │ │ ├── conicalface3d.png │ │ ├── contributor.svg │ │ ├── cylinder.png │ │ ├── cylindricalface3d.png │ │ ├── distance.svg │ │ ├── extrudedprofile.png │ │ ├── extrusionface3d.png │ │ ├── geometric-svgrepo-com.svg │ │ ├── getting_started.svg │ │ ├── hollowcylinder.png │ │ ├── intersection-svgrepo-com.svg │ │ ├── intersection.png │ │ ├── openshell3d.png │ │ ├── planeface3d.png │ │ ├── point-vector.png │ │ ├── revolutionface3d.png │ │ ├── revolvedprofile.png │ │ ├── sphere.png │ │ ├── sphericalface3d.png │ │ ├── step.svg │ │ ├── stl_file.svg │ │ ├── subtract.png │ │ ├── subtract_to_closedshell.png │ │ ├── sweep.png │ │ ├── tools-folder-svgrepo-com.svg │ │ ├── toroidalface3d.png │ │ ├── triangle3d.png │ │ ├── union-svgrepo-com.svg │ │ ├── union.png │ │ └── user_guide.svg │ ├── volmdlr-dark.svg │ ├── volmdlr.css │ └── volmdlr.svg │ ├── about_dessia.rst │ ├── about_the_package.rst │ ├── authors.rst │ ├── boolean_operations.rst │ ├── conf.py │ ├── dealing_with_step.rst │ ├── dealing_with_stl.rst │ ├── distances.rst │ ├── getting_started.rst │ ├── glossary.rst │ ├── how-tos.rst │ ├── images │ ├── Castest.jpg │ ├── bspline_surface_split.png │ ├── casing.jpg │ ├── casing_contours.png │ ├── polygon.jpg │ ├── sweep.jpg │ ├── sweep1.jpg │ └── sweepMPLPlot.jpg │ ├── index.rst │ ├── intersections.rst │ ├── modules.rst │ ├── modules │ ├── base_modules.rst │ ├── bspline_compiled.rst │ ├── cad_simplification.rst │ ├── gmsh.rst │ ├── grid.rst │ ├── mesh.rst │ ├── module_cloud.rst │ ├── module_curves.rst │ ├── module_display.rst │ ├── module_edges.rst │ ├── module_faces.rst │ ├── module_geometry.rst │ ├── primitives.rst │ ├── shells.rst │ ├── step.rst │ ├── stl.rst │ ├── surfaces.rst │ ├── voxelization.rst │ └── wires.rst │ ├── road_map_and_current_limitations.rst │ ├── tutorials.rst │ ├── useful_operations.rst │ ├── user_guide.rst │ ├── volmdlr.rst │ └── volmdlr.utils.rst ├── package.xml ├── pre-commit ├── pyproject.toml ├── scripts ├── Tutorial │ ├── cylinder.py │ ├── ellipse.py │ ├── planeFace.py │ ├── tore.py │ ├── tutorial.py │ └── tutorial1.ipynb ├── cad_simplification │ ├── alpha_wrap_simplify.py │ ├── triangle_decimation_simplify.py │ ├── triple_extrusion_simplify.py │ └── voxelization_simplify.py ├── center_mass.py ├── ci_scripts.py ├── cloud │ ├── cloud_debug.py │ ├── poly3d_0.txt │ ├── poly3d_1.txt │ ├── poly3d_2.txt │ ├── poly3d_3.txt │ ├── poly3d_4.txt │ ├── poly3d_5.txt │ ├── poly3d_6.txt │ ├── poly3d_7.txt │ ├── poly3d_8.txt │ ├── poly3d_9.txt │ ├── sewing_stl.py │ └── sewing_two_polygons.py ├── collisions │ ├── cylinder_points_belongs.py │ ├── cylinders_collision.py │ ├── cylinders_interference.py │ ├── plot_cylinders_points.py │ └── test_perf_min_dist.py ├── contours │ ├── contour_bounding_rectangle_test.py │ ├── contour_cut_by_wire.py │ ├── contour_cut_by_wire_2.py │ ├── contour_extract_primtives.py │ ├── contour_merge_with_1.py │ ├── contour_merge_with_2.py │ ├── contour_split.py │ └── cut_by_line.py ├── core │ ├── bbox_triangle_intersection.py │ ├── frames.py │ ├── grid2d_with_direction.py │ ├── points.py │ └── points_axial_symmetry.py ├── curves_babylonjs.py ├── discrete_representation │ ├── octree │ │ ├── inner_growing_showcase.py │ │ ├── intersecting_faces_combinations.py │ │ └── non_homogeneous_showcase.py │ ├── pixelization │ │ ├── pixelization_boolean_operations.py │ │ ├── pixelization_filling.py │ │ ├── pixelization_from_closed_polygon.py │ │ └── pixelization_inverse.py │ └── voxelization │ │ ├── compare_memory_usage.py │ │ ├── interference │ │ ├── compare_boolean_intersection.py │ │ ├── compare_boolean_union.py │ │ ├── compare_is_intersecting.py │ │ ├── interference_surface_showcase.py │ │ └── interference_volume_showcase.py │ │ ├── octree │ │ ├── inner_growing_showcase.py │ │ ├── intersecting_faces_combinations.py │ │ └── non_homogeneous_showcase.py │ │ ├── step_file_voxelization.py │ │ ├── stl_file_voxelization.py │ │ ├── volume_model_matrix_based_voxelization.py │ │ ├── volume_model_point_based_voxelization.py │ │ ├── voxelization_decimation.py │ │ ├── voxelization_filling.py │ │ ├── voxelization_inverse.py │ │ └── voxelization_moving.py ├── display │ ├── mesh3d.py │ └── mesh_decimation.py ├── distance │ ├── arc3D_arc3D.py │ ├── arc3D_ls3D.py │ ├── cyl_cyl.py │ ├── cyl_pf.py │ ├── ls3D_ls3D.py │ ├── shell_intersection.py │ ├── sweep_sweep.py │ ├── tore_cyl.py │ ├── tore_pf.py │ └── tore_tore.py ├── edges │ ├── arc2D_linesegment_intersection.py │ ├── arcs2D.py │ ├── arcs3D.py │ ├── areas_moment_cog_check.py │ ├── bezier_curve.py │ ├── bspline.py │ ├── bspline2.py │ ├── lines2d.py │ ├── minimum_distance_points_line3D.py │ ├── minimum_distance_points_line3D_2.py │ └── test_bspline3d_revolution.py ├── faces │ ├── BSplineSurface │ │ ├── bspline_curves.py │ │ ├── bspline_curves_point_belongs.py │ │ ├── bspline_surface_1.step │ │ ├── bspline_surface_2.step │ │ ├── bspline_surface_definition.py │ │ ├── bspline_surface_interpolation.py │ │ ├── bspline_surface_merge.py │ │ ├── bspline_surface_split.py │ │ ├── bspline_surface_to_2d.py │ │ ├── bspline_surfaces_grid3d.py │ │ ├── cylindrical_surface_1.step │ │ └── from_cylindrical_to_bspline_surface.py │ ├── bezier_surface.py │ ├── blocks_set_operations.py │ ├── bspline.py │ ├── bspline_bark.py │ ├── bsplineface_with_inner_contours.stp │ ├── conical.py │ ├── cylindrical.py │ ├── export_to_step.py │ ├── faces_with_inner_contours.py │ ├── homothetie_test.py │ ├── planar.py │ ├── planeface_with_inner_contour.step │ ├── ruled.py │ ├── set_operations_complex_test1.py │ ├── spherical.py │ ├── surface2d.py │ ├── toroidal.py │ ├── triangle3d.py │ └── union.py ├── geometry.py ├── grid.py ├── mesh │ ├── block.msh │ ├── geo_file_1.py │ ├── geo_file_2.py │ ├── geo_file_3.py │ ├── mesh2D.py │ ├── mesh_quadratic.msh │ ├── mesher.py │ ├── model.msh │ ├── read_msh_file.py │ └── to_be_meshed.py ├── moving_volume_models │ └── moving_block.py ├── primitives │ ├── block3d.py │ ├── bspline_sweep.py │ ├── cone.py │ ├── cylinder.py │ ├── extrusion.py │ ├── extrusion2.py │ ├── extrusion3.py │ ├── extrusion4.py │ ├── extrusion_bspline.py │ ├── hollow_cylinder.py │ ├── revolved_profile.py │ ├── sphere.py │ ├── sphere_points.py │ └── sweep.py ├── shells │ ├── decimation.py │ ├── merge_display_triangle_shell.py │ ├── operations.py │ ├── shells_subtract.py │ └── triangle_shell_mesh_data.py ├── showcases │ ├── casing.py │ ├── gear.py │ ├── logo.py │ ├── random_casing.py │ ├── simple_shapes.py │ └── vessel.py ├── step │ ├── 2_bspline_faces.stp │ ├── 4_bspline_faces.step │ ├── STEP_test1.stp │ ├── aircraft_engine.step │ ├── assembly.step │ ├── block.step │ ├── bracket1.step │ ├── bracket2.step │ ├── bracket3.step │ ├── casing.step │ ├── cheese.step │ ├── compressor_simplified.step │ ├── cone1.step │ ├── cone2.step │ ├── cylinder.step │ ├── ellipse.step │ ├── engine.step │ ├── iso4162M16x55.step │ ├── read_steps.py │ ├── read_test1.STEP │ ├── read_test3.STEP │ ├── shell0.step │ ├── spanners.step │ ├── sphere1.step │ ├── sphere2.step │ ├── sphere3.step │ ├── strange_gasket.step │ ├── tore1.step │ ├── tore2.step │ ├── tormach_wrench.step │ ├── usecase_inner_contour.STEP │ └── workflow_generic_step_reading.py ├── stl │ ├── alphashape.py │ ├── cube_ascii.stl │ ├── double_space.stl │ ├── read_stls.py │ ├── simple.stl │ └── workflow_generic_stl_reading.py └── wires │ ├── areas.py │ ├── axial_symmetry.py │ ├── contour_from_point_cloud.py │ ├── convexhull.py │ ├── polygon2D.py │ ├── polygon3d.py │ ├── rolling_circle_in_polygon.py │ ├── roundedlines.py │ ├── simplify_polygon.py │ └── triangle2D.py ├── setup.py ├── tests ├── __init__.py ├── cloud │ ├── __init__.py │ └── test_cloud.py ├── common_operations │ ├── __init__.py │ └── test_common_operations.py ├── core │ ├── __init__.py │ ├── compound_export.stp │ ├── compound_geometric_set.step │ ├── test_assembly.py │ ├── test_bounding_box.py │ ├── test_bounding_rectangle.py │ ├── test_composite_primitive3d.py │ ├── test_compound.py │ ├── test_functions.py │ └── test_volume_model.py ├── core_compiled │ ├── __init__.py │ ├── test_basis2d.py │ ├── test_basis3d.py │ ├── test_frame2d.py │ ├── test_frame3d.py │ ├── test_point2d.py │ ├── test_point3d.py │ ├── test_vector.py │ ├── test_vector2d.py │ └── test_vector3d.py ├── curves │ ├── __init__.py │ ├── bspline.json │ ├── circle2d_objects │ │ └── test_circle2d_line2d_intersections.json │ ├── circle3D_objects │ │ └── test_circle_linesegment_intersections221223.json │ ├── test_circle2d.py │ ├── test_circle3d.py │ ├── test_ellipse2d.py │ ├── test_ellipse3d.py │ ├── test_hyperbola.py │ ├── test_line2d.py │ ├── test_line3d.py │ └── test_parabola.py ├── discrete_representation │ ├── __init__.py │ ├── stanford_bunny.json │ ├── test_discrete_representation.py │ ├── test_matrix_based_voxelization.py │ ├── test_octree_based_voxelization.py │ ├── test_pixelization.py │ └── test_point_based_voxelization.py ├── display │ ├── __init__.py │ ├── models │ │ └── simple.stl │ ├── test_display.py │ └── test_mesh3d.py ├── edges │ ├── __init__.py │ ├── arc3d_split_between_two_points.json │ ├── arc_objects │ │ ├── arc2d_bug_point_belongs.json │ │ ├── arc2d_point_belongs.json │ │ ├── arc2d_rotation_test.json │ │ ├── arc3d_test_point_distance.json │ │ └── arc_abscissa_bug.json │ ├── arcellipse_objects │ │ └── ellipse2d_point_at_abscissa.json │ ├── bsplinecurve_objects │ │ ├── bg_bspline5_.json │ │ ├── bounding_box_contour.json │ │ ├── bounding_box_test.json │ │ ├── bspline_buggy_trim.json │ │ ├── bspline_curve1.json │ │ ├── bspline_curve2.json │ │ ├── bsplinecurve2d_1.json │ │ ├── bsplinecurve3d_abscissa_test.json │ │ ├── bsplinecurve3d_split_test.json │ │ ├── bsplinecurve_close_points_trim_bug.json │ │ ├── bsplinecurve_fullarc.json │ │ ├── bsplinecurve_periodic.json │ │ ├── bsplinecurve_split_bug.json │ │ ├── bsplinecurve_split_bug_2.json │ │ ├── bsplinecurve_trim.json │ │ ├── bsplinecurve_trim_with_close_to_bound_points.json │ │ ├── periodic_bsplinecurve_from_step_test_object_dict.json │ │ ├── spiral_bsplinecurve.json │ │ ├── test_bspline_local_discretizations.json │ │ ├── test_bspline_trim271123.json │ │ └── test_periodic_bspline_trim.json │ ├── fullarcellipse_objects │ │ ├── ellipse2d_point_belongs.json │ │ ├── fullarcellipse3d_discretization_points.json │ │ ├── fullarcellipse3d_line_intersections.json │ │ └── fullarcellipse3d_line_intersections_line.json │ ├── test_arc2d.py │ ├── test_arc3d.py │ ├── test_arcellipse2d.py │ ├── test_arcellipse3d.py │ ├── test_beziercurve2d.py │ ├── test_beziercurve3d.py │ ├── test_bsplinecurve.py │ ├── test_bsplinecurve2d.py │ ├── test_bsplinecurve3d.py │ ├── test_distances.py │ ├── test_edge.py │ ├── test_edge_from_step.stp │ ├── test_edge_intersections.py │ ├── test_fullarc2d.py │ ├── test_fullarc3d.py │ ├── test_fullarcellipse2d.py │ ├── test_fullarcellipse3d.py │ ├── test_linesegment2d.py │ └── test_linesegment3d.py ├── faces │ ├── __init__.py │ ├── objects_bspline_test │ │ ├── bspline_contour_0_openned_contour.json │ │ ├── bspline_contour_1_openned_contour.json │ │ ├── bspline_face1.json │ │ ├── bspline_surface_openned_contour.json │ │ ├── bsplineface_2d_interpolation_bug_contour.json │ │ ├── bsplineface_2d_interpolation_bug_surface.json │ │ ├── bsplineface_bbox_test.json │ │ ├── bsplineface_closed_contour.json │ │ ├── bsplineface_closed_surface.json │ │ ├── bsplineface_closed_surface_2.json │ │ ├── bsplineface_closed_surface_2_contour.json │ │ ├── bsplineface_closed_surface_3.json │ │ ├── bsplineface_closed_surface_3_contour.json │ │ ├── bsplineface_closed_surface_4.json │ │ ├── bsplineface_closed_surface_4_contour.json │ │ ├── bsplineface_closed_surface_contour_not_at_bounds_contour.json │ │ ├── bsplineface_closed_surface_contour_not_at_bounds_surface.json │ │ ├── bsplineface_closedsurface_contour.json │ │ ├── bsplineface_closedsurface_contour_2.json │ │ ├── bsplineface_closedsurface_surface.json │ │ ├── bsplineface_closedsurface_surface_2.json │ │ ├── bsplineface_grid_search_contour.json │ │ ├── bsplineface_grid_search_surface.json │ │ ├── bsplineface_periodical_spiral_contour.json │ │ ├── bsplineface_periodical_spiral_surface.json │ │ ├── bsplineface_pipe_contour.json │ │ ├── bsplineface_pipe_contour_2.json │ │ ├── bsplineface_pipe_surface.json │ │ ├── bsplineface_pipe_surface_2.json │ │ ├── bsplineface_spiral_bug_contour.json │ │ ├── bsplineface_spiral_bug_surface.json │ │ ├── bsplinesurface_bsplineface_with_openned_contour.json │ │ ├── bsplinesurface_bsplineface_with_openned_contour_contours.json │ │ ├── small_bsplineface_closed_surface_contour.json │ │ ├── small_bsplineface_closed_surface_surface.json │ │ ├── spiral_bsplineface_contour.json │ │ ├── spiral_bsplineface_surface.json │ │ ├── test_neutral_fiber.json │ │ ├── test_neutral_fiber_2.json │ │ └── test_neutral_fiber_3.json │ ├── objects_conical_tests │ │ ├── conical_contour_with_singularity.json │ │ ├── conical_surface1.json │ │ ├── conical_surface3d_1.json │ │ ├── conical_surface3d_2.json │ │ ├── conical_surface_with_singularity.json │ │ ├── conicalface_segfault_with_tri_opt_set_to_pq.json │ │ ├── conicalsurface_openned_contours.json │ │ ├── conicalsurface_openned_contours_contour_0.json │ │ ├── conicalsurface_openned_contours_contour_1.json │ │ ├── face_contour1.json │ │ ├── face_contour2.json │ │ ├── face_contour3_.json │ │ ├── face_contour4_.json │ │ ├── face_from_contours1_0.json │ │ ├── face_from_contours1_1.json │ │ └── test_conicalface_normal_at_point.json │ ├── objects_cylindrical_tests │ │ ├── contour3d__openned_one_contour_0.json │ │ ├── contour3d__openned_one_contour_1.json │ │ ├── contour_1_0.json │ │ ├── contour_1_1.json │ │ ├── cylindrical_contour_0_repair_contour2d.json │ │ ├── cylindrical_contour_1_repair_contour2d.json │ │ ├── cylindrical_contour_floating_point_error.json │ │ ├── cylindrical_surface_floating_point_error.json │ │ ├── cylindrical_surface_repair_contour2d.json │ │ ├── plane_face_cylindrical_face_intersec.json │ │ ├── surface3d_1.json │ │ ├── surface_openned_one_contour.json │ │ ├── test_buggy_split_by_plane12_07_2023.json │ │ ├── test_cylindrical_faces_split_by_plane_expected_discretization_points.json │ │ └── test_cylindricalface_face_inside.json │ ├── objects_extrusion_tests │ │ ├── extrusionface_export_test.json │ │ ├── extrusionface_with_ellipse_test_boundingbox.json │ │ ├── extrusionsurface_fullarcellipse.json │ │ ├── extrusionsurface_fullarcellipse_contour.json │ │ ├── extrusionsurface_inner_contour.json │ │ ├── extrusionsurface_inner_contour_contour_0.json │ │ ├── extrusionsurface_inner_contour_contour_1.json │ │ ├── periodic_extrusionsurface_small_bsplinecurve.json │ │ └── periodic_extrusionsurface_small_bsplinecurve_contour.json │ ├── objects_planeface_tests │ │ ├── face_to_cut_the_one_with_3holes.json │ │ ├── face_tobe_divided.json │ │ ├── face_with_3holes.json │ │ ├── plane_face_cylindrical_face_intersec.json │ │ ├── test_face3_face_inside.json │ │ ├── test_face_inside.json │ │ ├── test_planef_inters291123.json │ │ ├── test_planeface3d_merge_faces_json_files │ │ │ ├── faces_merge_faces2.json │ │ │ ├── faces_merge_faces3.json │ │ │ ├── faces_merge_faces4.json │ │ │ ├── test_merge_faces4.json │ │ │ └── test_merge_faces5.json │ │ ├── test_planeface_cylindricalface_intersections_none.json │ │ ├── test_planeface_divide_face_json_files │ │ │ ├── test_face_divide_face.json │ │ │ ├── test_face_divide_face2.json │ │ │ ├── test_face_divide_face3.json │ │ │ ├── test_face_divide_face5.json │ │ │ ├── test_face_divide_face6.json │ │ │ └── test_planeface3d_divide_face.json │ │ ├── test_planeface_intersections.json │ │ ├── test_planeface_point_belongs.json │ │ └── test_set_operations_new_faces.json │ ├── objects_revolution_tests │ │ └── revolutionface_export_test.json │ ├── objects_spherical_test │ │ ├── face_from_contours3d_and_rectangular_cut_contour_0.json │ │ ├── face_from_contours3d_and_rectangular_cut_contour_1.json │ │ ├── face_from_contours3d_and_rectangular_cut_point.json │ │ ├── face_from_contours3d_and_rectangular_cut_surface.json │ │ ├── sphericalface_disconnected_contours_contour_0.json │ │ ├── sphericalface_disconnected_contours_contour_1.json │ │ ├── sphericalface_disconnected_contours_surface.json │ │ ├── sphericalface_from_contours3d_repair_primitives_periodicity_contour.json │ │ ├── sphericalface_from_contours3d_repair_primitives_periodicity_surface.json │ │ ├── sphericalsurface_contour3d_to_2d_bug.json │ │ └── sphericalsurface_contour3d_to_2d_bug_contour.json │ ├── objects_toroidal_tests │ │ ├── contour_4_0.json │ │ ├── face_with_inner_contour_contour0.json │ │ ├── face_with_inner_contour_contour1.json │ │ ├── face_with_inner_contour_surface.json │ │ ├── repair_inner_contour_periodicity_contour_0.json │ │ ├── repair_inner_contour_periodicity_contour_1.json │ │ ├── repair_inner_contour_periodicity_surface.json │ │ ├── repair_periodicity_toroidal_surface.json │ │ ├── repair_periodicity_toroidal_surface_contour.json │ │ ├── surface_4.json │ │ ├── test_planeface3d_toroidalface3d_121223.json │ │ ├── test_planeface3d_toroidalface3d_131223.json │ │ └── test_planeface_toroidialface_intersections301123.json │ ├── test_bsplineface3d.py │ ├── test_conicalface3d.py │ ├── test_cylindricalface3d.py │ ├── test_extrusionface3d.py │ ├── test_face3d.py │ ├── test_planeface3d.py │ ├── test_revolutionface3d.py │ ├── test_sphericalface3d.py │ └── test_toroidalface3d.py ├── geometry │ ├── __init__.py │ └── test_geometry.py ├── line_distances_projections.py ├── primitives3d │ ├── __init__.py │ ├── test_block.py │ ├── test_cone.py │ ├── test_cylinder.py │ ├── test_hollow_cylinder.py │ ├── test_sphere.py │ └── test_sweep.py ├── shells │ ├── __init__.py │ ├── closed_shell.json │ ├── closedtriangleshell3d.json │ ├── open_shell.json │ ├── shell1(1).json │ ├── shell2(1).json │ ├── test_closed_shell_point_belongs2.json │ ├── test_closedshell3d.py │ ├── test_shell3d.py │ ├── test_shell_volume.json │ ├── test_shells_distance2.json │ └── test_triangle_shell.py ├── step │ ├── __init__.py │ ├── cone.step │ ├── test_conversion_factor.step │ ├── test_names.step │ ├── test_step.py │ ├── test_step_read_lines.stp │ └── test_wireframe.step ├── surfaces │ ├── __init__.py │ ├── objects_bspline_test │ │ ├── BSplineSurface3D_with_Arc3D.json │ │ ├── arcellipse_on_bsplinesurface.json │ │ ├── bspline_contour_self_intersecting_contour.json │ │ ├── bspline_contour_with_arcs.json │ │ ├── bspline_surface_self_intersecting_contour.json │ │ ├── bspline_surface_with_arcs.json │ │ ├── bsplinecurve3d_to_2d_vclosed_surface_test.json │ │ ├── bsplinecurve3d_to_2d_vclosed_surface_test_curve.json │ │ ├── bsplineface_triangulation_problem_surface.json │ │ ├── bsplinesurface_arc3d_to_2d_arc3d.json │ │ ├── bsplinesurface_arc3d_to_2d_surface.json │ │ ├── bsplinesurface_derivatives_v_degree_1.json │ │ ├── bsplinesurface_nan_bug.json │ │ ├── bsplinesurface_nan_bug_contour.json │ │ ├── bsplinesurface_point3d_to_2d_grid_search_1.json │ │ ├── bsplinesurface_point3d_to_2d_grid_search_2.json │ │ ├── bsplinesurface_point3d_to_2d_grid_search_3.json │ │ ├── bsplinesurface_point3d_to_2d_grid_search_4.json │ │ ├── bsplinesurface_smallbsplinecurve.json │ │ ├── bsplinesurface_smallbsplinecurve_curve.json │ │ ├── bsplinesurface_with_arcellipse.json │ │ ├── bsplinesurface_with_fullarcellipse.json │ │ ├── bsplinesurface_with_fullarcellipse_fullarcellipse3d.json │ │ ├── bsplinesurface_with_singularity_linesegment3d_to_2d.json │ │ ├── bsplinesurface_with_singularity_linesegment3d_to_2d_contour.json │ │ ├── bsplinesurface_with_singularity_point3d_to_2d.json │ │ ├── bsplinesurface_with_singularity_point3d_to_2d_contour.json │ │ ├── contour3d_to_2d_small_primitives_contour.json │ │ ├── contour3d_to_2d_small_primitives_surface.json │ │ ├── periodic_surface_smallbsplinecurve3d.json │ │ ├── periodic_surface_smallbsplinecurve3d_curve.json │ │ ├── periodicalsurface.json │ │ ├── periodicalsurface_contour.json │ │ ├── surface3d_8.json │ │ ├── surface_with_singularity.json │ │ └── surface_with_singularity_contour.json │ ├── objects_conical_tests │ │ ├── conical_singularity_contour.json │ │ ├── conical_singularity_suface.json │ │ ├── conicalsurface_contour_with_singularity_2.json │ │ ├── conicalsurface_contour_with_singularity_contour_2.json │ │ ├── conicalsurface_linesegment3d_to_2d.json │ │ ├── conicalsurface_linesegment3d_to_2d_contour.json │ │ └── test_conicalsurface_plane_intersections081223.json │ ├── objects_cylindrical_tests │ │ ├── bsplinecurve3d_bug.json │ │ ├── cylindrical_contour_bspline_openned_contour.json │ │ ├── cylindrical_surf_bug.json │ │ ├── cylindrical_surface_bspline_openned_contour.json │ │ ├── cylindricalsurface_linesegment3d.json │ │ ├── cylindricalsurface_small_periodic_bsplinecurve.json │ │ ├── cylindricalsurface_small_periodic_bsplinecurve_contour.json │ │ ├── cylindricalsurface_with_linesegment3d.json │ │ ├── test_contour3d_to_2d_contour.json │ │ └── test_contour3d_to_2d_surface.json │ ├── objects_extrusion_tests │ │ ├── bspline_extruded_simple.step │ │ ├── contour3d_to_2d_contour.json │ │ ├── contour3d_to_2d_contour_2.json │ │ ├── contour3d_to_2d_surface.json │ │ ├── contour3d_to_2d_surface_2.json │ │ ├── extrusion_contour_test_arc3d_to_2d.json │ │ ├── extrusion_surface_isocurve_trimmed.json │ │ ├── extrusion_surface_test_arc3d_to_2d.json │ │ ├── extrusion_surface_test_linesegment2d_to_3d.json │ │ ├── extrusion_surface_undefined_direction_linesegment.json │ │ ├── extrusionsurface_edge_not_in_normal_plane.json │ │ ├── extrusionsurface_edge_not_in_normal_plane_contour.json │ │ ├── extrusionsurface_fullarc.json │ │ ├── extrusionsurface_fullarc_contour.json │ │ ├── extrusionsurface_fullarcellipse.json │ │ ├── extrusionsurface_fullarcellipse3d_to_2d.json │ │ ├── extrusionsurface_fullarcellipse3d_to_2d_fullarcellipse3d.json │ │ ├── extrusionsurface_fullarcellipse_contour.json │ │ ├── extrusionsurface_periodic.json │ │ ├── extrusionsurface_periodic_contour.json │ │ ├── extrusionsurface_with_small_edge.json │ │ ├── extrusionsurface_with_small_edge_contour.json │ │ ├── linesegment2d_to_linesegment3d.json │ │ ├── linesegment2d_to_self_edge.json │ │ ├── periodical_extrusionsurface.json │ │ ├── periodical_extrusionsurface_bsplinecurve.json │ │ ├── periodical_extrusionsurface_linesegment3d_to_2d.json │ │ ├── periodical_extrusionsurface_linesegment3d_to_2d_contour.json │ │ └── point3d_to_2d_surface.json │ ├── objects_periodical_surface │ │ ├── bsplinecurve_with_theta_discontinuity.json │ │ └── periodicalsurface_with_theta_discontinuity.json │ ├── objects_plane_test │ │ ├── plane_parametric_operation_bug_contour.json │ │ ├── plane_parametric_operation_bug_surface.json │ │ ├── planesurface_arc3d_to_2d.json │ │ ├── planesurface_arc3d_to_2d_contour.json │ │ └── test_plane_plane_intersections301123.json │ ├── objects_revolution_tests │ │ ├── arc3d_to_2d_arc3d.json │ │ ├── arc3d_to_2d_arc3d_2.json │ │ ├── arc3d_to_2d_surface.json │ │ ├── arc3d_to_2d_surface_2.json │ │ ├── linesegment2d_arc3d.json │ │ ├── linesegment2d_rotated_primitive.json │ │ ├── linesegment2d_split_primitive.json │ │ ├── revolution_contour_bug_0.json │ │ ├── revolution_contour_bug_1.json │ │ ├── revolution_surface_bug_0.json │ │ ├── revolution_surface_bug_1.json │ │ ├── revolutionface_contour.json │ │ ├── revolutionface_contour_1.json │ │ ├── revolutionface_contour_2.json │ │ ├── revolutionface_surface.json │ │ ├── revolutionface_surface_1.json │ │ ├── revolutionface_surface_2.json │ │ ├── revolutionsurface_linesegment2d_to_3d.json │ │ ├── revolutionsurface_periodical_linesegment2d_to_3d.json │ │ ├── revolutionsurface_periodical_linesegment2d_to_3d_linesegment2d.json │ │ ├── revolutionsurface_simplify_conical.json │ │ ├── revolutionsurface_simplify_cylindrical.json │ │ ├── revolutionsurface_simplify_spherical.json │ │ ├── revolutionsurface_with_singularity.json │ │ ├── revolutionsurface_with_singularity_1.json │ │ ├── revolutionsurface_with_singularity_contour.json │ │ └── revolutionsurface_with_singularity_contour_1.json │ ├── objects_spherical_tests │ │ ├── arc_with_two_singularities.json │ │ ├── buggy_contour3d_to_2d_contour.json │ │ ├── buggy_contour3d_to_2d_surface.json │ │ ├── contour3d_to_2d_contour_bspline_with_singularity.json │ │ ├── contour3d_to_2d_surface_bspline_with_singularity.json │ │ ├── contour_any_direction_upper_side.json │ │ ├── contour_left_side.json │ │ ├── contour_lower_side.json │ │ ├── contour_rigth_side.json │ │ ├── contour_upper_side.json │ │ ├── repair_primitives2d_periodicity_contour.json │ │ ├── repair_primitives2d_periodicity_surface.json │ │ ├── spericalsurface1_contour0.json │ │ ├── spherical_surface_arc3d_to_2d.json │ │ ├── spherical_surface_arc3d_to_2d_contour3d.json │ │ ├── sphericalsurface1.json │ │ ├── sphericalsurface_contour3d_to_2d_positive_singularity.json │ │ ├── sphericalsurface_contour3d_to_2d_positive_singularity_contour.json │ │ ├── test_2_sphericalsurface_repair_periodicity_contour.json │ │ ├── test_2_sphericalsurface_repair_periodicity_surface.json │ │ ├── test_sphericalsurface_repair_periodicity_contour.json │ │ └── test_sphericalsurface_repair_periodicity_surface.json │ ├── objects_toroidal_tests │ │ ├── buggy_toroidalface_contour.json │ │ ├── buggy_toroidalface_surface.json │ │ ├── degenerated_toroidalsurface.json │ │ ├── degenerated_toroidalsurface_2.json │ │ ├── degenerated_toroidalsurface_2_arc3d_undefined_end.json │ │ ├── degenerated_toroidalsurface_arc3d_undefined_end.json │ │ ├── surface.json │ │ ├── test_toroidal_surface_line_intersections.json │ │ ├── test_toroidal_surface_lineseg_intersections201223.json │ │ ├── test_toroidalsurface_circle_intersections211223_2.json │ │ ├── test_toroidalsurface_plane3d_intersections_211223.json │ │ ├── test_torus_line_intersections.json │ │ ├── test_torus_line_itnersections_08_11_2023.json │ │ ├── test_torus_lineseg141223.json │ │ ├── toroidal_surface_bug_2.json │ │ ├── toroidal_surface_bug_2_contour_0.json │ │ ├── toroidalsurface_bsplinecurve3d_to_2d.json │ │ ├── toroidalsurface_bsplinecurve3d_to_2d_curve.json │ │ ├── toroidalsurface_small_arc3d.json │ │ ├── toroidalsurface_small_arc3d_contour.json │ │ ├── toroidalsurface_small_bsplinecurve.json │ │ └── toroidalsurface_small_bsplinecurve_contour.json │ ├── test_bsplinesurface3d.py │ ├── test_conical_surface3d.py │ ├── test_cylindrical_surface3d.py │ ├── test_extrusion_surface3d.py │ ├── test_periodical_surface.py │ ├── test_plane3d.py │ ├── test_revolutionsurface3d.py │ ├── test_sphericalsurface3d.py │ ├── test_surface2d.py │ └── test_toroidal_surface3d.py ├── test_cloud.py ├── test_core.py ├── test_geometry.py ├── utils │ ├── __init__.py │ └── test_step_reader.py └── wires │ ├── __init__.py │ ├── bspline.json │ ├── contour1_merge_bug.json │ ├── contour2_merge_bug.json │ ├── contour3d_merge_with1.json │ ├── contour3d_merge_with2.json │ ├── contour3d_sharing_primitives1.json │ ├── contour3d_sharing_primitives2.json │ ├── contour_not_ordered.json │ ├── contour_order.json │ ├── contour_ordered.json │ ├── contour_to_offset.json │ ├── contour_to_split.json │ ├── contour_with_repeated_edge_in_contour3d.step │ ├── edge_loop_with_small_edges_and_gaps.json │ ├── expected_contour_merge_with1.json │ ├── expected_contour_merge_with2.json │ ├── sphere_with_singularity.step │ ├── strange_contour_from_step_file.json │ ├── strange_contour_from_step_primitives.json │ ├── test_closedpolygon2d.py │ ├── test_closedpolygon3d.py │ ├── test_contour.py │ ├── test_contour2d.py │ ├── test_contour2d_contours_from_edges_json_files │ ├── 1_test_contours_from_edges.json │ └── 2_test_contours_from_edges2.json │ ├── test_contour2d_cut_by_line.json │ ├── test_contour2d_divide_1.json │ ├── test_contour3d.py │ ├── test_contour_point_belongs.json │ ├── test_edgecollection3d.py │ ├── test_intersection_contour_with.json │ ├── test_merge_connected_contours.json │ └── test_wire.py ├── tutorials ├── ci_tutorials.py ├── tutorial_casing.ipynb └── tutorial_casing.py └── volmdlr ├── __init__.py ├── assets ├── js │ ├── babylon.js │ ├── babylonjs.loaders.min.js │ ├── earcut.min.js │ └── pep.js └── logos │ └── volmdlr.jpg ├── cad_simplification.py ├── cloud.py ├── core.py ├── core_compiled.pxd ├── core_compiled.pyx ├── curves.py ├── discrete_representation.py ├── discrete_representation_compiled.py ├── display.py ├── edges.py ├── faces.py ├── geometry.py ├── gmsh_vm.py ├── grid.py ├── mesh.py ├── models ├── __init__.py ├── bspline_curves.py ├── bspline_surfaces.py ├── casing.py ├── conical_surfaces.py ├── contours.py ├── curves.py ├── cylindrical_surfaces.py ├── edges.py ├── open_rounded_line_segments.py └── workflows │ └── core.py ├── nurbs ├── __init__.py ├── core.pyx ├── fitting.py ├── helpers.pxd ├── helpers.pyx └── operations.py ├── primitives.py ├── primitives2d.py ├── primitives3d.py ├── shells.py ├── step.py ├── stl.py ├── surfaces.py ├── templates.py ├── utils ├── __init__.py ├── common_operations.py ├── intersections.py ├── parametric.py ├── step_reader.py └── step_writer.py └── wires.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | plugins = 3 | Cython.Coverage 4 | source=volmdlr 5 | -------------------------------------------------------------------------------- /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/.drone.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/.github/workflows/install.yml -------------------------------------------------------------------------------- /.github/workflows/test-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/.github/workflows/test-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/.gitignore -------------------------------------------------------------------------------- /.pep8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/.pep8 -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pyenchant_dessia.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/.pyenchant_dessia.dict -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.woodpecker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/.woodpecker.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /code_changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/code_changelog.sh -------------------------------------------------------------------------------- /code_pep8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/code_pep8.sh -------------------------------------------------------------------------------- /code_pydocstyle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/code_pydocstyle.py -------------------------------------------------------------------------------- /code_pylint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/code_pylint.py -------------------------------------------------------------------------------- /code_quality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/code_quality.py -------------------------------------------------------------------------------- /coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/coverage.py -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/source/_static/index-images/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/block.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/block_babylonjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/block_babylonjs.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/bsplineface3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/bsplineface3d.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/closedshell3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/closedshell3d.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/cone.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/conicalface3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/conicalface3d.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/contributor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/contributor.svg -------------------------------------------------------------------------------- /doc/source/_static/index-images/cylinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/cylinder.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/cylindricalface3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/cylindricalface3d.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/distance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/distance.svg -------------------------------------------------------------------------------- /doc/source/_static/index-images/extrudedprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/extrudedprofile.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/extrusionface3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/extrusionface3d.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/geometric-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/geometric-svgrepo-com.svg -------------------------------------------------------------------------------- /doc/source/_static/index-images/getting_started.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/getting_started.svg -------------------------------------------------------------------------------- /doc/source/_static/index-images/hollowcylinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/hollowcylinder.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/intersection-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/intersection-svgrepo-com.svg -------------------------------------------------------------------------------- /doc/source/_static/index-images/intersection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/intersection.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/openshell3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/openshell3d.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/planeface3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/planeface3d.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/point-vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/point-vector.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/revolutionface3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/revolutionface3d.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/revolvedprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/revolvedprofile.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/sphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/sphere.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/sphericalface3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/sphericalface3d.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/step.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/step.svg -------------------------------------------------------------------------------- /doc/source/_static/index-images/stl_file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/stl_file.svg -------------------------------------------------------------------------------- /doc/source/_static/index-images/subtract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/subtract.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/subtract_to_closedshell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/subtract_to_closedshell.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/sweep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/sweep.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/tools-folder-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/tools-folder-svgrepo-com.svg -------------------------------------------------------------------------------- /doc/source/_static/index-images/toroidalface3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/toroidalface3d.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/triangle3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/triangle3d.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/union-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/union-svgrepo-com.svg -------------------------------------------------------------------------------- /doc/source/_static/index-images/union.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/union.png -------------------------------------------------------------------------------- /doc/source/_static/index-images/user_guide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/index-images/user_guide.svg -------------------------------------------------------------------------------- /doc/source/_static/volmdlr-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/volmdlr-dark.svg -------------------------------------------------------------------------------- /doc/source/_static/volmdlr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/volmdlr.css -------------------------------------------------------------------------------- /doc/source/_static/volmdlr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/_static/volmdlr.svg -------------------------------------------------------------------------------- /doc/source/about_dessia.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/about_dessia.rst -------------------------------------------------------------------------------- /doc/source/about_the_package.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/about_the_package.rst -------------------------------------------------------------------------------- /doc/source/authors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/authors.rst -------------------------------------------------------------------------------- /doc/source/boolean_operations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/boolean_operations.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/dealing_with_step.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/dealing_with_step.rst -------------------------------------------------------------------------------- /doc/source/dealing_with_stl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/dealing_with_stl.rst -------------------------------------------------------------------------------- /doc/source/distances.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/distances.rst -------------------------------------------------------------------------------- /doc/source/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/getting_started.rst -------------------------------------------------------------------------------- /doc/source/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/glossary.rst -------------------------------------------------------------------------------- /doc/source/how-tos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/how-tos.rst -------------------------------------------------------------------------------- /doc/source/images/Castest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/images/Castest.jpg -------------------------------------------------------------------------------- /doc/source/images/bspline_surface_split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/images/bspline_surface_split.png -------------------------------------------------------------------------------- /doc/source/images/casing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/images/casing.jpg -------------------------------------------------------------------------------- /doc/source/images/casing_contours.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/images/casing_contours.png -------------------------------------------------------------------------------- /doc/source/images/polygon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/images/polygon.jpg -------------------------------------------------------------------------------- /doc/source/images/sweep.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/images/sweep.jpg -------------------------------------------------------------------------------- /doc/source/images/sweep1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/images/sweep1.jpg -------------------------------------------------------------------------------- /doc/source/images/sweepMPLPlot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/images/sweepMPLPlot.jpg -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/intersections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/intersections.rst -------------------------------------------------------------------------------- /doc/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/modules.rst -------------------------------------------------------------------------------- /doc/source/modules/base_modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/modules/base_modules.rst -------------------------------------------------------------------------------- /doc/source/modules/bspline_compiled.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/modules/bspline_compiled.rst -------------------------------------------------------------------------------- /doc/source/modules/cad_simplification.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/modules/cad_simplification.rst -------------------------------------------------------------------------------- /doc/source/modules/gmsh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/modules/gmsh.rst -------------------------------------------------------------------------------- /doc/source/modules/grid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/modules/grid.rst -------------------------------------------------------------------------------- /doc/source/modules/mesh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/modules/mesh.rst -------------------------------------------------------------------------------- /doc/source/modules/module_cloud.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/modules/module_cloud.rst -------------------------------------------------------------------------------- /doc/source/modules/module_curves.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/modules/module_curves.rst -------------------------------------------------------------------------------- /doc/source/modules/module_display.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/modules/module_display.rst -------------------------------------------------------------------------------- /doc/source/modules/module_edges.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/modules/module_edges.rst -------------------------------------------------------------------------------- /doc/source/modules/module_faces.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/modules/module_faces.rst -------------------------------------------------------------------------------- /doc/source/modules/module_geometry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/modules/module_geometry.rst -------------------------------------------------------------------------------- /doc/source/modules/primitives.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/modules/primitives.rst -------------------------------------------------------------------------------- /doc/source/modules/shells.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/modules/shells.rst -------------------------------------------------------------------------------- /doc/source/modules/step.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/modules/step.rst -------------------------------------------------------------------------------- /doc/source/modules/stl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/modules/stl.rst -------------------------------------------------------------------------------- /doc/source/modules/surfaces.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/modules/surfaces.rst -------------------------------------------------------------------------------- /doc/source/modules/voxelization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/modules/voxelization.rst -------------------------------------------------------------------------------- /doc/source/modules/wires.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/modules/wires.rst -------------------------------------------------------------------------------- /doc/source/road_map_and_current_limitations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/road_map_and_current_limitations.rst -------------------------------------------------------------------------------- /doc/source/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/tutorials.rst -------------------------------------------------------------------------------- /doc/source/useful_operations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/useful_operations.rst -------------------------------------------------------------------------------- /doc/source/user_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/user_guide.rst -------------------------------------------------------------------------------- /doc/source/volmdlr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/volmdlr.rst -------------------------------------------------------------------------------- /doc/source/volmdlr.utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/doc/source/volmdlr.utils.rst -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/package.xml -------------------------------------------------------------------------------- /pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/pre-commit -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/Tutorial/cylinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/Tutorial/cylinder.py -------------------------------------------------------------------------------- /scripts/Tutorial/ellipse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/Tutorial/ellipse.py -------------------------------------------------------------------------------- /scripts/Tutorial/planeFace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/Tutorial/planeFace.py -------------------------------------------------------------------------------- /scripts/Tutorial/tore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/Tutorial/tore.py -------------------------------------------------------------------------------- /scripts/Tutorial/tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/Tutorial/tutorial.py -------------------------------------------------------------------------------- /scripts/Tutorial/tutorial1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/Tutorial/tutorial1.ipynb -------------------------------------------------------------------------------- /scripts/cad_simplification/alpha_wrap_simplify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/cad_simplification/alpha_wrap_simplify.py -------------------------------------------------------------------------------- /scripts/cad_simplification/triangle_decimation_simplify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/cad_simplification/triangle_decimation_simplify.py -------------------------------------------------------------------------------- /scripts/cad_simplification/triple_extrusion_simplify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/cad_simplification/triple_extrusion_simplify.py -------------------------------------------------------------------------------- /scripts/cad_simplification/voxelization_simplify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/cad_simplification/voxelization_simplify.py -------------------------------------------------------------------------------- /scripts/center_mass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/center_mass.py -------------------------------------------------------------------------------- /scripts/ci_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/ci_scripts.py -------------------------------------------------------------------------------- /scripts/cloud/cloud_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/cloud/cloud_debug.py -------------------------------------------------------------------------------- /scripts/cloud/poly3d_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/cloud/poly3d_0.txt -------------------------------------------------------------------------------- /scripts/cloud/poly3d_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/cloud/poly3d_1.txt -------------------------------------------------------------------------------- /scripts/cloud/poly3d_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/cloud/poly3d_2.txt -------------------------------------------------------------------------------- /scripts/cloud/poly3d_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/cloud/poly3d_3.txt -------------------------------------------------------------------------------- /scripts/cloud/poly3d_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/cloud/poly3d_4.txt -------------------------------------------------------------------------------- /scripts/cloud/poly3d_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/cloud/poly3d_5.txt -------------------------------------------------------------------------------- /scripts/cloud/poly3d_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/cloud/poly3d_6.txt -------------------------------------------------------------------------------- /scripts/cloud/poly3d_7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/cloud/poly3d_7.txt -------------------------------------------------------------------------------- /scripts/cloud/poly3d_8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/cloud/poly3d_8.txt -------------------------------------------------------------------------------- /scripts/cloud/poly3d_9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/cloud/poly3d_9.txt -------------------------------------------------------------------------------- /scripts/cloud/sewing_stl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/cloud/sewing_stl.py -------------------------------------------------------------------------------- /scripts/cloud/sewing_two_polygons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/cloud/sewing_two_polygons.py -------------------------------------------------------------------------------- /scripts/collisions/cylinder_points_belongs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/collisions/cylinder_points_belongs.py -------------------------------------------------------------------------------- /scripts/collisions/cylinders_collision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/collisions/cylinders_collision.py -------------------------------------------------------------------------------- /scripts/collisions/cylinders_interference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/collisions/cylinders_interference.py -------------------------------------------------------------------------------- /scripts/collisions/plot_cylinders_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/collisions/plot_cylinders_points.py -------------------------------------------------------------------------------- /scripts/collisions/test_perf_min_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/collisions/test_perf_min_dist.py -------------------------------------------------------------------------------- /scripts/contours/contour_bounding_rectangle_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/contours/contour_bounding_rectangle_test.py -------------------------------------------------------------------------------- /scripts/contours/contour_cut_by_wire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/contours/contour_cut_by_wire.py -------------------------------------------------------------------------------- /scripts/contours/contour_cut_by_wire_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/contours/contour_cut_by_wire_2.py -------------------------------------------------------------------------------- /scripts/contours/contour_extract_primtives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/contours/contour_extract_primtives.py -------------------------------------------------------------------------------- /scripts/contours/contour_merge_with_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/contours/contour_merge_with_1.py -------------------------------------------------------------------------------- /scripts/contours/contour_merge_with_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/contours/contour_merge_with_2.py -------------------------------------------------------------------------------- /scripts/contours/contour_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/contours/contour_split.py -------------------------------------------------------------------------------- /scripts/contours/cut_by_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/contours/cut_by_line.py -------------------------------------------------------------------------------- /scripts/core/bbox_triangle_intersection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/core/bbox_triangle_intersection.py -------------------------------------------------------------------------------- /scripts/core/frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/core/frames.py -------------------------------------------------------------------------------- /scripts/core/grid2d_with_direction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/core/grid2d_with_direction.py -------------------------------------------------------------------------------- /scripts/core/points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/core/points.py -------------------------------------------------------------------------------- /scripts/core/points_axial_symmetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/core/points_axial_symmetry.py -------------------------------------------------------------------------------- /scripts/curves_babylonjs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/curves_babylonjs.py -------------------------------------------------------------------------------- /scripts/discrete_representation/octree/inner_growing_showcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/discrete_representation/octree/inner_growing_showcase.py -------------------------------------------------------------------------------- /scripts/discrete_representation/octree/intersecting_faces_combinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/discrete_representation/octree/intersecting_faces_combinations.py -------------------------------------------------------------------------------- /scripts/discrete_representation/octree/non_homogeneous_showcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/discrete_representation/octree/non_homogeneous_showcase.py -------------------------------------------------------------------------------- /scripts/discrete_representation/pixelization/pixelization_boolean_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/discrete_representation/pixelization/pixelization_boolean_operations.py -------------------------------------------------------------------------------- /scripts/discrete_representation/pixelization/pixelization_filling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/discrete_representation/pixelization/pixelization_filling.py -------------------------------------------------------------------------------- /scripts/discrete_representation/pixelization/pixelization_from_closed_polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/discrete_representation/pixelization/pixelization_from_closed_polygon.py -------------------------------------------------------------------------------- /scripts/discrete_representation/pixelization/pixelization_inverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/discrete_representation/pixelization/pixelization_inverse.py -------------------------------------------------------------------------------- /scripts/discrete_representation/voxelization/compare_memory_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/discrete_representation/voxelization/compare_memory_usage.py -------------------------------------------------------------------------------- /scripts/discrete_representation/voxelization/interference/compare_boolean_union.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/discrete_representation/voxelization/interference/compare_boolean_union.py -------------------------------------------------------------------------------- /scripts/discrete_representation/voxelization/interference/compare_is_intersecting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/discrete_representation/voxelization/interference/compare_is_intersecting.py -------------------------------------------------------------------------------- /scripts/discrete_representation/voxelization/octree/inner_growing_showcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/discrete_representation/voxelization/octree/inner_growing_showcase.py -------------------------------------------------------------------------------- /scripts/discrete_representation/voxelization/octree/intersecting_faces_combinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/discrete_representation/voxelization/octree/intersecting_faces_combinations.py -------------------------------------------------------------------------------- /scripts/discrete_representation/voxelization/octree/non_homogeneous_showcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/discrete_representation/voxelization/octree/non_homogeneous_showcase.py -------------------------------------------------------------------------------- /scripts/discrete_representation/voxelization/step_file_voxelization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/discrete_representation/voxelization/step_file_voxelization.py -------------------------------------------------------------------------------- /scripts/discrete_representation/voxelization/stl_file_voxelization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/discrete_representation/voxelization/stl_file_voxelization.py -------------------------------------------------------------------------------- /scripts/discrete_representation/voxelization/volume_model_matrix_based_voxelization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/discrete_representation/voxelization/volume_model_matrix_based_voxelization.py -------------------------------------------------------------------------------- /scripts/discrete_representation/voxelization/volume_model_point_based_voxelization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/discrete_representation/voxelization/volume_model_point_based_voxelization.py -------------------------------------------------------------------------------- /scripts/discrete_representation/voxelization/voxelization_decimation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/discrete_representation/voxelization/voxelization_decimation.py -------------------------------------------------------------------------------- /scripts/discrete_representation/voxelization/voxelization_filling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/discrete_representation/voxelization/voxelization_filling.py -------------------------------------------------------------------------------- /scripts/discrete_representation/voxelization/voxelization_inverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/discrete_representation/voxelization/voxelization_inverse.py -------------------------------------------------------------------------------- /scripts/discrete_representation/voxelization/voxelization_moving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/discrete_representation/voxelization/voxelization_moving.py -------------------------------------------------------------------------------- /scripts/display/mesh3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/display/mesh3d.py -------------------------------------------------------------------------------- /scripts/display/mesh_decimation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/display/mesh_decimation.py -------------------------------------------------------------------------------- /scripts/distance/arc3D_arc3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/distance/arc3D_arc3D.py -------------------------------------------------------------------------------- /scripts/distance/arc3D_ls3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/distance/arc3D_ls3D.py -------------------------------------------------------------------------------- /scripts/distance/cyl_cyl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/distance/cyl_cyl.py -------------------------------------------------------------------------------- /scripts/distance/cyl_pf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/distance/cyl_pf.py -------------------------------------------------------------------------------- /scripts/distance/ls3D_ls3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/distance/ls3D_ls3D.py -------------------------------------------------------------------------------- /scripts/distance/shell_intersection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/distance/shell_intersection.py -------------------------------------------------------------------------------- /scripts/distance/sweep_sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/distance/sweep_sweep.py -------------------------------------------------------------------------------- /scripts/distance/tore_cyl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/distance/tore_cyl.py -------------------------------------------------------------------------------- /scripts/distance/tore_pf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/distance/tore_pf.py -------------------------------------------------------------------------------- /scripts/distance/tore_tore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/distance/tore_tore.py -------------------------------------------------------------------------------- /scripts/edges/arc2D_linesegment_intersection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/edges/arc2D_linesegment_intersection.py -------------------------------------------------------------------------------- /scripts/edges/arcs2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/edges/arcs2D.py -------------------------------------------------------------------------------- /scripts/edges/arcs3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/edges/arcs3D.py -------------------------------------------------------------------------------- /scripts/edges/areas_moment_cog_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/edges/areas_moment_cog_check.py -------------------------------------------------------------------------------- /scripts/edges/bezier_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/edges/bezier_curve.py -------------------------------------------------------------------------------- /scripts/edges/bspline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/edges/bspline.py -------------------------------------------------------------------------------- /scripts/edges/bspline2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/edges/bspline2.py -------------------------------------------------------------------------------- /scripts/edges/lines2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/edges/lines2d.py -------------------------------------------------------------------------------- /scripts/edges/minimum_distance_points_line3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/edges/minimum_distance_points_line3D.py -------------------------------------------------------------------------------- /scripts/edges/minimum_distance_points_line3D_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/edges/minimum_distance_points_line3D_2.py -------------------------------------------------------------------------------- /scripts/edges/test_bspline3d_revolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/edges/test_bspline3d_revolution.py -------------------------------------------------------------------------------- /scripts/faces/BSplineSurface/bspline_curves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/BSplineSurface/bspline_curves.py -------------------------------------------------------------------------------- /scripts/faces/BSplineSurface/bspline_curves_point_belongs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/BSplineSurface/bspline_curves_point_belongs.py -------------------------------------------------------------------------------- /scripts/faces/BSplineSurface/bspline_surface_1.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/BSplineSurface/bspline_surface_1.step -------------------------------------------------------------------------------- /scripts/faces/BSplineSurface/bspline_surface_2.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/BSplineSurface/bspline_surface_2.step -------------------------------------------------------------------------------- /scripts/faces/BSplineSurface/bspline_surface_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/BSplineSurface/bspline_surface_definition.py -------------------------------------------------------------------------------- /scripts/faces/BSplineSurface/bspline_surface_interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/BSplineSurface/bspline_surface_interpolation.py -------------------------------------------------------------------------------- /scripts/faces/BSplineSurface/bspline_surface_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/BSplineSurface/bspline_surface_merge.py -------------------------------------------------------------------------------- /scripts/faces/BSplineSurface/bspline_surface_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/BSplineSurface/bspline_surface_split.py -------------------------------------------------------------------------------- /scripts/faces/BSplineSurface/bspline_surface_to_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/BSplineSurface/bspline_surface_to_2d.py -------------------------------------------------------------------------------- /scripts/faces/BSplineSurface/bspline_surfaces_grid3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/BSplineSurface/bspline_surfaces_grid3d.py -------------------------------------------------------------------------------- /scripts/faces/BSplineSurface/cylindrical_surface_1.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/BSplineSurface/cylindrical_surface_1.step -------------------------------------------------------------------------------- /scripts/faces/BSplineSurface/from_cylindrical_to_bspline_surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/BSplineSurface/from_cylindrical_to_bspline_surface.py -------------------------------------------------------------------------------- /scripts/faces/bezier_surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/bezier_surface.py -------------------------------------------------------------------------------- /scripts/faces/blocks_set_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/blocks_set_operations.py -------------------------------------------------------------------------------- /scripts/faces/bspline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/bspline.py -------------------------------------------------------------------------------- /scripts/faces/bspline_bark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/bspline_bark.py -------------------------------------------------------------------------------- /scripts/faces/bsplineface_with_inner_contours.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/bsplineface_with_inner_contours.stp -------------------------------------------------------------------------------- /scripts/faces/conical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/conical.py -------------------------------------------------------------------------------- /scripts/faces/cylindrical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/cylindrical.py -------------------------------------------------------------------------------- /scripts/faces/export_to_step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/export_to_step.py -------------------------------------------------------------------------------- /scripts/faces/faces_with_inner_contours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/faces_with_inner_contours.py -------------------------------------------------------------------------------- /scripts/faces/homothetie_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/homothetie_test.py -------------------------------------------------------------------------------- /scripts/faces/planar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/planar.py -------------------------------------------------------------------------------- /scripts/faces/planeface_with_inner_contour.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/planeface_with_inner_contour.step -------------------------------------------------------------------------------- /scripts/faces/ruled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/ruled.py -------------------------------------------------------------------------------- /scripts/faces/set_operations_complex_test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/set_operations_complex_test1.py -------------------------------------------------------------------------------- /scripts/faces/spherical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/spherical.py -------------------------------------------------------------------------------- /scripts/faces/surface2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/surface2d.py -------------------------------------------------------------------------------- /scripts/faces/toroidal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/toroidal.py -------------------------------------------------------------------------------- /scripts/faces/triangle3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/triangle3d.py -------------------------------------------------------------------------------- /scripts/faces/union.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/faces/union.py -------------------------------------------------------------------------------- /scripts/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/geometry.py -------------------------------------------------------------------------------- /scripts/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/grid.py -------------------------------------------------------------------------------- /scripts/mesh/block.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/mesh/block.msh -------------------------------------------------------------------------------- /scripts/mesh/geo_file_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/mesh/geo_file_1.py -------------------------------------------------------------------------------- /scripts/mesh/geo_file_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/mesh/geo_file_2.py -------------------------------------------------------------------------------- /scripts/mesh/geo_file_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/mesh/geo_file_3.py -------------------------------------------------------------------------------- /scripts/mesh/mesh2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/mesh/mesh2D.py -------------------------------------------------------------------------------- /scripts/mesh/mesh_quadratic.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/mesh/mesh_quadratic.msh -------------------------------------------------------------------------------- /scripts/mesh/mesher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/mesh/mesher.py -------------------------------------------------------------------------------- /scripts/mesh/model.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/mesh/model.msh -------------------------------------------------------------------------------- /scripts/mesh/read_msh_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/mesh/read_msh_file.py -------------------------------------------------------------------------------- /scripts/mesh/to_be_meshed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/mesh/to_be_meshed.py -------------------------------------------------------------------------------- /scripts/moving_volume_models/moving_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/moving_volume_models/moving_block.py -------------------------------------------------------------------------------- /scripts/primitives/block3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/primitives/block3d.py -------------------------------------------------------------------------------- /scripts/primitives/bspline_sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/primitives/bspline_sweep.py -------------------------------------------------------------------------------- /scripts/primitives/cone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/primitives/cone.py -------------------------------------------------------------------------------- /scripts/primitives/cylinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/primitives/cylinder.py -------------------------------------------------------------------------------- /scripts/primitives/extrusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/primitives/extrusion.py -------------------------------------------------------------------------------- /scripts/primitives/extrusion2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/primitives/extrusion2.py -------------------------------------------------------------------------------- /scripts/primitives/extrusion3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/primitives/extrusion3.py -------------------------------------------------------------------------------- /scripts/primitives/extrusion4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/primitives/extrusion4.py -------------------------------------------------------------------------------- /scripts/primitives/extrusion_bspline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/primitives/extrusion_bspline.py -------------------------------------------------------------------------------- /scripts/primitives/hollow_cylinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/primitives/hollow_cylinder.py -------------------------------------------------------------------------------- /scripts/primitives/revolved_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/primitives/revolved_profile.py -------------------------------------------------------------------------------- /scripts/primitives/sphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/primitives/sphere.py -------------------------------------------------------------------------------- /scripts/primitives/sphere_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/primitives/sphere_points.py -------------------------------------------------------------------------------- /scripts/primitives/sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/primitives/sweep.py -------------------------------------------------------------------------------- /scripts/shells/decimation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/shells/decimation.py -------------------------------------------------------------------------------- /scripts/shells/merge_display_triangle_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/shells/merge_display_triangle_shell.py -------------------------------------------------------------------------------- /scripts/shells/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/shells/operations.py -------------------------------------------------------------------------------- /scripts/shells/shells_subtract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/shells/shells_subtract.py -------------------------------------------------------------------------------- /scripts/shells/triangle_shell_mesh_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/shells/triangle_shell_mesh_data.py -------------------------------------------------------------------------------- /scripts/showcases/casing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/showcases/casing.py -------------------------------------------------------------------------------- /scripts/showcases/gear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/showcases/gear.py -------------------------------------------------------------------------------- /scripts/showcases/logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/showcases/logo.py -------------------------------------------------------------------------------- /scripts/showcases/random_casing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/showcases/random_casing.py -------------------------------------------------------------------------------- /scripts/showcases/simple_shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/showcases/simple_shapes.py -------------------------------------------------------------------------------- /scripts/showcases/vessel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/showcases/vessel.py -------------------------------------------------------------------------------- /scripts/step/2_bspline_faces.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/2_bspline_faces.stp -------------------------------------------------------------------------------- /scripts/step/4_bspline_faces.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/4_bspline_faces.step -------------------------------------------------------------------------------- /scripts/step/STEP_test1.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/STEP_test1.stp -------------------------------------------------------------------------------- /scripts/step/aircraft_engine.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/aircraft_engine.step -------------------------------------------------------------------------------- /scripts/step/assembly.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/assembly.step -------------------------------------------------------------------------------- /scripts/step/block.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/block.step -------------------------------------------------------------------------------- /scripts/step/bracket1.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/bracket1.step -------------------------------------------------------------------------------- /scripts/step/bracket2.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/bracket2.step -------------------------------------------------------------------------------- /scripts/step/bracket3.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/bracket3.step -------------------------------------------------------------------------------- /scripts/step/casing.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/casing.step -------------------------------------------------------------------------------- /scripts/step/cheese.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/cheese.step -------------------------------------------------------------------------------- /scripts/step/compressor_simplified.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/compressor_simplified.step -------------------------------------------------------------------------------- /scripts/step/cone1.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/cone1.step -------------------------------------------------------------------------------- /scripts/step/cone2.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/cone2.step -------------------------------------------------------------------------------- /scripts/step/cylinder.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/cylinder.step -------------------------------------------------------------------------------- /scripts/step/ellipse.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/ellipse.step -------------------------------------------------------------------------------- /scripts/step/engine.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/engine.step -------------------------------------------------------------------------------- /scripts/step/iso4162M16x55.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/iso4162M16x55.step -------------------------------------------------------------------------------- /scripts/step/read_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/read_steps.py -------------------------------------------------------------------------------- /scripts/step/read_test1.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/read_test1.STEP -------------------------------------------------------------------------------- /scripts/step/read_test3.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/read_test3.STEP -------------------------------------------------------------------------------- /scripts/step/shell0.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/shell0.step -------------------------------------------------------------------------------- /scripts/step/spanners.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/spanners.step -------------------------------------------------------------------------------- /scripts/step/sphere1.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/sphere1.step -------------------------------------------------------------------------------- /scripts/step/sphere2.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/sphere2.step -------------------------------------------------------------------------------- /scripts/step/sphere3.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/sphere3.step -------------------------------------------------------------------------------- /scripts/step/strange_gasket.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/strange_gasket.step -------------------------------------------------------------------------------- /scripts/step/tore1.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/tore1.step -------------------------------------------------------------------------------- /scripts/step/tore2.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/tore2.step -------------------------------------------------------------------------------- /scripts/step/tormach_wrench.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/tormach_wrench.step -------------------------------------------------------------------------------- /scripts/step/usecase_inner_contour.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/usecase_inner_contour.STEP -------------------------------------------------------------------------------- /scripts/step/workflow_generic_step_reading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/step/workflow_generic_step_reading.py -------------------------------------------------------------------------------- /scripts/stl/alphashape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/stl/alphashape.py -------------------------------------------------------------------------------- /scripts/stl/cube_ascii.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/stl/cube_ascii.stl -------------------------------------------------------------------------------- /scripts/stl/double_space.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/stl/double_space.stl -------------------------------------------------------------------------------- /scripts/stl/read_stls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/stl/read_stls.py -------------------------------------------------------------------------------- /scripts/stl/simple.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/stl/simple.stl -------------------------------------------------------------------------------- /scripts/stl/workflow_generic_stl_reading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/stl/workflow_generic_stl_reading.py -------------------------------------------------------------------------------- /scripts/wires/areas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/wires/areas.py -------------------------------------------------------------------------------- /scripts/wires/axial_symmetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/wires/axial_symmetry.py -------------------------------------------------------------------------------- /scripts/wires/contour_from_point_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/wires/contour_from_point_cloud.py -------------------------------------------------------------------------------- /scripts/wires/convexhull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/wires/convexhull.py -------------------------------------------------------------------------------- /scripts/wires/polygon2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/wires/polygon2D.py -------------------------------------------------------------------------------- /scripts/wires/polygon3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/wires/polygon3d.py -------------------------------------------------------------------------------- /scripts/wires/rolling_circle_in_polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/wires/rolling_circle_in_polygon.py -------------------------------------------------------------------------------- /scripts/wires/roundedlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/wires/roundedlines.py -------------------------------------------------------------------------------- /scripts/wires/simplify_polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/wires/simplify_polygon.py -------------------------------------------------------------------------------- /scripts/wires/triangle2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/scripts/wires/triangle2D.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cloud/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cloud/test_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/cloud/test_cloud.py -------------------------------------------------------------------------------- /tests/common_operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/common_operations/test_common_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/common_operations/test_common_operations.py -------------------------------------------------------------------------------- /tests/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/compound_export.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/core/compound_export.stp -------------------------------------------------------------------------------- /tests/core/compound_geometric_set.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/core/compound_geometric_set.step -------------------------------------------------------------------------------- /tests/core/test_assembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/core/test_assembly.py -------------------------------------------------------------------------------- /tests/core/test_bounding_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/core/test_bounding_box.py -------------------------------------------------------------------------------- /tests/core/test_bounding_rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/core/test_bounding_rectangle.py -------------------------------------------------------------------------------- /tests/core/test_composite_primitive3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/core/test_composite_primitive3d.py -------------------------------------------------------------------------------- /tests/core/test_compound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/core/test_compound.py -------------------------------------------------------------------------------- /tests/core/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/core/test_functions.py -------------------------------------------------------------------------------- /tests/core/test_volume_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/core/test_volume_model.py -------------------------------------------------------------------------------- /tests/core_compiled/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core_compiled/test_basis2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/core_compiled/test_basis2d.py -------------------------------------------------------------------------------- /tests/core_compiled/test_basis3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/core_compiled/test_basis3d.py -------------------------------------------------------------------------------- /tests/core_compiled/test_frame2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/core_compiled/test_frame2d.py -------------------------------------------------------------------------------- /tests/core_compiled/test_frame3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/core_compiled/test_frame3d.py -------------------------------------------------------------------------------- /tests/core_compiled/test_point2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/core_compiled/test_point2d.py -------------------------------------------------------------------------------- /tests/core_compiled/test_point3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/core_compiled/test_point3d.py -------------------------------------------------------------------------------- /tests/core_compiled/test_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/core_compiled/test_vector.py -------------------------------------------------------------------------------- /tests/core_compiled/test_vector2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/core_compiled/test_vector2d.py -------------------------------------------------------------------------------- /tests/core_compiled/test_vector3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/core_compiled/test_vector3d.py -------------------------------------------------------------------------------- /tests/curves/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/curves/bspline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/curves/bspline.json -------------------------------------------------------------------------------- /tests/curves/circle2d_objects/test_circle2d_line2d_intersections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/curves/circle2d_objects/test_circle2d_line2d_intersections.json -------------------------------------------------------------------------------- /tests/curves/circle3D_objects/test_circle_linesegment_intersections221223.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/curves/circle3D_objects/test_circle_linesegment_intersections221223.json -------------------------------------------------------------------------------- /tests/curves/test_circle2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/curves/test_circle2d.py -------------------------------------------------------------------------------- /tests/curves/test_circle3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/curves/test_circle3d.py -------------------------------------------------------------------------------- /tests/curves/test_ellipse2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/curves/test_ellipse2d.py -------------------------------------------------------------------------------- /tests/curves/test_ellipse3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/curves/test_ellipse3d.py -------------------------------------------------------------------------------- /tests/curves/test_hyperbola.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/curves/test_hyperbola.py -------------------------------------------------------------------------------- /tests/curves/test_line2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/curves/test_line2d.py -------------------------------------------------------------------------------- /tests/curves/test_line3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/curves/test_line3d.py -------------------------------------------------------------------------------- /tests/curves/test_parabola.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/curves/test_parabola.py -------------------------------------------------------------------------------- /tests/discrete_representation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/discrete_representation/stanford_bunny.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/discrete_representation/stanford_bunny.json -------------------------------------------------------------------------------- /tests/discrete_representation/test_discrete_representation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/discrete_representation/test_discrete_representation.py -------------------------------------------------------------------------------- /tests/discrete_representation/test_matrix_based_voxelization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/discrete_representation/test_matrix_based_voxelization.py -------------------------------------------------------------------------------- /tests/discrete_representation/test_octree_based_voxelization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/discrete_representation/test_octree_based_voxelization.py -------------------------------------------------------------------------------- /tests/discrete_representation/test_pixelization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/discrete_representation/test_pixelization.py -------------------------------------------------------------------------------- /tests/discrete_representation/test_point_based_voxelization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/discrete_representation/test_point_based_voxelization.py -------------------------------------------------------------------------------- /tests/display/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/display/models/simple.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/display/models/simple.stl -------------------------------------------------------------------------------- /tests/display/test_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/display/test_display.py -------------------------------------------------------------------------------- /tests/display/test_mesh3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/display/test_mesh3d.py -------------------------------------------------------------------------------- /tests/edges/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/edges/arc3d_split_between_two_points.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/arc3d_split_between_two_points.json -------------------------------------------------------------------------------- /tests/edges/arc_objects/arc2d_bug_point_belongs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/arc_objects/arc2d_bug_point_belongs.json -------------------------------------------------------------------------------- /tests/edges/arc_objects/arc2d_point_belongs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/arc_objects/arc2d_point_belongs.json -------------------------------------------------------------------------------- /tests/edges/arc_objects/arc2d_rotation_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/arc_objects/arc2d_rotation_test.json -------------------------------------------------------------------------------- /tests/edges/arc_objects/arc3d_test_point_distance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/arc_objects/arc3d_test_point_distance.json -------------------------------------------------------------------------------- /tests/edges/arc_objects/arc_abscissa_bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/arc_objects/arc_abscissa_bug.json -------------------------------------------------------------------------------- /tests/edges/arcellipse_objects/ellipse2d_point_at_abscissa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/arcellipse_objects/ellipse2d_point_at_abscissa.json -------------------------------------------------------------------------------- /tests/edges/bsplinecurve_objects/bg_bspline5_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/bsplinecurve_objects/bg_bspline5_.json -------------------------------------------------------------------------------- /tests/edges/bsplinecurve_objects/bounding_box_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/bsplinecurve_objects/bounding_box_contour.json -------------------------------------------------------------------------------- /tests/edges/bsplinecurve_objects/bounding_box_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/bsplinecurve_objects/bounding_box_test.json -------------------------------------------------------------------------------- /tests/edges/bsplinecurve_objects/bspline_buggy_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/bsplinecurve_objects/bspline_buggy_trim.json -------------------------------------------------------------------------------- /tests/edges/bsplinecurve_objects/bspline_curve1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/bsplinecurve_objects/bspline_curve1.json -------------------------------------------------------------------------------- /tests/edges/bsplinecurve_objects/bspline_curve2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/bsplinecurve_objects/bspline_curve2.json -------------------------------------------------------------------------------- /tests/edges/bsplinecurve_objects/bsplinecurve2d_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/bsplinecurve_objects/bsplinecurve2d_1.json -------------------------------------------------------------------------------- /tests/edges/bsplinecurve_objects/bsplinecurve3d_abscissa_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/bsplinecurve_objects/bsplinecurve3d_abscissa_test.json -------------------------------------------------------------------------------- /tests/edges/bsplinecurve_objects/bsplinecurve3d_split_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/bsplinecurve_objects/bsplinecurve3d_split_test.json -------------------------------------------------------------------------------- /tests/edges/bsplinecurve_objects/bsplinecurve_close_points_trim_bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/bsplinecurve_objects/bsplinecurve_close_points_trim_bug.json -------------------------------------------------------------------------------- /tests/edges/bsplinecurve_objects/bsplinecurve_fullarc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/bsplinecurve_objects/bsplinecurve_fullarc.json -------------------------------------------------------------------------------- /tests/edges/bsplinecurve_objects/bsplinecurve_periodic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/bsplinecurve_objects/bsplinecurve_periodic.json -------------------------------------------------------------------------------- /tests/edges/bsplinecurve_objects/bsplinecurve_split_bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/bsplinecurve_objects/bsplinecurve_split_bug.json -------------------------------------------------------------------------------- /tests/edges/bsplinecurve_objects/bsplinecurve_split_bug_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/bsplinecurve_objects/bsplinecurve_split_bug_2.json -------------------------------------------------------------------------------- /tests/edges/bsplinecurve_objects/bsplinecurve_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/bsplinecurve_objects/bsplinecurve_trim.json -------------------------------------------------------------------------------- /tests/edges/bsplinecurve_objects/bsplinecurve_trim_with_close_to_bound_points.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/bsplinecurve_objects/bsplinecurve_trim_with_close_to_bound_points.json -------------------------------------------------------------------------------- /tests/edges/bsplinecurve_objects/periodic_bsplinecurve_from_step_test_object_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/bsplinecurve_objects/periodic_bsplinecurve_from_step_test_object_dict.json -------------------------------------------------------------------------------- /tests/edges/bsplinecurve_objects/spiral_bsplinecurve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/bsplinecurve_objects/spiral_bsplinecurve.json -------------------------------------------------------------------------------- /tests/edges/bsplinecurve_objects/test_bspline_local_discretizations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/bsplinecurve_objects/test_bspline_local_discretizations.json -------------------------------------------------------------------------------- /tests/edges/bsplinecurve_objects/test_bspline_trim271123.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/bsplinecurve_objects/test_bspline_trim271123.json -------------------------------------------------------------------------------- /tests/edges/bsplinecurve_objects/test_periodic_bspline_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/bsplinecurve_objects/test_periodic_bspline_trim.json -------------------------------------------------------------------------------- /tests/edges/fullarcellipse_objects/ellipse2d_point_belongs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/fullarcellipse_objects/ellipse2d_point_belongs.json -------------------------------------------------------------------------------- /tests/edges/fullarcellipse_objects/fullarcellipse3d_discretization_points.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/fullarcellipse_objects/fullarcellipse3d_discretization_points.json -------------------------------------------------------------------------------- /tests/edges/fullarcellipse_objects/fullarcellipse3d_line_intersections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/fullarcellipse_objects/fullarcellipse3d_line_intersections.json -------------------------------------------------------------------------------- /tests/edges/fullarcellipse_objects/fullarcellipse3d_line_intersections_line.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/fullarcellipse_objects/fullarcellipse3d_line_intersections_line.json -------------------------------------------------------------------------------- /tests/edges/test_arc2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/test_arc2d.py -------------------------------------------------------------------------------- /tests/edges/test_arc3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/test_arc3d.py -------------------------------------------------------------------------------- /tests/edges/test_arcellipse2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/test_arcellipse2d.py -------------------------------------------------------------------------------- /tests/edges/test_arcellipse3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/test_arcellipse3d.py -------------------------------------------------------------------------------- /tests/edges/test_beziercurve2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/test_beziercurve2d.py -------------------------------------------------------------------------------- /tests/edges/test_beziercurve3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/test_beziercurve3d.py -------------------------------------------------------------------------------- /tests/edges/test_bsplinecurve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/test_bsplinecurve.py -------------------------------------------------------------------------------- /tests/edges/test_bsplinecurve2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/test_bsplinecurve2d.py -------------------------------------------------------------------------------- /tests/edges/test_bsplinecurve3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/test_bsplinecurve3d.py -------------------------------------------------------------------------------- /tests/edges/test_distances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/test_distances.py -------------------------------------------------------------------------------- /tests/edges/test_edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/test_edge.py -------------------------------------------------------------------------------- /tests/edges/test_edge_from_step.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/test_edge_from_step.stp -------------------------------------------------------------------------------- /tests/edges/test_edge_intersections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/test_edge_intersections.py -------------------------------------------------------------------------------- /tests/edges/test_fullarc2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/test_fullarc2d.py -------------------------------------------------------------------------------- /tests/edges/test_fullarc3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/test_fullarc3d.py -------------------------------------------------------------------------------- /tests/edges/test_fullarcellipse2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/test_fullarcellipse2d.py -------------------------------------------------------------------------------- /tests/edges/test_fullarcellipse3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/test_fullarcellipse3d.py -------------------------------------------------------------------------------- /tests/edges/test_linesegment2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/test_linesegment2d.py -------------------------------------------------------------------------------- /tests/edges/test_linesegment3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/edges/test_linesegment3d.py -------------------------------------------------------------------------------- /tests/faces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bspline_contour_0_openned_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bspline_contour_0_openned_contour.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bspline_contour_1_openned_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bspline_contour_1_openned_contour.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bspline_face1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bspline_face1.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bspline_surface_openned_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bspline_surface_openned_contour.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_2d_interpolation_bug_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_2d_interpolation_bug_contour.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_2d_interpolation_bug_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_2d_interpolation_bug_surface.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_bbox_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_bbox_test.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_closed_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_closed_contour.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_closed_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_closed_surface.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_closed_surface_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_closed_surface_2.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_closed_surface_2_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_closed_surface_2_contour.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_closed_surface_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_closed_surface_3.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_closed_surface_3_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_closed_surface_3_contour.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_closed_surface_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_closed_surface_4.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_closed_surface_4_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_closed_surface_4_contour.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_closedsurface_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_closedsurface_contour.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_closedsurface_contour_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_closedsurface_contour_2.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_closedsurface_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_closedsurface_surface.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_closedsurface_surface_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_closedsurface_surface_2.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_grid_search_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_grid_search_contour.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_grid_search_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_grid_search_surface.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_periodical_spiral_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_periodical_spiral_contour.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_periodical_spiral_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_periodical_spiral_surface.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_pipe_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_pipe_contour.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_pipe_contour_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_pipe_contour_2.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_pipe_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_pipe_surface.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_pipe_surface_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_pipe_surface_2.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_spiral_bug_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_spiral_bug_contour.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/bsplineface_spiral_bug_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/bsplineface_spiral_bug_surface.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/small_bsplineface_closed_surface_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/small_bsplineface_closed_surface_contour.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/small_bsplineface_closed_surface_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/small_bsplineface_closed_surface_surface.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/spiral_bsplineface_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/spiral_bsplineface_contour.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/spiral_bsplineface_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/spiral_bsplineface_surface.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/test_neutral_fiber.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/test_neutral_fiber.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/test_neutral_fiber_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/test_neutral_fiber_2.json -------------------------------------------------------------------------------- /tests/faces/objects_bspline_test/test_neutral_fiber_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_bspline_test/test_neutral_fiber_3.json -------------------------------------------------------------------------------- /tests/faces/objects_conical_tests/conical_contour_with_singularity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_conical_tests/conical_contour_with_singularity.json -------------------------------------------------------------------------------- /tests/faces/objects_conical_tests/conical_surface1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_conical_tests/conical_surface1.json -------------------------------------------------------------------------------- /tests/faces/objects_conical_tests/conical_surface3d_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_conical_tests/conical_surface3d_1.json -------------------------------------------------------------------------------- /tests/faces/objects_conical_tests/conical_surface3d_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_conical_tests/conical_surface3d_2.json -------------------------------------------------------------------------------- /tests/faces/objects_conical_tests/conical_surface_with_singularity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_conical_tests/conical_surface_with_singularity.json -------------------------------------------------------------------------------- /tests/faces/objects_conical_tests/conicalface_segfault_with_tri_opt_set_to_pq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_conical_tests/conicalface_segfault_with_tri_opt_set_to_pq.json -------------------------------------------------------------------------------- /tests/faces/objects_conical_tests/conicalsurface_openned_contours.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_conical_tests/conicalsurface_openned_contours.json -------------------------------------------------------------------------------- /tests/faces/objects_conical_tests/conicalsurface_openned_contours_contour_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_conical_tests/conicalsurface_openned_contours_contour_0.json -------------------------------------------------------------------------------- /tests/faces/objects_conical_tests/conicalsurface_openned_contours_contour_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_conical_tests/conicalsurface_openned_contours_contour_1.json -------------------------------------------------------------------------------- /tests/faces/objects_conical_tests/face_contour1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_conical_tests/face_contour1.json -------------------------------------------------------------------------------- /tests/faces/objects_conical_tests/face_contour2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_conical_tests/face_contour2.json -------------------------------------------------------------------------------- /tests/faces/objects_conical_tests/face_contour3_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_conical_tests/face_contour3_.json -------------------------------------------------------------------------------- /tests/faces/objects_conical_tests/face_contour4_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_conical_tests/face_contour4_.json -------------------------------------------------------------------------------- /tests/faces/objects_conical_tests/face_from_contours1_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_conical_tests/face_from_contours1_0.json -------------------------------------------------------------------------------- /tests/faces/objects_conical_tests/face_from_contours1_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_conical_tests/face_from_contours1_1.json -------------------------------------------------------------------------------- /tests/faces/objects_conical_tests/test_conicalface_normal_at_point.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_conical_tests/test_conicalface_normal_at_point.json -------------------------------------------------------------------------------- /tests/faces/objects_cylindrical_tests/contour3d__openned_one_contour_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_cylindrical_tests/contour3d__openned_one_contour_0.json -------------------------------------------------------------------------------- /tests/faces/objects_cylindrical_tests/contour3d__openned_one_contour_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_cylindrical_tests/contour3d__openned_one_contour_1.json -------------------------------------------------------------------------------- /tests/faces/objects_cylindrical_tests/contour_1_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_cylindrical_tests/contour_1_0.json -------------------------------------------------------------------------------- /tests/faces/objects_cylindrical_tests/contour_1_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_cylindrical_tests/contour_1_1.json -------------------------------------------------------------------------------- /tests/faces/objects_cylindrical_tests/cylindrical_contour_0_repair_contour2d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_cylindrical_tests/cylindrical_contour_0_repair_contour2d.json -------------------------------------------------------------------------------- /tests/faces/objects_cylindrical_tests/cylindrical_contour_1_repair_contour2d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_cylindrical_tests/cylindrical_contour_1_repair_contour2d.json -------------------------------------------------------------------------------- /tests/faces/objects_cylindrical_tests/cylindrical_contour_floating_point_error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_cylindrical_tests/cylindrical_contour_floating_point_error.json -------------------------------------------------------------------------------- /tests/faces/objects_cylindrical_tests/cylindrical_surface_floating_point_error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_cylindrical_tests/cylindrical_surface_floating_point_error.json -------------------------------------------------------------------------------- /tests/faces/objects_cylindrical_tests/cylindrical_surface_repair_contour2d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_cylindrical_tests/cylindrical_surface_repair_contour2d.json -------------------------------------------------------------------------------- /tests/faces/objects_cylindrical_tests/plane_face_cylindrical_face_intersec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_cylindrical_tests/plane_face_cylindrical_face_intersec.json -------------------------------------------------------------------------------- /tests/faces/objects_cylindrical_tests/surface3d_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_cylindrical_tests/surface3d_1.json -------------------------------------------------------------------------------- /tests/faces/objects_cylindrical_tests/surface_openned_one_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_cylindrical_tests/surface_openned_one_contour.json -------------------------------------------------------------------------------- /tests/faces/objects_cylindrical_tests/test_buggy_split_by_plane12_07_2023.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_cylindrical_tests/test_buggy_split_by_plane12_07_2023.json -------------------------------------------------------------------------------- /tests/faces/objects_cylindrical_tests/test_cylindricalface_face_inside.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_cylindrical_tests/test_cylindricalface_face_inside.json -------------------------------------------------------------------------------- /tests/faces/objects_extrusion_tests/extrusionface_export_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_extrusion_tests/extrusionface_export_test.json -------------------------------------------------------------------------------- /tests/faces/objects_extrusion_tests/extrusionface_with_ellipse_test_boundingbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_extrusion_tests/extrusionface_with_ellipse_test_boundingbox.json -------------------------------------------------------------------------------- /tests/faces/objects_extrusion_tests/extrusionsurface_fullarcellipse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_extrusion_tests/extrusionsurface_fullarcellipse.json -------------------------------------------------------------------------------- /tests/faces/objects_extrusion_tests/extrusionsurface_fullarcellipse_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_extrusion_tests/extrusionsurface_fullarcellipse_contour.json -------------------------------------------------------------------------------- /tests/faces/objects_extrusion_tests/extrusionsurface_inner_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_extrusion_tests/extrusionsurface_inner_contour.json -------------------------------------------------------------------------------- /tests/faces/objects_extrusion_tests/extrusionsurface_inner_contour_contour_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_extrusion_tests/extrusionsurface_inner_contour_contour_0.json -------------------------------------------------------------------------------- /tests/faces/objects_extrusion_tests/extrusionsurface_inner_contour_contour_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_extrusion_tests/extrusionsurface_inner_contour_contour_1.json -------------------------------------------------------------------------------- /tests/faces/objects_planeface_tests/face_to_cut_the_one_with_3holes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_planeface_tests/face_to_cut_the_one_with_3holes.json -------------------------------------------------------------------------------- /tests/faces/objects_planeface_tests/face_tobe_divided.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_planeface_tests/face_tobe_divided.json -------------------------------------------------------------------------------- /tests/faces/objects_planeface_tests/face_with_3holes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_planeface_tests/face_with_3holes.json -------------------------------------------------------------------------------- /tests/faces/objects_planeface_tests/plane_face_cylindrical_face_intersec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_planeface_tests/plane_face_cylindrical_face_intersec.json -------------------------------------------------------------------------------- /tests/faces/objects_planeface_tests/test_face3_face_inside.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_planeface_tests/test_face3_face_inside.json -------------------------------------------------------------------------------- /tests/faces/objects_planeface_tests/test_face_inside.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_planeface_tests/test_face_inside.json -------------------------------------------------------------------------------- /tests/faces/objects_planeface_tests/test_planef_inters291123.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_planeface_tests/test_planef_inters291123.json -------------------------------------------------------------------------------- /tests/faces/objects_planeface_tests/test_planeface_intersections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_planeface_tests/test_planeface_intersections.json -------------------------------------------------------------------------------- /tests/faces/objects_planeface_tests/test_planeface_point_belongs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_planeface_tests/test_planeface_point_belongs.json -------------------------------------------------------------------------------- /tests/faces/objects_planeface_tests/test_set_operations_new_faces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_planeface_tests/test_set_operations_new_faces.json -------------------------------------------------------------------------------- /tests/faces/objects_revolution_tests/revolutionface_export_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_revolution_tests/revolutionface_export_test.json -------------------------------------------------------------------------------- /tests/faces/objects_spherical_test/sphericalface_disconnected_contours_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_spherical_test/sphericalface_disconnected_contours_surface.json -------------------------------------------------------------------------------- /tests/faces/objects_spherical_test/sphericalsurface_contour3d_to_2d_bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_spherical_test/sphericalsurface_contour3d_to_2d_bug.json -------------------------------------------------------------------------------- /tests/faces/objects_spherical_test/sphericalsurface_contour3d_to_2d_bug_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_spherical_test/sphericalsurface_contour3d_to_2d_bug_contour.json -------------------------------------------------------------------------------- /tests/faces/objects_toroidal_tests/contour_4_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_toroidal_tests/contour_4_0.json -------------------------------------------------------------------------------- /tests/faces/objects_toroidal_tests/face_with_inner_contour_contour0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_toroidal_tests/face_with_inner_contour_contour0.json -------------------------------------------------------------------------------- /tests/faces/objects_toroidal_tests/face_with_inner_contour_contour1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_toroidal_tests/face_with_inner_contour_contour1.json -------------------------------------------------------------------------------- /tests/faces/objects_toroidal_tests/face_with_inner_contour_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_toroidal_tests/face_with_inner_contour_surface.json -------------------------------------------------------------------------------- /tests/faces/objects_toroidal_tests/repair_inner_contour_periodicity_contour_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_toroidal_tests/repair_inner_contour_periodicity_contour_0.json -------------------------------------------------------------------------------- /tests/faces/objects_toroidal_tests/repair_inner_contour_periodicity_contour_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_toroidal_tests/repair_inner_contour_periodicity_contour_1.json -------------------------------------------------------------------------------- /tests/faces/objects_toroidal_tests/repair_inner_contour_periodicity_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_toroidal_tests/repair_inner_contour_periodicity_surface.json -------------------------------------------------------------------------------- /tests/faces/objects_toroidal_tests/repair_periodicity_toroidal_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_toroidal_tests/repair_periodicity_toroidal_surface.json -------------------------------------------------------------------------------- /tests/faces/objects_toroidal_tests/repair_periodicity_toroidal_surface_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_toroidal_tests/repair_periodicity_toroidal_surface_contour.json -------------------------------------------------------------------------------- /tests/faces/objects_toroidal_tests/surface_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_toroidal_tests/surface_4.json -------------------------------------------------------------------------------- /tests/faces/objects_toroidal_tests/test_planeface3d_toroidalface3d_121223.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_toroidal_tests/test_planeface3d_toroidalface3d_121223.json -------------------------------------------------------------------------------- /tests/faces/objects_toroidal_tests/test_planeface3d_toroidalface3d_131223.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/objects_toroidal_tests/test_planeface3d_toroidalface3d_131223.json -------------------------------------------------------------------------------- /tests/faces/test_bsplineface3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/test_bsplineface3d.py -------------------------------------------------------------------------------- /tests/faces/test_conicalface3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/test_conicalface3d.py -------------------------------------------------------------------------------- /tests/faces/test_cylindricalface3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/test_cylindricalface3d.py -------------------------------------------------------------------------------- /tests/faces/test_extrusionface3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/test_extrusionface3d.py -------------------------------------------------------------------------------- /tests/faces/test_face3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/test_face3d.py -------------------------------------------------------------------------------- /tests/faces/test_planeface3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/test_planeface3d.py -------------------------------------------------------------------------------- /tests/faces/test_revolutionface3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/test_revolutionface3d.py -------------------------------------------------------------------------------- /tests/faces/test_sphericalface3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/test_sphericalface3d.py -------------------------------------------------------------------------------- /tests/faces/test_toroidalface3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/faces/test_toroidalface3d.py -------------------------------------------------------------------------------- /tests/geometry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/geometry/test_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/geometry/test_geometry.py -------------------------------------------------------------------------------- /tests/line_distances_projections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/line_distances_projections.py -------------------------------------------------------------------------------- /tests/primitives3d/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/primitives3d/test_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/primitives3d/test_block.py -------------------------------------------------------------------------------- /tests/primitives3d/test_cone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/primitives3d/test_cone.py -------------------------------------------------------------------------------- /tests/primitives3d/test_cylinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/primitives3d/test_cylinder.py -------------------------------------------------------------------------------- /tests/primitives3d/test_hollow_cylinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/primitives3d/test_hollow_cylinder.py -------------------------------------------------------------------------------- /tests/primitives3d/test_sphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/primitives3d/test_sphere.py -------------------------------------------------------------------------------- /tests/primitives3d/test_sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/primitives3d/test_sweep.py -------------------------------------------------------------------------------- /tests/shells/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/shells/closed_shell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/shells/closed_shell.json -------------------------------------------------------------------------------- /tests/shells/closedtriangleshell3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/shells/closedtriangleshell3d.json -------------------------------------------------------------------------------- /tests/shells/open_shell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/shells/open_shell.json -------------------------------------------------------------------------------- /tests/shells/shell1(1).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/shells/shell1(1).json -------------------------------------------------------------------------------- /tests/shells/shell2(1).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/shells/shell2(1).json -------------------------------------------------------------------------------- /tests/shells/test_closed_shell_point_belongs2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/shells/test_closed_shell_point_belongs2.json -------------------------------------------------------------------------------- /tests/shells/test_closedshell3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/shells/test_closedshell3d.py -------------------------------------------------------------------------------- /tests/shells/test_shell3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/shells/test_shell3d.py -------------------------------------------------------------------------------- /tests/shells/test_shell_volume.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/shells/test_shell_volume.json -------------------------------------------------------------------------------- /tests/shells/test_shells_distance2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/shells/test_shells_distance2.json -------------------------------------------------------------------------------- /tests/shells/test_triangle_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/shells/test_triangle_shell.py -------------------------------------------------------------------------------- /tests/step/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/step/cone.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/step/cone.step -------------------------------------------------------------------------------- /tests/step/test_conversion_factor.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/step/test_conversion_factor.step -------------------------------------------------------------------------------- /tests/step/test_names.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/step/test_names.step -------------------------------------------------------------------------------- /tests/step/test_step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/step/test_step.py -------------------------------------------------------------------------------- /tests/step/test_step_read_lines.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/step/test_step_read_lines.stp -------------------------------------------------------------------------------- /tests/step/test_wireframe.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/step/test_wireframe.step -------------------------------------------------------------------------------- /tests/surfaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/BSplineSurface3D_with_Arc3D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/BSplineSurface3D_with_Arc3D.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/arcellipse_on_bsplinesurface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/arcellipse_on_bsplinesurface.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/bspline_contour_self_intersecting_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/bspline_contour_self_intersecting_contour.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/bspline_contour_with_arcs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/bspline_contour_with_arcs.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/bspline_surface_self_intersecting_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/bspline_surface_self_intersecting_contour.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/bspline_surface_with_arcs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/bspline_surface_with_arcs.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/bsplinecurve3d_to_2d_vclosed_surface_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/bsplinecurve3d_to_2d_vclosed_surface_test.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/bsplineface_triangulation_problem_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/bsplineface_triangulation_problem_surface.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/bsplinesurface_arc3d_to_2d_arc3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/bsplinesurface_arc3d_to_2d_arc3d.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/bsplinesurface_arc3d_to_2d_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/bsplinesurface_arc3d_to_2d_surface.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/bsplinesurface_derivatives_v_degree_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/bsplinesurface_derivatives_v_degree_1.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/bsplinesurface_nan_bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/bsplinesurface_nan_bug.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/bsplinesurface_nan_bug_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/bsplinesurface_nan_bug_contour.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/bsplinesurface_point3d_to_2d_grid_search_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/bsplinesurface_point3d_to_2d_grid_search_1.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/bsplinesurface_point3d_to_2d_grid_search_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/bsplinesurface_point3d_to_2d_grid_search_2.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/bsplinesurface_point3d_to_2d_grid_search_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/bsplinesurface_point3d_to_2d_grid_search_3.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/bsplinesurface_point3d_to_2d_grid_search_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/bsplinesurface_point3d_to_2d_grid_search_4.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/bsplinesurface_smallbsplinecurve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/bsplinesurface_smallbsplinecurve.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/bsplinesurface_smallbsplinecurve_curve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/bsplinesurface_smallbsplinecurve_curve.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/bsplinesurface_with_arcellipse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/bsplinesurface_with_arcellipse.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/bsplinesurface_with_fullarcellipse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/bsplinesurface_with_fullarcellipse.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/contour3d_to_2d_small_primitives_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/contour3d_to_2d_small_primitives_contour.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/contour3d_to_2d_small_primitives_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/contour3d_to_2d_small_primitives_surface.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/periodic_surface_smallbsplinecurve3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/periodic_surface_smallbsplinecurve3d.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/periodic_surface_smallbsplinecurve3d_curve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/periodic_surface_smallbsplinecurve3d_curve.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/periodicalsurface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/periodicalsurface.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/periodicalsurface_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/periodicalsurface_contour.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/surface3d_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/surface3d_8.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/surface_with_singularity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/surface_with_singularity.json -------------------------------------------------------------------------------- /tests/surfaces/objects_bspline_test/surface_with_singularity_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_bspline_test/surface_with_singularity_contour.json -------------------------------------------------------------------------------- /tests/surfaces/objects_conical_tests/conical_singularity_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_conical_tests/conical_singularity_contour.json -------------------------------------------------------------------------------- /tests/surfaces/objects_conical_tests/conical_singularity_suface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_conical_tests/conical_singularity_suface.json -------------------------------------------------------------------------------- /tests/surfaces/objects_conical_tests/conicalsurface_contour_with_singularity_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_conical_tests/conicalsurface_contour_with_singularity_2.json -------------------------------------------------------------------------------- /tests/surfaces/objects_conical_tests/conicalsurface_linesegment3d_to_2d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_conical_tests/conicalsurface_linesegment3d_to_2d.json -------------------------------------------------------------------------------- /tests/surfaces/objects_conical_tests/conicalsurface_linesegment3d_to_2d_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_conical_tests/conicalsurface_linesegment3d_to_2d_contour.json -------------------------------------------------------------------------------- /tests/surfaces/objects_cylindrical_tests/bsplinecurve3d_bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_cylindrical_tests/bsplinecurve3d_bug.json -------------------------------------------------------------------------------- /tests/surfaces/objects_cylindrical_tests/cylindrical_surf_bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_cylindrical_tests/cylindrical_surf_bug.json -------------------------------------------------------------------------------- /tests/surfaces/objects_cylindrical_tests/cylindricalsurface_linesegment3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_cylindrical_tests/cylindricalsurface_linesegment3d.json -------------------------------------------------------------------------------- /tests/surfaces/objects_cylindrical_tests/cylindricalsurface_with_linesegment3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_cylindrical_tests/cylindricalsurface_with_linesegment3d.json -------------------------------------------------------------------------------- /tests/surfaces/objects_cylindrical_tests/test_contour3d_to_2d_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_cylindrical_tests/test_contour3d_to_2d_contour.json -------------------------------------------------------------------------------- /tests/surfaces/objects_cylindrical_tests/test_contour3d_to_2d_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_cylindrical_tests/test_contour3d_to_2d_surface.json -------------------------------------------------------------------------------- /tests/surfaces/objects_extrusion_tests/bspline_extruded_simple.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_extrusion_tests/bspline_extruded_simple.step -------------------------------------------------------------------------------- /tests/surfaces/objects_extrusion_tests/contour3d_to_2d_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_extrusion_tests/contour3d_to_2d_contour.json -------------------------------------------------------------------------------- /tests/surfaces/objects_extrusion_tests/contour3d_to_2d_contour_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_extrusion_tests/contour3d_to_2d_contour_2.json -------------------------------------------------------------------------------- /tests/surfaces/objects_extrusion_tests/contour3d_to_2d_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_extrusion_tests/contour3d_to_2d_surface.json -------------------------------------------------------------------------------- /tests/surfaces/objects_extrusion_tests/contour3d_to_2d_surface_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_extrusion_tests/contour3d_to_2d_surface_2.json -------------------------------------------------------------------------------- /tests/surfaces/objects_extrusion_tests/extrusion_contour_test_arc3d_to_2d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_extrusion_tests/extrusion_contour_test_arc3d_to_2d.json -------------------------------------------------------------------------------- /tests/surfaces/objects_extrusion_tests/extrusion_surface_isocurve_trimmed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_extrusion_tests/extrusion_surface_isocurve_trimmed.json -------------------------------------------------------------------------------- /tests/surfaces/objects_extrusion_tests/extrusion_surface_test_arc3d_to_2d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_extrusion_tests/extrusion_surface_test_arc3d_to_2d.json -------------------------------------------------------------------------------- /tests/surfaces/objects_extrusion_tests/extrusionsurface_fullarc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_extrusion_tests/extrusionsurface_fullarc.json -------------------------------------------------------------------------------- /tests/surfaces/objects_extrusion_tests/extrusionsurface_fullarc_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_extrusion_tests/extrusionsurface_fullarc_contour.json -------------------------------------------------------------------------------- /tests/surfaces/objects_extrusion_tests/extrusionsurface_fullarcellipse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_extrusion_tests/extrusionsurface_fullarcellipse.json -------------------------------------------------------------------------------- /tests/surfaces/objects_extrusion_tests/extrusionsurface_fullarcellipse3d_to_2d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_extrusion_tests/extrusionsurface_fullarcellipse3d_to_2d.json -------------------------------------------------------------------------------- /tests/surfaces/objects_extrusion_tests/extrusionsurface_fullarcellipse_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_extrusion_tests/extrusionsurface_fullarcellipse_contour.json -------------------------------------------------------------------------------- /tests/surfaces/objects_extrusion_tests/extrusionsurface_periodic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_extrusion_tests/extrusionsurface_periodic.json -------------------------------------------------------------------------------- /tests/surfaces/objects_extrusion_tests/extrusionsurface_periodic_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_extrusion_tests/extrusionsurface_periodic_contour.json -------------------------------------------------------------------------------- /tests/surfaces/objects_extrusion_tests/extrusionsurface_with_small_edge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_extrusion_tests/extrusionsurface_with_small_edge.json -------------------------------------------------------------------------------- /tests/surfaces/objects_extrusion_tests/extrusionsurface_with_small_edge_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_extrusion_tests/extrusionsurface_with_small_edge_contour.json -------------------------------------------------------------------------------- /tests/surfaces/objects_extrusion_tests/linesegment2d_to_linesegment3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_extrusion_tests/linesegment2d_to_linesegment3d.json -------------------------------------------------------------------------------- /tests/surfaces/objects_extrusion_tests/linesegment2d_to_self_edge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_extrusion_tests/linesegment2d_to_self_edge.json -------------------------------------------------------------------------------- /tests/surfaces/objects_extrusion_tests/periodical_extrusionsurface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_extrusion_tests/periodical_extrusionsurface.json -------------------------------------------------------------------------------- /tests/surfaces/objects_extrusion_tests/periodical_extrusionsurface_bsplinecurve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_extrusion_tests/periodical_extrusionsurface_bsplinecurve.json -------------------------------------------------------------------------------- /tests/surfaces/objects_extrusion_tests/point3d_to_2d_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_extrusion_tests/point3d_to_2d_surface.json -------------------------------------------------------------------------------- /tests/surfaces/objects_periodical_surface/bsplinecurve_with_theta_discontinuity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_periodical_surface/bsplinecurve_with_theta_discontinuity.json -------------------------------------------------------------------------------- /tests/surfaces/objects_plane_test/plane_parametric_operation_bug_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_plane_test/plane_parametric_operation_bug_contour.json -------------------------------------------------------------------------------- /tests/surfaces/objects_plane_test/plane_parametric_operation_bug_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_plane_test/plane_parametric_operation_bug_surface.json -------------------------------------------------------------------------------- /tests/surfaces/objects_plane_test/planesurface_arc3d_to_2d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_plane_test/planesurface_arc3d_to_2d.json -------------------------------------------------------------------------------- /tests/surfaces/objects_plane_test/planesurface_arc3d_to_2d_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_plane_test/planesurface_arc3d_to_2d_contour.json -------------------------------------------------------------------------------- /tests/surfaces/objects_plane_test/test_plane_plane_intersections301123.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_plane_test/test_plane_plane_intersections301123.json -------------------------------------------------------------------------------- /tests/surfaces/objects_revolution_tests/arc3d_to_2d_arc3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_revolution_tests/arc3d_to_2d_arc3d.json -------------------------------------------------------------------------------- /tests/surfaces/objects_revolution_tests/arc3d_to_2d_arc3d_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_revolution_tests/arc3d_to_2d_arc3d_2.json -------------------------------------------------------------------------------- /tests/surfaces/objects_revolution_tests/arc3d_to_2d_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_revolution_tests/arc3d_to_2d_surface.json -------------------------------------------------------------------------------- /tests/surfaces/objects_revolution_tests/arc3d_to_2d_surface_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_revolution_tests/arc3d_to_2d_surface_2.json -------------------------------------------------------------------------------- /tests/surfaces/objects_revolution_tests/linesegment2d_arc3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_revolution_tests/linesegment2d_arc3d.json -------------------------------------------------------------------------------- /tests/surfaces/objects_revolution_tests/linesegment2d_rotated_primitive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_revolution_tests/linesegment2d_rotated_primitive.json -------------------------------------------------------------------------------- /tests/surfaces/objects_revolution_tests/linesegment2d_split_primitive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_revolution_tests/linesegment2d_split_primitive.json -------------------------------------------------------------------------------- /tests/surfaces/objects_revolution_tests/revolution_contour_bug_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_revolution_tests/revolution_contour_bug_0.json -------------------------------------------------------------------------------- /tests/surfaces/objects_revolution_tests/revolution_contour_bug_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_revolution_tests/revolution_contour_bug_1.json -------------------------------------------------------------------------------- /tests/surfaces/objects_revolution_tests/revolution_surface_bug_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_revolution_tests/revolution_surface_bug_0.json -------------------------------------------------------------------------------- /tests/surfaces/objects_revolution_tests/revolution_surface_bug_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_revolution_tests/revolution_surface_bug_1.json -------------------------------------------------------------------------------- /tests/surfaces/objects_revolution_tests/revolutionface_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_revolution_tests/revolutionface_contour.json -------------------------------------------------------------------------------- /tests/surfaces/objects_revolution_tests/revolutionface_contour_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_revolution_tests/revolutionface_contour_1.json -------------------------------------------------------------------------------- /tests/surfaces/objects_revolution_tests/revolutionface_contour_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_revolution_tests/revolutionface_contour_2.json -------------------------------------------------------------------------------- /tests/surfaces/objects_revolution_tests/revolutionface_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_revolution_tests/revolutionface_surface.json -------------------------------------------------------------------------------- /tests/surfaces/objects_revolution_tests/revolutionface_surface_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_revolution_tests/revolutionface_surface_1.json -------------------------------------------------------------------------------- /tests/surfaces/objects_revolution_tests/revolutionface_surface_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_revolution_tests/revolutionface_surface_2.json -------------------------------------------------------------------------------- /tests/surfaces/objects_revolution_tests/revolutionsurface_linesegment2d_to_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_revolution_tests/revolutionsurface_linesegment2d_to_3d.json -------------------------------------------------------------------------------- /tests/surfaces/objects_revolution_tests/revolutionsurface_simplify_conical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_revolution_tests/revolutionsurface_simplify_conical.json -------------------------------------------------------------------------------- /tests/surfaces/objects_revolution_tests/revolutionsurface_simplify_cylindrical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_revolution_tests/revolutionsurface_simplify_cylindrical.json -------------------------------------------------------------------------------- /tests/surfaces/objects_revolution_tests/revolutionsurface_simplify_spherical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_revolution_tests/revolutionsurface_simplify_spherical.json -------------------------------------------------------------------------------- /tests/surfaces/objects_revolution_tests/revolutionsurface_with_singularity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_revolution_tests/revolutionsurface_with_singularity.json -------------------------------------------------------------------------------- /tests/surfaces/objects_revolution_tests/revolutionsurface_with_singularity_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_revolution_tests/revolutionsurface_with_singularity_1.json -------------------------------------------------------------------------------- /tests/surfaces/objects_spherical_tests/arc_with_two_singularities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_spherical_tests/arc_with_two_singularities.json -------------------------------------------------------------------------------- /tests/surfaces/objects_spherical_tests/buggy_contour3d_to_2d_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_spherical_tests/buggy_contour3d_to_2d_contour.json -------------------------------------------------------------------------------- /tests/surfaces/objects_spherical_tests/buggy_contour3d_to_2d_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_spherical_tests/buggy_contour3d_to_2d_surface.json -------------------------------------------------------------------------------- /tests/surfaces/objects_spherical_tests/contour_any_direction_upper_side.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_spherical_tests/contour_any_direction_upper_side.json -------------------------------------------------------------------------------- /tests/surfaces/objects_spherical_tests/contour_left_side.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_spherical_tests/contour_left_side.json -------------------------------------------------------------------------------- /tests/surfaces/objects_spherical_tests/contour_lower_side.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_spherical_tests/contour_lower_side.json -------------------------------------------------------------------------------- /tests/surfaces/objects_spherical_tests/contour_rigth_side.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_spherical_tests/contour_rigth_side.json -------------------------------------------------------------------------------- /tests/surfaces/objects_spherical_tests/contour_upper_side.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_spherical_tests/contour_upper_side.json -------------------------------------------------------------------------------- /tests/surfaces/objects_spherical_tests/repair_primitives2d_periodicity_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_spherical_tests/repair_primitives2d_periodicity_contour.json -------------------------------------------------------------------------------- /tests/surfaces/objects_spherical_tests/repair_primitives2d_periodicity_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_spherical_tests/repair_primitives2d_periodicity_surface.json -------------------------------------------------------------------------------- /tests/surfaces/objects_spherical_tests/spericalsurface1_contour0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_spherical_tests/spericalsurface1_contour0.json -------------------------------------------------------------------------------- /tests/surfaces/objects_spherical_tests/spherical_surface_arc3d_to_2d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_spherical_tests/spherical_surface_arc3d_to_2d.json -------------------------------------------------------------------------------- /tests/surfaces/objects_spherical_tests/spherical_surface_arc3d_to_2d_contour3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_spherical_tests/spherical_surface_arc3d_to_2d_contour3d.json -------------------------------------------------------------------------------- /tests/surfaces/objects_spherical_tests/sphericalsurface1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_spherical_tests/sphericalsurface1.json -------------------------------------------------------------------------------- /tests/surfaces/objects_toroidal_tests/buggy_toroidalface_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_toroidal_tests/buggy_toroidalface_contour.json -------------------------------------------------------------------------------- /tests/surfaces/objects_toroidal_tests/buggy_toroidalface_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_toroidal_tests/buggy_toroidalface_surface.json -------------------------------------------------------------------------------- /tests/surfaces/objects_toroidal_tests/degenerated_toroidalsurface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_toroidal_tests/degenerated_toroidalsurface.json -------------------------------------------------------------------------------- /tests/surfaces/objects_toroidal_tests/degenerated_toroidalsurface_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_toroidal_tests/degenerated_toroidalsurface_2.json -------------------------------------------------------------------------------- /tests/surfaces/objects_toroidal_tests/surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_toroidal_tests/surface.json -------------------------------------------------------------------------------- /tests/surfaces/objects_toroidal_tests/test_toroidal_surface_line_intersections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_toroidal_tests/test_toroidal_surface_line_intersections.json -------------------------------------------------------------------------------- /tests/surfaces/objects_toroidal_tests/test_torus_line_intersections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_toroidal_tests/test_torus_line_intersections.json -------------------------------------------------------------------------------- /tests/surfaces/objects_toroidal_tests/test_torus_line_itnersections_08_11_2023.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_toroidal_tests/test_torus_line_itnersections_08_11_2023.json -------------------------------------------------------------------------------- /tests/surfaces/objects_toroidal_tests/test_torus_lineseg141223.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_toroidal_tests/test_torus_lineseg141223.json -------------------------------------------------------------------------------- /tests/surfaces/objects_toroidal_tests/toroidal_surface_bug_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_toroidal_tests/toroidal_surface_bug_2.json -------------------------------------------------------------------------------- /tests/surfaces/objects_toroidal_tests/toroidal_surface_bug_2_contour_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_toroidal_tests/toroidal_surface_bug_2_contour_0.json -------------------------------------------------------------------------------- /tests/surfaces/objects_toroidal_tests/toroidalsurface_bsplinecurve3d_to_2d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_toroidal_tests/toroidalsurface_bsplinecurve3d_to_2d.json -------------------------------------------------------------------------------- /tests/surfaces/objects_toroidal_tests/toroidalsurface_small_arc3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_toroidal_tests/toroidalsurface_small_arc3d.json -------------------------------------------------------------------------------- /tests/surfaces/objects_toroidal_tests/toroidalsurface_small_arc3d_contour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_toroidal_tests/toroidalsurface_small_arc3d_contour.json -------------------------------------------------------------------------------- /tests/surfaces/objects_toroidal_tests/toroidalsurface_small_bsplinecurve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/objects_toroidal_tests/toroidalsurface_small_bsplinecurve.json -------------------------------------------------------------------------------- /tests/surfaces/test_bsplinesurface3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/test_bsplinesurface3d.py -------------------------------------------------------------------------------- /tests/surfaces/test_conical_surface3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/test_conical_surface3d.py -------------------------------------------------------------------------------- /tests/surfaces/test_cylindrical_surface3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/test_cylindrical_surface3d.py -------------------------------------------------------------------------------- /tests/surfaces/test_extrusion_surface3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/test_extrusion_surface3d.py -------------------------------------------------------------------------------- /tests/surfaces/test_periodical_surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/test_periodical_surface.py -------------------------------------------------------------------------------- /tests/surfaces/test_plane3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/test_plane3d.py -------------------------------------------------------------------------------- /tests/surfaces/test_revolutionsurface3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/test_revolutionsurface3d.py -------------------------------------------------------------------------------- /tests/surfaces/test_sphericalsurface3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/test_sphericalsurface3d.py -------------------------------------------------------------------------------- /tests/surfaces/test_surface2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/test_surface2d.py -------------------------------------------------------------------------------- /tests/surfaces/test_toroidal_surface3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/surfaces/test_toroidal_surface3d.py -------------------------------------------------------------------------------- /tests/test_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/test_cloud.py -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/test_geometry.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/test_step_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/utils/test_step_reader.py -------------------------------------------------------------------------------- /tests/wires/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/wires/bspline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/bspline.json -------------------------------------------------------------------------------- /tests/wires/contour1_merge_bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/contour1_merge_bug.json -------------------------------------------------------------------------------- /tests/wires/contour2_merge_bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/contour2_merge_bug.json -------------------------------------------------------------------------------- /tests/wires/contour3d_merge_with1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/contour3d_merge_with1.json -------------------------------------------------------------------------------- /tests/wires/contour3d_merge_with2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/contour3d_merge_with2.json -------------------------------------------------------------------------------- /tests/wires/contour3d_sharing_primitives1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/contour3d_sharing_primitives1.json -------------------------------------------------------------------------------- /tests/wires/contour3d_sharing_primitives2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/contour3d_sharing_primitives2.json -------------------------------------------------------------------------------- /tests/wires/contour_not_ordered.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/contour_not_ordered.json -------------------------------------------------------------------------------- /tests/wires/contour_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/contour_order.json -------------------------------------------------------------------------------- /tests/wires/contour_ordered.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/contour_ordered.json -------------------------------------------------------------------------------- /tests/wires/contour_to_offset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/contour_to_offset.json -------------------------------------------------------------------------------- /tests/wires/contour_to_split.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/contour_to_split.json -------------------------------------------------------------------------------- /tests/wires/contour_with_repeated_edge_in_contour3d.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/contour_with_repeated_edge_in_contour3d.step -------------------------------------------------------------------------------- /tests/wires/edge_loop_with_small_edges_and_gaps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/edge_loop_with_small_edges_and_gaps.json -------------------------------------------------------------------------------- /tests/wires/expected_contour_merge_with1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/expected_contour_merge_with1.json -------------------------------------------------------------------------------- /tests/wires/expected_contour_merge_with2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/expected_contour_merge_with2.json -------------------------------------------------------------------------------- /tests/wires/sphere_with_singularity.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/sphere_with_singularity.step -------------------------------------------------------------------------------- /tests/wires/strange_contour_from_step_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/strange_contour_from_step_file.json -------------------------------------------------------------------------------- /tests/wires/strange_contour_from_step_primitives.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/strange_contour_from_step_primitives.json -------------------------------------------------------------------------------- /tests/wires/test_closedpolygon2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/test_closedpolygon2d.py -------------------------------------------------------------------------------- /tests/wires/test_closedpolygon3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/test_closedpolygon3d.py -------------------------------------------------------------------------------- /tests/wires/test_contour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/test_contour.py -------------------------------------------------------------------------------- /tests/wires/test_contour2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/test_contour2d.py -------------------------------------------------------------------------------- /tests/wires/test_contour2d_cut_by_line.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/test_contour2d_cut_by_line.json -------------------------------------------------------------------------------- /tests/wires/test_contour2d_divide_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/test_contour2d_divide_1.json -------------------------------------------------------------------------------- /tests/wires/test_contour3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/test_contour3d.py -------------------------------------------------------------------------------- /tests/wires/test_contour_point_belongs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/test_contour_point_belongs.json -------------------------------------------------------------------------------- /tests/wires/test_edgecollection3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/test_edgecollection3d.py -------------------------------------------------------------------------------- /tests/wires/test_intersection_contour_with.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/test_intersection_contour_with.json -------------------------------------------------------------------------------- /tests/wires/test_merge_connected_contours.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/test_merge_connected_contours.json -------------------------------------------------------------------------------- /tests/wires/test_wire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tests/wires/test_wire.py -------------------------------------------------------------------------------- /tutorials/ci_tutorials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tutorials/ci_tutorials.py -------------------------------------------------------------------------------- /tutorials/tutorial_casing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tutorials/tutorial_casing.ipynb -------------------------------------------------------------------------------- /tutorials/tutorial_casing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/tutorials/tutorial_casing.py -------------------------------------------------------------------------------- /volmdlr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/__init__.py -------------------------------------------------------------------------------- /volmdlr/assets/js/babylon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/assets/js/babylon.js -------------------------------------------------------------------------------- /volmdlr/assets/js/babylonjs.loaders.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/assets/js/babylonjs.loaders.min.js -------------------------------------------------------------------------------- /volmdlr/assets/js/earcut.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/assets/js/earcut.min.js -------------------------------------------------------------------------------- /volmdlr/assets/js/pep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/assets/js/pep.js -------------------------------------------------------------------------------- /volmdlr/assets/logos/volmdlr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/assets/logos/volmdlr.jpg -------------------------------------------------------------------------------- /volmdlr/cad_simplification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/cad_simplification.py -------------------------------------------------------------------------------- /volmdlr/cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/cloud.py -------------------------------------------------------------------------------- /volmdlr/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/core.py -------------------------------------------------------------------------------- /volmdlr/core_compiled.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/core_compiled.pxd -------------------------------------------------------------------------------- /volmdlr/core_compiled.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/core_compiled.pyx -------------------------------------------------------------------------------- /volmdlr/curves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/curves.py -------------------------------------------------------------------------------- /volmdlr/discrete_representation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/discrete_representation.py -------------------------------------------------------------------------------- /volmdlr/discrete_representation_compiled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/discrete_representation_compiled.py -------------------------------------------------------------------------------- /volmdlr/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/display.py -------------------------------------------------------------------------------- /volmdlr/edges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/edges.py -------------------------------------------------------------------------------- /volmdlr/faces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/faces.py -------------------------------------------------------------------------------- /volmdlr/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/geometry.py -------------------------------------------------------------------------------- /volmdlr/gmsh_vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/gmsh_vm.py -------------------------------------------------------------------------------- /volmdlr/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/grid.py -------------------------------------------------------------------------------- /volmdlr/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/mesh.py -------------------------------------------------------------------------------- /volmdlr/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/models/__init__.py -------------------------------------------------------------------------------- /volmdlr/models/bspline_curves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/models/bspline_curves.py -------------------------------------------------------------------------------- /volmdlr/models/bspline_surfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/models/bspline_surfaces.py -------------------------------------------------------------------------------- /volmdlr/models/casing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/models/casing.py -------------------------------------------------------------------------------- /volmdlr/models/conical_surfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/models/conical_surfaces.py -------------------------------------------------------------------------------- /volmdlr/models/contours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/models/contours.py -------------------------------------------------------------------------------- /volmdlr/models/curves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/models/curves.py -------------------------------------------------------------------------------- /volmdlr/models/cylindrical_surfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/models/cylindrical_surfaces.py -------------------------------------------------------------------------------- /volmdlr/models/edges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/models/edges.py -------------------------------------------------------------------------------- /volmdlr/models/open_rounded_line_segments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/models/open_rounded_line_segments.py -------------------------------------------------------------------------------- /volmdlr/models/workflows/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/models/workflows/core.py -------------------------------------------------------------------------------- /volmdlr/nurbs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /volmdlr/nurbs/core.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/nurbs/core.pyx -------------------------------------------------------------------------------- /volmdlr/nurbs/fitting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/nurbs/fitting.py -------------------------------------------------------------------------------- /volmdlr/nurbs/helpers.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/nurbs/helpers.pxd -------------------------------------------------------------------------------- /volmdlr/nurbs/helpers.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/nurbs/helpers.pyx -------------------------------------------------------------------------------- /volmdlr/nurbs/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/nurbs/operations.py -------------------------------------------------------------------------------- /volmdlr/primitives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/primitives.py -------------------------------------------------------------------------------- /volmdlr/primitives2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/primitives2d.py -------------------------------------------------------------------------------- /volmdlr/primitives3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/primitives3d.py -------------------------------------------------------------------------------- /volmdlr/shells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/shells.py -------------------------------------------------------------------------------- /volmdlr/step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/step.py -------------------------------------------------------------------------------- /volmdlr/stl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/stl.py -------------------------------------------------------------------------------- /volmdlr/surfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/surfaces.py -------------------------------------------------------------------------------- /volmdlr/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/templates.py -------------------------------------------------------------------------------- /volmdlr/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /volmdlr/utils/common_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/utils/common_operations.py -------------------------------------------------------------------------------- /volmdlr/utils/intersections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/utils/intersections.py -------------------------------------------------------------------------------- /volmdlr/utils/parametric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/utils/parametric.py -------------------------------------------------------------------------------- /volmdlr/utils/step_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/utils/step_reader.py -------------------------------------------------------------------------------- /volmdlr/utils/step_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/utils/step_writer.py -------------------------------------------------------------------------------- /volmdlr/wires.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dessia-tech/volmdlr/HEAD/volmdlr/wires.py --------------------------------------------------------------------------------