├── .gitignore ├── README.md ├── assets ├── fonts │ ├── README.md │ └── Respective.ttf ├── ifc_models │ ├── AC-11-Smiley-West-04-07-2007.ifc │ ├── A_IFC_model.ifc │ └── IFC Schependomlaan.ifc ├── images │ ├── carre-200.png │ ├── ground.bmp │ ├── mountain_heightmap.jpg │ └── nevers-pont-de-loire.jpg ├── models │ ├── 11752.stp │ ├── 2CylinderEngine.glb │ ├── 3864470050F1.zip │ ├── KR600_R2830-4.stp │ ├── Motor-c.brep │ ├── RC_Buggy_2_front_suspension.stp │ ├── Ventilator.stp │ ├── as1-oc-214.stp │ ├── as1_pe_203.stp │ ├── bunny.pcd │ ├── curve_geom_plate.igs │ ├── cylinder_head.brep │ ├── face_recognition_sample_part.stp │ ├── fan.stl │ ├── five_spoke_wheel.stl │ ├── splinecage.stp │ ├── surf114.igs │ ├── tabletop.pcd │ ├── torus_default_resolution.stl │ └── wire.brep └── shaders │ ├── pink.fs │ ├── pink.uniforms │ └── pink.vs ├── examples ├── core_2d_fillet.py ├── core_animation.py ├── core_boolean_fuzzy_cut_emmenthaler.py ├── core_boolean_sewed_shapes.py ├── core_classic_occ_bottle.py ├── core_dimensions.py ├── core_display_activate_manipulator.py ├── core_display_background_gradient_color.py ├── core_display_background_image.py ├── core_display_callbacks.py ├── core_display_camera_projection.py ├── core_display_clip_planes.py ├── core_display_colorscale.py ├── core_display_customize_linewidth.py ├── core_display_customize_prs3d.py ├── core_display_dont_show_edges.py ├── core_display_erase_shape.py ├── core_display_export_to_image.py ├── core_display_line_properties.py ├── core_display_manipulator.py ├── core_display_material_compound_subshape.py ├── core_display_material_shape.py ├── core_display_offscreen_renderer.py ├── core_display_pbr.py ├── core_display_point_cloud.py ├── core_display_point_properties.py ├── core_display_qt5_app.py ├── core_display_quality.py ├── core_display_raytracing.py ├── core_display_set_edge_color.py ├── core_display_signal_slots.py ├── core_display_textured_shape.py ├── core_display_z_order_transparency.py ├── core_display_zlayer.py ├── core_exception.py ├── core_export_gltf_single_shape.py ├── core_export_ply_single_shape.py ├── core_export_step_ap203.py ├── core_export_step_header_section.py ├── core_export_stl.py ├── core_font_helloworld.py ├── core_font_register.py ├── core_geometry_airfoil.py ├── core_geometry_axis.py ├── core_geometry_bisector.py ├── core_geometry_bounding_box.py ├── core_geometry_bspline.py ├── core_geometry_bspline_from_poles_knots_multiplicities.py ├── core_geometry_curvature.py ├── core_geometry_curve_extend.py ├── core_geometry_curves2d_from_curve.py ├── core_geometry_curves2d_from_offset.py ├── core_geometry_curves2d_intersect.py ├── core_geometry_ellipsoid.py ├── core_geometry_face_recognition_from_stepfile.py ├── core_geometry_faircurve.py ├── core_geometry_geomplate.py ├── core_geometry_interpolate.py ├── core_geometry_iso_parametric_curves.py ├── core_geometry_make_pipe_shell.py ├── core_geometry_medial_axis_offset.py ├── core_geometry_minimal_distance.py ├── core_geometry_nurbs.py ├── core_geometry_nurbs_converter.py ├── core_geometry_oriented_bounding_box.py ├── core_geometry_overlap.py ├── core_geometry_parabola.py ├── core_geometry_point_from_curve.py ├── core_geometry_point_from_intersection.py ├── core_geometry_project_point_on_curve.py ├── core_geometry_project_point_on_wire.py ├── core_geometry_quaternion.py ├── core_geometry_recognize_feature.py ├── core_geometry_splinecage.py ├── core_geometry_surface_from_curves.py ├── core_gfa.py ├── core_helloworld.py ├── core_hlr_outliner.py ├── core_inherit_topods_shape.py ├── core_json_serializer.py ├── core_layer_mgmt.py ├── core_load_brep.py ├── core_load_gltf_ocaf.py ├── core_load_iges.py ├── core_load_step_ap203.py ├── core_load_step_ap203_ocaf.py ├── core_load_step_ap203_ocaf_from_string.py ├── core_load_step_ap214_with_materials.py ├── core_load_step_with_colors.py ├── core_load_stl.py ├── core_load_stl_surf_solid.py ├── core_matplotlib_box.py ├── core_meshDS_numpy.py ├── core_meshDS_numpy_face_colors.py ├── core_meshDS_numpy_material.py ├── core_meshDS_numpy_node_colors.py ├── core_mesh_data_source.py ├── core_mesh_data_source_color_map.py ├── core_mesh_data_source_numpy.py ├── core_mesh_data_source_numpy_stl.py ├── core_mesh_gmsh.py ├── core_modeling_bool_demo.py ├── core_modeling_sprocket.py ├── core_offscreen_rendering.py ├── core_parallel_slicer.py ├── core_shape_pickling.py ├── core_shape_properties.py ├── core_simple_mesh.py ├── core_tesselation_vertices_list.py ├── core_topology_boolean.py ├── core_topology_boolean_general_fuse_algorithm.py ├── core_topology_draft_angle.py ├── core_topology_edge.py ├── core_topology_evolved_shape.py ├── core_topology_face.py ├── core_topology_fillet.py ├── core_topology_fuse_history.py ├── core_topology_glue.py ├── core_topology_heightmap.py ├── core_topology_holes_in_face.py ├── core_topology_local_ops.py ├── core_topology_pipe.py ├── core_topology_prism.py ├── core_topology_revolved_shape.py ├── core_topology_splitter.py ├── core_topology_tetrahedron.py ├── core_topology_through_sections.py ├── core_topology_uv_to_cartesian_coordinates.py ├── core_topology_vertex_filleting.py ├── core_visualization_3d_to_2d_screen_coordinates.py ├── core_visualization_ais_coloredshape.py ├── core_visualization_camera.py ├── core_visualization_camera_2.py ├── core_visualization_glsl.py ├── core_visualization_graphic3d_custom_opengl.py ├── core_visualization_overpaint_viewer.py ├── core_webgl_STEP_to_X3D.py ├── core_webgl_mesh_quality.py ├── core_webgl_threejs_bigfile.py ├── core_webgl_threejs_bigfile_multipleshapes.py ├── core_webgl_threejs_bigfile_oneshape.py ├── core_webgl_threejs_cylinderhead_faces.py ├── core_webgl_threejs_helix.py ├── core_webgl_threejs_random_toruses.py ├── core_webgl_threejs_torus.py ├── core_webgl_x3dom_bigfile_multipleshapes.py ├── core_webgl_x3dom_cylinderhead.py ├── core_webgl_x3dom_random_boxes.py └── ifc_clip_plane.py ├── jupyter_notebooks ├── boolean_ops.ipynb ├── boolean_shape_upgrade.ipynb ├── display_as_svg.ipynb ├── helix.ipynb ├── helloworld.ipynb ├── ifc_display_basic_file.ipynb ├── load_brep.ipynb ├── load_step_ap203_multiple_shapes.ipynb ├── load_step_ap203_one_shape.ipynb ├── make_draft_angle.ipynb ├── make_prism.ipynb ├── point_cloud.ipynb ├── set_callback.ipynb ├── splitter_demo_V2.ipynb ├── torus_mesh_quality.ipynb └── triangle_mesh_gmsh.ipynb ├── requirements.txt ├── run_examples.sh └── run_examples_as_tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/README.md -------------------------------------------------------------------------------- /assets/fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/fonts/README.md -------------------------------------------------------------------------------- /assets/fonts/Respective.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/fonts/Respective.ttf -------------------------------------------------------------------------------- /assets/ifc_models/AC-11-Smiley-West-04-07-2007.ifc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/ifc_models/AC-11-Smiley-West-04-07-2007.ifc -------------------------------------------------------------------------------- /assets/ifc_models/A_IFC_model.ifc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/ifc_models/A_IFC_model.ifc -------------------------------------------------------------------------------- /assets/ifc_models/IFC Schependomlaan.ifc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/ifc_models/IFC Schependomlaan.ifc -------------------------------------------------------------------------------- /assets/images/carre-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/images/carre-200.png -------------------------------------------------------------------------------- /assets/images/ground.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/images/ground.bmp -------------------------------------------------------------------------------- /assets/images/mountain_heightmap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/images/mountain_heightmap.jpg -------------------------------------------------------------------------------- /assets/images/nevers-pont-de-loire.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/images/nevers-pont-de-loire.jpg -------------------------------------------------------------------------------- /assets/models/11752.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/models/11752.stp -------------------------------------------------------------------------------- /assets/models/2CylinderEngine.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/models/2CylinderEngine.glb -------------------------------------------------------------------------------- /assets/models/3864470050F1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/models/3864470050F1.zip -------------------------------------------------------------------------------- /assets/models/KR600_R2830-4.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/models/KR600_R2830-4.stp -------------------------------------------------------------------------------- /assets/models/Motor-c.brep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/models/Motor-c.brep -------------------------------------------------------------------------------- /assets/models/RC_Buggy_2_front_suspension.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/models/RC_Buggy_2_front_suspension.stp -------------------------------------------------------------------------------- /assets/models/Ventilator.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/models/Ventilator.stp -------------------------------------------------------------------------------- /assets/models/as1-oc-214.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/models/as1-oc-214.stp -------------------------------------------------------------------------------- /assets/models/as1_pe_203.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/models/as1_pe_203.stp -------------------------------------------------------------------------------- /assets/models/bunny.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/models/bunny.pcd -------------------------------------------------------------------------------- /assets/models/curve_geom_plate.igs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/models/curve_geom_plate.igs -------------------------------------------------------------------------------- /assets/models/cylinder_head.brep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/models/cylinder_head.brep -------------------------------------------------------------------------------- /assets/models/face_recognition_sample_part.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/models/face_recognition_sample_part.stp -------------------------------------------------------------------------------- /assets/models/fan.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/models/fan.stl -------------------------------------------------------------------------------- /assets/models/five_spoke_wheel.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/models/five_spoke_wheel.stl -------------------------------------------------------------------------------- /assets/models/splinecage.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/models/splinecage.stp -------------------------------------------------------------------------------- /assets/models/surf114.igs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/models/surf114.igs -------------------------------------------------------------------------------- /assets/models/tabletop.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/models/tabletop.pcd -------------------------------------------------------------------------------- /assets/models/torus_default_resolution.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/models/torus_default_resolution.stl -------------------------------------------------------------------------------- /assets/models/wire.brep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/models/wire.brep -------------------------------------------------------------------------------- /assets/shaders/pink.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/shaders/pink.fs -------------------------------------------------------------------------------- /assets/shaders/pink.uniforms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/shaders/pink.uniforms -------------------------------------------------------------------------------- /assets/shaders/pink.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/assets/shaders/pink.vs -------------------------------------------------------------------------------- /examples/core_2d_fillet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_2d_fillet.py -------------------------------------------------------------------------------- /examples/core_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_animation.py -------------------------------------------------------------------------------- /examples/core_boolean_fuzzy_cut_emmenthaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_boolean_fuzzy_cut_emmenthaler.py -------------------------------------------------------------------------------- /examples/core_boolean_sewed_shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_boolean_sewed_shapes.py -------------------------------------------------------------------------------- /examples/core_classic_occ_bottle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_classic_occ_bottle.py -------------------------------------------------------------------------------- /examples/core_dimensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_dimensions.py -------------------------------------------------------------------------------- /examples/core_display_activate_manipulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_activate_manipulator.py -------------------------------------------------------------------------------- /examples/core_display_background_gradient_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_background_gradient_color.py -------------------------------------------------------------------------------- /examples/core_display_background_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_background_image.py -------------------------------------------------------------------------------- /examples/core_display_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_callbacks.py -------------------------------------------------------------------------------- /examples/core_display_camera_projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_camera_projection.py -------------------------------------------------------------------------------- /examples/core_display_clip_planes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_clip_planes.py -------------------------------------------------------------------------------- /examples/core_display_colorscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_colorscale.py -------------------------------------------------------------------------------- /examples/core_display_customize_linewidth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_customize_linewidth.py -------------------------------------------------------------------------------- /examples/core_display_customize_prs3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_customize_prs3d.py -------------------------------------------------------------------------------- /examples/core_display_dont_show_edges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_dont_show_edges.py -------------------------------------------------------------------------------- /examples/core_display_erase_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_erase_shape.py -------------------------------------------------------------------------------- /examples/core_display_export_to_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_export_to_image.py -------------------------------------------------------------------------------- /examples/core_display_line_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_line_properties.py -------------------------------------------------------------------------------- /examples/core_display_manipulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_manipulator.py -------------------------------------------------------------------------------- /examples/core_display_material_compound_subshape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_material_compound_subshape.py -------------------------------------------------------------------------------- /examples/core_display_material_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_material_shape.py -------------------------------------------------------------------------------- /examples/core_display_offscreen_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_offscreen_renderer.py -------------------------------------------------------------------------------- /examples/core_display_pbr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_pbr.py -------------------------------------------------------------------------------- /examples/core_display_point_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_point_cloud.py -------------------------------------------------------------------------------- /examples/core_display_point_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_point_properties.py -------------------------------------------------------------------------------- /examples/core_display_qt5_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_qt5_app.py -------------------------------------------------------------------------------- /examples/core_display_quality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_quality.py -------------------------------------------------------------------------------- /examples/core_display_raytracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_raytracing.py -------------------------------------------------------------------------------- /examples/core_display_set_edge_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_set_edge_color.py -------------------------------------------------------------------------------- /examples/core_display_signal_slots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_signal_slots.py -------------------------------------------------------------------------------- /examples/core_display_textured_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_textured_shape.py -------------------------------------------------------------------------------- /examples/core_display_z_order_transparency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_z_order_transparency.py -------------------------------------------------------------------------------- /examples/core_display_zlayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_display_zlayer.py -------------------------------------------------------------------------------- /examples/core_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_exception.py -------------------------------------------------------------------------------- /examples/core_export_gltf_single_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_export_gltf_single_shape.py -------------------------------------------------------------------------------- /examples/core_export_ply_single_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_export_ply_single_shape.py -------------------------------------------------------------------------------- /examples/core_export_step_ap203.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_export_step_ap203.py -------------------------------------------------------------------------------- /examples/core_export_step_header_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_export_step_header_section.py -------------------------------------------------------------------------------- /examples/core_export_stl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_export_stl.py -------------------------------------------------------------------------------- /examples/core_font_helloworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_font_helloworld.py -------------------------------------------------------------------------------- /examples/core_font_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_font_register.py -------------------------------------------------------------------------------- /examples/core_geometry_airfoil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_airfoil.py -------------------------------------------------------------------------------- /examples/core_geometry_axis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_axis.py -------------------------------------------------------------------------------- /examples/core_geometry_bisector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_bisector.py -------------------------------------------------------------------------------- /examples/core_geometry_bounding_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_bounding_box.py -------------------------------------------------------------------------------- /examples/core_geometry_bspline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_bspline.py -------------------------------------------------------------------------------- /examples/core_geometry_bspline_from_poles_knots_multiplicities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_bspline_from_poles_knots_multiplicities.py -------------------------------------------------------------------------------- /examples/core_geometry_curvature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_curvature.py -------------------------------------------------------------------------------- /examples/core_geometry_curve_extend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_curve_extend.py -------------------------------------------------------------------------------- /examples/core_geometry_curves2d_from_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_curves2d_from_curve.py -------------------------------------------------------------------------------- /examples/core_geometry_curves2d_from_offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_curves2d_from_offset.py -------------------------------------------------------------------------------- /examples/core_geometry_curves2d_intersect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_curves2d_intersect.py -------------------------------------------------------------------------------- /examples/core_geometry_ellipsoid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_ellipsoid.py -------------------------------------------------------------------------------- /examples/core_geometry_face_recognition_from_stepfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_face_recognition_from_stepfile.py -------------------------------------------------------------------------------- /examples/core_geometry_faircurve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_faircurve.py -------------------------------------------------------------------------------- /examples/core_geometry_geomplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_geomplate.py -------------------------------------------------------------------------------- /examples/core_geometry_interpolate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_interpolate.py -------------------------------------------------------------------------------- /examples/core_geometry_iso_parametric_curves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_iso_parametric_curves.py -------------------------------------------------------------------------------- /examples/core_geometry_make_pipe_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_make_pipe_shell.py -------------------------------------------------------------------------------- /examples/core_geometry_medial_axis_offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_medial_axis_offset.py -------------------------------------------------------------------------------- /examples/core_geometry_minimal_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_minimal_distance.py -------------------------------------------------------------------------------- /examples/core_geometry_nurbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_nurbs.py -------------------------------------------------------------------------------- /examples/core_geometry_nurbs_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_nurbs_converter.py -------------------------------------------------------------------------------- /examples/core_geometry_oriented_bounding_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_oriented_bounding_box.py -------------------------------------------------------------------------------- /examples/core_geometry_overlap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_overlap.py -------------------------------------------------------------------------------- /examples/core_geometry_parabola.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_parabola.py -------------------------------------------------------------------------------- /examples/core_geometry_point_from_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_point_from_curve.py -------------------------------------------------------------------------------- /examples/core_geometry_point_from_intersection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_point_from_intersection.py -------------------------------------------------------------------------------- /examples/core_geometry_project_point_on_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_project_point_on_curve.py -------------------------------------------------------------------------------- /examples/core_geometry_project_point_on_wire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_project_point_on_wire.py -------------------------------------------------------------------------------- /examples/core_geometry_quaternion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_quaternion.py -------------------------------------------------------------------------------- /examples/core_geometry_recognize_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_recognize_feature.py -------------------------------------------------------------------------------- /examples/core_geometry_splinecage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_splinecage.py -------------------------------------------------------------------------------- /examples/core_geometry_surface_from_curves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_geometry_surface_from_curves.py -------------------------------------------------------------------------------- /examples/core_gfa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_gfa.py -------------------------------------------------------------------------------- /examples/core_helloworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_helloworld.py -------------------------------------------------------------------------------- /examples/core_hlr_outliner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_hlr_outliner.py -------------------------------------------------------------------------------- /examples/core_inherit_topods_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_inherit_topods_shape.py -------------------------------------------------------------------------------- /examples/core_json_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_json_serializer.py -------------------------------------------------------------------------------- /examples/core_layer_mgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_layer_mgmt.py -------------------------------------------------------------------------------- /examples/core_load_brep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_load_brep.py -------------------------------------------------------------------------------- /examples/core_load_gltf_ocaf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_load_gltf_ocaf.py -------------------------------------------------------------------------------- /examples/core_load_iges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_load_iges.py -------------------------------------------------------------------------------- /examples/core_load_step_ap203.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_load_step_ap203.py -------------------------------------------------------------------------------- /examples/core_load_step_ap203_ocaf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_load_step_ap203_ocaf.py -------------------------------------------------------------------------------- /examples/core_load_step_ap203_ocaf_from_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_load_step_ap203_ocaf_from_string.py -------------------------------------------------------------------------------- /examples/core_load_step_ap214_with_materials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_load_step_ap214_with_materials.py -------------------------------------------------------------------------------- /examples/core_load_step_with_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_load_step_with_colors.py -------------------------------------------------------------------------------- /examples/core_load_stl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_load_stl.py -------------------------------------------------------------------------------- /examples/core_load_stl_surf_solid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_load_stl_surf_solid.py -------------------------------------------------------------------------------- /examples/core_matplotlib_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_matplotlib_box.py -------------------------------------------------------------------------------- /examples/core_meshDS_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_meshDS_numpy.py -------------------------------------------------------------------------------- /examples/core_meshDS_numpy_face_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_meshDS_numpy_face_colors.py -------------------------------------------------------------------------------- /examples/core_meshDS_numpy_material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_meshDS_numpy_material.py -------------------------------------------------------------------------------- /examples/core_meshDS_numpy_node_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_meshDS_numpy_node_colors.py -------------------------------------------------------------------------------- /examples/core_mesh_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_mesh_data_source.py -------------------------------------------------------------------------------- /examples/core_mesh_data_source_color_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_mesh_data_source_color_map.py -------------------------------------------------------------------------------- /examples/core_mesh_data_source_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_mesh_data_source_numpy.py -------------------------------------------------------------------------------- /examples/core_mesh_data_source_numpy_stl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_mesh_data_source_numpy_stl.py -------------------------------------------------------------------------------- /examples/core_mesh_gmsh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_mesh_gmsh.py -------------------------------------------------------------------------------- /examples/core_modeling_bool_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_modeling_bool_demo.py -------------------------------------------------------------------------------- /examples/core_modeling_sprocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_modeling_sprocket.py -------------------------------------------------------------------------------- /examples/core_offscreen_rendering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_offscreen_rendering.py -------------------------------------------------------------------------------- /examples/core_parallel_slicer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_parallel_slicer.py -------------------------------------------------------------------------------- /examples/core_shape_pickling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_shape_pickling.py -------------------------------------------------------------------------------- /examples/core_shape_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_shape_properties.py -------------------------------------------------------------------------------- /examples/core_simple_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_simple_mesh.py -------------------------------------------------------------------------------- /examples/core_tesselation_vertices_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_tesselation_vertices_list.py -------------------------------------------------------------------------------- /examples/core_topology_boolean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_topology_boolean.py -------------------------------------------------------------------------------- /examples/core_topology_boolean_general_fuse_algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_topology_boolean_general_fuse_algorithm.py -------------------------------------------------------------------------------- /examples/core_topology_draft_angle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_topology_draft_angle.py -------------------------------------------------------------------------------- /examples/core_topology_edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_topology_edge.py -------------------------------------------------------------------------------- /examples/core_topology_evolved_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_topology_evolved_shape.py -------------------------------------------------------------------------------- /examples/core_topology_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_topology_face.py -------------------------------------------------------------------------------- /examples/core_topology_fillet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_topology_fillet.py -------------------------------------------------------------------------------- /examples/core_topology_fuse_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_topology_fuse_history.py -------------------------------------------------------------------------------- /examples/core_topology_glue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_topology_glue.py -------------------------------------------------------------------------------- /examples/core_topology_heightmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_topology_heightmap.py -------------------------------------------------------------------------------- /examples/core_topology_holes_in_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_topology_holes_in_face.py -------------------------------------------------------------------------------- /examples/core_topology_local_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_topology_local_ops.py -------------------------------------------------------------------------------- /examples/core_topology_pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_topology_pipe.py -------------------------------------------------------------------------------- /examples/core_topology_prism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_topology_prism.py -------------------------------------------------------------------------------- /examples/core_topology_revolved_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_topology_revolved_shape.py -------------------------------------------------------------------------------- /examples/core_topology_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_topology_splitter.py -------------------------------------------------------------------------------- /examples/core_topology_tetrahedron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_topology_tetrahedron.py -------------------------------------------------------------------------------- /examples/core_topology_through_sections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_topology_through_sections.py -------------------------------------------------------------------------------- /examples/core_topology_uv_to_cartesian_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_topology_uv_to_cartesian_coordinates.py -------------------------------------------------------------------------------- /examples/core_topology_vertex_filleting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_topology_vertex_filleting.py -------------------------------------------------------------------------------- /examples/core_visualization_3d_to_2d_screen_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_visualization_3d_to_2d_screen_coordinates.py -------------------------------------------------------------------------------- /examples/core_visualization_ais_coloredshape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_visualization_ais_coloredshape.py -------------------------------------------------------------------------------- /examples/core_visualization_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_visualization_camera.py -------------------------------------------------------------------------------- /examples/core_visualization_camera_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_visualization_camera_2.py -------------------------------------------------------------------------------- /examples/core_visualization_glsl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_visualization_glsl.py -------------------------------------------------------------------------------- /examples/core_visualization_graphic3d_custom_opengl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_visualization_graphic3d_custom_opengl.py -------------------------------------------------------------------------------- /examples/core_visualization_overpaint_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_visualization_overpaint_viewer.py -------------------------------------------------------------------------------- /examples/core_webgl_STEP_to_X3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_webgl_STEP_to_X3D.py -------------------------------------------------------------------------------- /examples/core_webgl_mesh_quality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_webgl_mesh_quality.py -------------------------------------------------------------------------------- /examples/core_webgl_threejs_bigfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_webgl_threejs_bigfile.py -------------------------------------------------------------------------------- /examples/core_webgl_threejs_bigfile_multipleshapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_webgl_threejs_bigfile_multipleshapes.py -------------------------------------------------------------------------------- /examples/core_webgl_threejs_bigfile_oneshape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_webgl_threejs_bigfile_oneshape.py -------------------------------------------------------------------------------- /examples/core_webgl_threejs_cylinderhead_faces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_webgl_threejs_cylinderhead_faces.py -------------------------------------------------------------------------------- /examples/core_webgl_threejs_helix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_webgl_threejs_helix.py -------------------------------------------------------------------------------- /examples/core_webgl_threejs_random_toruses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_webgl_threejs_random_toruses.py -------------------------------------------------------------------------------- /examples/core_webgl_threejs_torus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_webgl_threejs_torus.py -------------------------------------------------------------------------------- /examples/core_webgl_x3dom_bigfile_multipleshapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_webgl_x3dom_bigfile_multipleshapes.py -------------------------------------------------------------------------------- /examples/core_webgl_x3dom_cylinderhead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_webgl_x3dom_cylinderhead.py -------------------------------------------------------------------------------- /examples/core_webgl_x3dom_random_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/core_webgl_x3dom_random_boxes.py -------------------------------------------------------------------------------- /examples/ifc_clip_plane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/examples/ifc_clip_plane.py -------------------------------------------------------------------------------- /jupyter_notebooks/boolean_ops.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/jupyter_notebooks/boolean_ops.ipynb -------------------------------------------------------------------------------- /jupyter_notebooks/boolean_shape_upgrade.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/jupyter_notebooks/boolean_shape_upgrade.ipynb -------------------------------------------------------------------------------- /jupyter_notebooks/display_as_svg.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/jupyter_notebooks/display_as_svg.ipynb -------------------------------------------------------------------------------- /jupyter_notebooks/helix.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/jupyter_notebooks/helix.ipynb -------------------------------------------------------------------------------- /jupyter_notebooks/helloworld.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/jupyter_notebooks/helloworld.ipynb -------------------------------------------------------------------------------- /jupyter_notebooks/ifc_display_basic_file.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/jupyter_notebooks/ifc_display_basic_file.ipynb -------------------------------------------------------------------------------- /jupyter_notebooks/load_brep.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/jupyter_notebooks/load_brep.ipynb -------------------------------------------------------------------------------- /jupyter_notebooks/load_step_ap203_multiple_shapes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/jupyter_notebooks/load_step_ap203_multiple_shapes.ipynb -------------------------------------------------------------------------------- /jupyter_notebooks/load_step_ap203_one_shape.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/jupyter_notebooks/load_step_ap203_one_shape.ipynb -------------------------------------------------------------------------------- /jupyter_notebooks/make_draft_angle.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/jupyter_notebooks/make_draft_angle.ipynb -------------------------------------------------------------------------------- /jupyter_notebooks/make_prism.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/jupyter_notebooks/make_prism.ipynb -------------------------------------------------------------------------------- /jupyter_notebooks/point_cloud.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/jupyter_notebooks/point_cloud.ipynb -------------------------------------------------------------------------------- /jupyter_notebooks/set_callback.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/jupyter_notebooks/set_callback.ipynb -------------------------------------------------------------------------------- /jupyter_notebooks/splitter_demo_V2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/jupyter_notebooks/splitter_demo_V2.ipynb -------------------------------------------------------------------------------- /jupyter_notebooks/torus_mesh_quality.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/jupyter_notebooks/torus_mesh_quality.ipynb -------------------------------------------------------------------------------- /jupyter_notebooks/triangle_mesh_gmsh.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/jupyter_notebooks/triangle_mesh_gmsh.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_examples.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | python run_examples_as_tests.py 3 | -------------------------------------------------------------------------------- /run_examples_as_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpaviot/pythonocc-demos/HEAD/run_examples_as_tests.py --------------------------------------------------------------------------------