├── LICENSE ├── plugins ├── py-cmd_gui_dynamic_2024 │ ├── preview.png │ ├── py-cmd_gui_dynamic_2024.pyp │ └── readme.md ├── py-cmd_gui_hello_world_2024 │ ├── preview.png │ ├── py-cmd_gui_hello_world_2024.pyp │ └── readme.md ├── py-cmd_gui_persistent_2024 │ ├── preview.png │ ├── py-cmd_gui_persistent_2024.pyp │ └── readme.md ├── py-cmd_gui_persistent_no_restart_2024 │ ├── preview.png │ ├── py-cmd_gui_persistent_no_restart_2024.pyp │ └── readme.md ├── py-cmd_gui_resources_2024 │ ├── preview.png │ ├── py-cmd_gui_resources_2024.pyp │ ├── readme.md │ ├── res │ │ ├── c4d_symbols.h │ │ ├── dialogs │ │ │ ├── idd_buttons.res │ │ │ └── idd_values.res │ │ ├── strings_de-DE │ │ │ ├── c4d_strings.str │ │ │ └── dialogs │ │ │ │ ├── idd_buttons.str │ │ │ │ └── idd_values.str │ │ ├── strings_en-US │ │ │ ├── c4d_strings.str │ │ │ └── dialogs │ │ │ │ ├── idd_buttons.str │ │ │ │ └── idd_values.str │ │ └── strings_fr-FR │ │ │ ├── c4d_strings.str │ │ │ └── dialogs │ │ │ ├── idd_buttons.str │ │ │ └── idd_values.str │ └── unicode_encode_strings.py ├── py-cmd_gui_simple_2024 │ ├── preview.png │ ├── py-cmd_gui_simple_2024.pyp │ └── readme.md ├── py-custom_icon_r21 │ ├── py-custom_icon_r21.pyp │ └── res │ │ ├── c4d_symbols.h │ │ ├── customicon.tif │ │ ├── description │ │ ├── py_custom_icon.h │ │ └── py_custom_icon.res │ │ └── strings_us │ │ └── description │ │ └── py_custom_icon.str ├── py-double_circle_r19 │ ├── py-double_circle_r19.pyp │ └── res │ │ ├── c4d_symbols.h │ │ ├── circle.tif │ │ ├── description │ │ ├── opydoublecircle.h │ │ └── opydoublecircle.res │ │ └── strings_us │ │ └── description │ │ └── opydoublecircle.str ├── py-dynamic_parameters_object_r18 │ ├── py-dynamic_parameters_object_r18.pyp │ └── res │ │ ├── c4d_symbols.h │ │ ├── description │ │ ├── opydynamicparametersobject.h │ │ └── opydynamicparametersobject.res │ │ └── strings_us │ │ └── description │ │ └── opydynamicparametersobject.str ├── py-fresnel_r13 │ ├── py-fresnel_r13.pyp │ └── res │ │ ├── c4d_symbols.h │ │ └── strings_us │ │ └── c4d_strings.str ├── py-gravitation_r12 │ ├── py-gravitation_r12.pyp │ └── res │ │ ├── c4d_symbols.h │ │ ├── description │ │ ├── gravitation.h │ │ └── gravitation.res │ │ ├── gravitation.tif │ │ └── strings_us │ │ └── description │ │ └── gravitation.str ├── py-ies_meta_r12 │ ├── py-ies-meta-loader.pyp │ ├── py-ies_meta_r12.pyp │ └── res │ │ ├── c4d_symbols.h │ │ ├── description │ │ ├── fies_loader.h │ │ └── fies_loader.res │ │ └── strings_us │ │ ├── c4d_strings.str │ │ └── description │ │ └── fies_loader.str ├── py-licensing_2026 │ ├── README.md │ ├── preview.png │ ├── py-licensing_2026.pyp │ ├── py-licensing_simple_2026.pyp │ └── res │ │ ├── c4d_symbols.h │ │ ├── description │ │ ├── Olicenseablecube.h │ │ └── Olicenseablecube.res │ │ ├── dialogs │ │ └── dlg_license_manager.res │ │ └── strings_us │ │ ├── c4d_strings.str │ │ ├── description │ │ └── Olicenseablecube.str │ │ └── dialogs │ │ └── dlg_license_manager.str ├── py-licensing_example_r21 │ └── py-licensing_example_r21.pyp ├── py-liquid_painter_r12 │ ├── py-liquid_painter_r12.pyp │ └── res │ │ ├── c4d_symbols.h │ │ ├── liquid.tif │ │ └── strings_us │ │ └── c4d_strings.str ├── py-look_at_camera_r13 │ ├── py-look_at_camera_r13.pyp │ └── res │ │ ├── c4d_symbols.h │ │ ├── description │ │ ├── tpylookatcamera.h │ │ └── tpylookatcamera.res │ │ ├── strings_us │ │ └── description │ │ │ └── tpylookatcamera.str │ │ └── tpylookatcamera.tif ├── py-memory_viewer_r12 │ ├── py-memory_viewer_r12.pyp │ └── res │ │ └── mviewer.tif ├── py-noise_falloff_r14 │ ├── py-noise_falloff_r14.pyp │ └── res │ │ ├── c4d_symbols.h │ │ ├── description │ │ ├── Ofalloff_pynoise.h │ │ └── Ofalloff_pynoise.res │ │ └── strings_us │ │ └── description │ │ └── Ofalloff_pynoise.str ├── py-ocio_node_2025 │ ├── py-ocio_node_2025.pyp │ └── res │ │ ├── c4d_symbols.h │ │ ├── description │ │ ├── oocionode2025.h │ │ └── oocionode2025.res │ │ └── strings_en-US │ │ ├── c4d_strings.str │ │ └── description │ │ └── oocionode2025.str ├── py-osffset_y_spline_r16 │ ├── py-osffset_y_spline_r16.pyp │ └── res │ │ ├── c4d_symbols.h │ │ ├── description │ │ ├── py_offsets_y_spline.h │ │ └── py_offsets_y_spline.res │ │ └── strings_us │ │ └── description │ │ └── py_offsets_y_spline.str ├── py-preference_r19 │ ├── py-preference_r19.pyp │ └── res │ │ ├── c4d_symbols.h │ │ ├── description │ │ ├── pypreference.h │ │ └── pypreference.res │ │ └── strings_us │ │ └── description │ │ └── pypreference.str ├── py-render_token_r21 │ └── py-render_token_r21.pyp ├── py-rounded_tube_r13 │ ├── py-rounded_tube_r13.pyp │ └── res │ │ ├── c4d_symbols.h │ │ ├── description │ │ ├── roundedtube.h │ │ └── roundedtube.res │ │ ├── oroundedtube.tif │ │ └── strings_us │ │ └── description │ │ └── roundedtube.str ├── py-sculpt_grab_brush_r16 │ ├── res │ │ ├── c4d_symbols.h │ │ ├── description │ │ │ ├── pythongrabbrush.h │ │ │ └── pythongrabbrush.res │ │ └── strings_us │ │ │ ├── c4d_strings.str │ │ │ └── description │ │ │ └── pythongrabbrush.str │ └── sculpt_grab_brush_r16.pyp ├── py-sculpt_modifier_deformer_r16 │ ├── res │ │ ├── c4d_symbols.h │ │ ├── description │ │ │ ├── opysculptmodifierdeformer.h │ │ │ └── opysculptmodifierdeformer.res │ │ └── strings_us │ │ │ └── description │ │ │ └── opysculptmodifierdeformer.str │ └── sculpt_modifier_deformer_r16.pyp ├── py-sculpt_paint_brush_r16 │ ├── res │ │ ├── c4d_symbols.h │ │ ├── description │ │ │ ├── pythonpaintbrush.h │ │ │ └── pythonpaintbrush.res │ │ └── strings_us │ │ │ ├── c4d_strings.str │ │ │ └── description │ │ │ └── pythonpaintbrush.str │ └── sculpt_paint_brush_r16.pyp ├── py-sculpt_pull_brush_r16 │ ├── res │ │ ├── c4d_symbols.h │ │ ├── description │ │ │ ├── pythonpullbrush.h │ │ │ └── pythonpullbrush.res │ │ └── strings_us │ │ │ ├── c4d_strings.str │ │ │ └── description │ │ │ └── pythonpullbrush.str │ └── sculpt_pull_brush_r16.pyp ├── py-sculpt_save_mask_r15 │ └── sculpt_save_mask_r15.pyp ├── py-sculpt_twist_brush_r16 │ ├── res │ │ ├── c4d_symbols.h │ │ ├── description │ │ │ ├── pythontwistbrush.h │ │ │ └── pythontwistbrush.res │ │ └── strings_us │ │ │ ├── c4d_strings.str │ │ │ └── description │ │ │ └── pythontwistbrush.str │ └── sculpt_twist_brush_r16.pyp ├── py-spherify_modifier_r13 │ ├── py-spherify_modifier_r13.pyp │ └── res │ │ ├── c4d_symbols.h │ │ ├── description │ │ ├── opyspherifymodifier.h │ │ └── opyspherifymodifier.res │ │ ├── opyspherifymodifier.tif │ │ └── strings_us │ │ └── description │ │ └── opyspherifymodifier.str ├── py-texture_baker_r18 │ └── py-texture_baker_r18.pyp ├── py-tooldata_ui_r15 │ ├── py-tooldata_ui_r15.pyp │ └── res │ │ ├── c4d_symbols.h │ │ └── strings_us │ │ └── c4d_strings.str ├── py-xample_loader_r23 │ └── py-xample_loader_r23.pyp ├── py-xample_saver_r23 │ └── py-xample_saver_r23.pyp └── readme.md ├── readme.md ├── scenes ├── py_effector_push_apart_r13.c4d ├── py_effector_random_r13.c4d ├── py_effector_shape_r13.c4d ├── py_field_modifier_readcolor_r20.c4d ├── py_field_modifier_vertexmap_r20.c4d ├── py_field_object_color_direction_r20.c4d ├── py_generator_binary_kite_2025.c4d ├── py_generator_binary_kite_r20.c4d ├── py_generator_mengersponge_r20.c4d ├── py_tag_boid_simulation_r13.c4d ├── py_tag_cs_buildon_r13.c4d ├── py_tag_cube_sin_r13.c4d ├── py_tag_light_intensity_r13.c4d ├── py_tag_sa4_python_r13.c4d └── readme.md └── scripts ├── 01_foundations ├── load_python_script_r26.py ├── readme.md ├── reg_plugin_info_r23.py ├── retrieves_temp_folder_r17.py ├── script_custom_icon_r13.py ├── script_custom_icon_r13.tif └── script_custom_name_description_r13.py ├── 02_data_algorithms ├── basecontainer_basic_r13.py ├── basecontainer_iterates_r13.py ├── c4dnoise_luka_r13.py ├── datatype_gradient_r21.py ├── icondata_basic_r21.py ├── maxon_basearray_r20.py ├── maxon_datadictionary_2023_1.py ├── maxon_tuple_r20.py └── readme.md ├── 03_application_development ├── files_media │ ├── copy_32bits_image_r23.py │ ├── export_alembic_r14.py │ ├── export_obj_r13.py │ ├── geclipmap_fill_color_bitmap_r18.py │ ├── import_obj_r13.py │ ├── import_sketchup_r17.py │ ├── import_step_r20.py │ ├── read_write_memory_file_bitmap_r13.py │ ├── read_write_memory_file_data_r13.py │ ├── readme.md │ └── set_get_globaltexturepaths_r20.py ├── gui │ ├── description │ │ ├── description_check_descid_r18.py │ │ ├── description_create_popup_menu_r18.py │ │ ├── description_getsubdescriptionwithdata_r18.py │ │ └── readme.md │ ├── dialog │ │ ├── customgui_quicktab_r19.py │ │ ├── gedialog_ask_number_r15.py │ │ ├── gedialog_menu_hide_content_r15.py │ │ ├── gedialog_modal_r13.py │ │ ├── gedialog_subdialog_r19.py │ │ ├── geuserarea_basic_r13.py │ │ ├── geuserarea_drag_r13.py │ │ └── readme.md │ └── readme.md ├── readme.md └── threading │ ├── readme.md │ ├── threading_basic_13.py │ └── threading_testdbreak_r13.py ├── 04_3d_concepts ├── modeling │ ├── geometry │ │ ├── geometry_caches_s26.py │ │ ├── geometry_polgyon_edges_2024.0.py │ │ ├── geometry_polygonobject_s26.py │ │ ├── geometry_splineobject_s26.py │ │ ├── geometry_uvw_2025.py │ │ ├── operation_extrude_polygons_s26.py │ │ ├── operation_flatten_polygons_s26.py │ │ ├── operation_transfer_axis_s26.py │ │ └── readme.md │ ├── modeling_commands │ │ ├── readme.md │ │ ├── smc_currentstatetoobject_s26.py │ │ ├── smc_edgesmooth_s26.py │ │ ├── smc_extrude_s26.py │ │ ├── smc_flatten_s26.py │ │ └── smc_join_s26.py │ ├── polygon_reduction │ │ ├── polygonreduction_create_r19.py │ │ ├── polygonreduction_edgelevel_r19.py │ │ ├── polygonreduction_preprocess_r19.py │ │ ├── polygonreduction_trianglelevel_r19.py │ │ ├── polygonreduction_vertexlevel_r19.py │ │ └── readme.md │ ├── read_write_normal_tag_r13.py │ ├── readme.md │ ├── uvw_tag │ │ ├── readme.md │ │ ├── uvwtag_addselection_to_uv_point_pinned_s22_114.py │ │ ├── uvwtag_removeselection_to_uv_point_pinned_s22_114.py │ │ └── uvwtag_retrieve_uv_point_pinned_s22_114.py │ └── vertex_color_tag │ │ ├── readme.md │ │ ├── vertex_color_tag_point_mode_r18.py │ │ └── vertex_color_tag_polygon_mode_r18.py ├── open_color_io_2025_2.py ├── readme.md ├── rendering │ ├── readme.md │ ├── render_current_frame_r12.py │ ├── render_ogl_half_size_r12.py │ ├── render_settings_double_size_r13.py │ ├── render_settings_openexr_data_r20.py │ └── render_with_progress_hook_r21.py ├── scene_elements │ ├── animation │ │ ├── baseobject_find_best_euler_angle_r18.py │ │ ├── baseobject_get_vector_curves_r18.py │ │ ├── baseobject_get_vector_tracks_r18.py │ │ ├── baseobject_quaternion_rotation_mode_r18.py │ │ ├── baseobject_synchronize_vector_track_keys_18.py │ │ ├── ckey_quaternion_interpolation_18.py │ │ ├── ctrack_copy_r14.py │ │ ├── ctrack_create_keys_r13.py │ │ ├── ctrack_synchronized_r18.py │ │ └── readme.md │ ├── materials_shading │ │ ├── material_create_and_set_to_obj_r13.py │ │ ├── material_from_texture_tag_r13.py │ │ ├── material_reflectance_r18.py │ │ ├── material_set_to_selected_poly_r13.py │ │ ├── material_shader_loops_all_r13.py │ │ ├── readme.md │ │ ├── shader_create_bitmap_r13.py │ │ ├── shader_read_layer_r17.py │ │ └── shader_variation_r26.py │ ├── readme.md │ ├── scene_elements │ │ ├── instanceobject_create_r20.py │ │ ├── instanceobject_matrix_r20.py │ │ └── readme.md │ ├── scene_management │ │ ├── basedocument_animate_r13.py │ │ ├── basedocument_creates_marker_r17.py │ │ ├── basedocument_creates_render_r13.py │ │ ├── basedocument_loops_marker_r17.py │ │ ├── basedocument_loops_r13.py │ │ ├── basedocument_read_animated_mesh_r16.py │ │ ├── basedocument_undo_r13.py │ │ ├── c4datom_unique_id_r23.py │ │ ├── layer_creates_r13.py │ │ ├── multipass_creates_r13.py │ │ ├── readme.md │ │ └── renderdata_read_engine_r13.py │ └── take_system │ │ ├── readme.md │ │ ├── takesystem_autotake_r17.py │ │ ├── takesystem_cameras_r17.py │ │ ├── takesystem_counter_part_r17.py │ │ ├── takesystem_cube_override_r17.py │ │ ├── takesystem_loop_takes_r17.py │ │ ├── takesystem_main_take_current_r17.py │ │ ├── takesystem_material_override_r17.py │ │ ├── takesystem_new_take_r17.py │ │ ├── takesystem_override_group_active_r17.py │ │ ├── takesystem_override_group_add_r17.py │ │ ├── takesystem_override_group_materials_r17.py │ │ ├── takesystem_override_group_modes_r17.py │ │ ├── takesystem_override_group_r17.py │ │ ├── takesystem_renderdata_r17.py │ │ ├── takesystem_sphere_override_r17.py │ │ ├── takesystem_take_to_document_r17.py │ │ └── takesystem_userdata_r17.py └── simulation │ ├── particle_group_object_2024_4.py │ └── readme.md ├── 05_modules ├── assets │ ├── asset_databases_r26.py │ ├── asset_metadata_r26.py │ ├── asset_types_r26.py │ └── readme.md ├── batch_render │ ├── batchrender_adds_document_r13.py │ ├── batchrender_loops_queue_r13.py │ └── readme.md ├── bodypaint │ ├── call_uv_command_r18.py │ ├── get_uv_seams_s22_114.py │ └── readme.md ├── colorchooser │ ├── colorchooser_color_to_string_r18.py │ ├── colorchooser_complementary_r18.py │ ├── colorchooser_kelvin_to_rgb_r18.py │ ├── colorchooser_load_colors_r18.py │ ├── colorchooser_save_preset_r18.py │ ├── colorswatch_create_new_group_and_color_r20.py │ ├── colorswatch_creatematerials_r19.py │ └── readme.md ├── lod_object │ ├── lodobject_create_r19.py │ ├── lodobject_display_r19.py │ ├── lodobject_level_r19.py │ ├── lodobject_objectlist_r19.py │ ├── lodobject_parameter_r19.py │ ├── lodobject_simplify_r19.py │ └── readme.md ├── mograph │ ├── fieldlist_add_mask_r21.py │ ├── fieldlist_sampling_r20.py │ ├── fieldobject_sampling_20.py │ ├── get_modata_selection_r18.py │ ├── get_modata_weights_r18.py │ ├── read_modata_color_r16.py │ ├── readme.md │ ├── set_modata_selection_r2024.0.0.py │ ├── set_modata_weights_r18.py │ └── voronoi_fracture_r18.py ├── motion_tracker │ ├── motiontracker_get_2dtrack_from_object_r18.py │ └── readme.md ├── node │ ├── access_graph_entities_2024_2.py │ ├── access_nodematerial_2024.py │ ├── create_nodematerial_2024.py │ ├── create_redshift_nodematerial_2024.py │ ├── create_standard_nodematerial_2023_1.py │ ├── graph_descriptions │ │ ├── applying_descriptions.py │ │ ├── getting_graphs.py │ │ ├── hello_world_brief.py │ │ ├── hello_world_narrative.py │ │ └── readme.md │ ├── group_nodes_r26.py │ ├── modify_port_value_r26.py │ ├── mute_selected_wire_r26.py │ ├── nodegraph_selection_r26.py │ ├── readme.md │ ├── retrieve_information_r26.py │ └── solo_node_r26.py ├── readme.md ├── snap │ ├── readme.md │ ├── snap_enable_quantize_r14.py │ ├── snap_enable_snapping_3d_point_r14.py │ └── snap_workplane_14.py ├── substance │ ├── readme.md │ ├── substance_create_shader_r18.py │ ├── substance_loops_graph_input_output_r18.py │ └── substances_create_material_r18.py ├── thinking_particles │ ├── readme.md │ └── thinking_particles_creates_r16.py ├── token_system │ ├── readme.md │ ├── tokensystem_filter_r17.py │ ├── tokensystem_render_r17.py │ └── tokensystem_root_r17.py ├── volume │ ├── gridaccessor_read_r20.py │ ├── gridaccessor_write_r20.py │ ├── readme.md │ ├── volumebuilder_access_volume_r20.py │ ├── volumebuilder_add_object_r20.py │ ├── volumebuilder_create_r20.py │ ├── volumebuilder_loops_inputs_r20.py │ ├── volumecommand_create_sphere_volume_r20.py │ ├── volumecommand_spline_to_volume_r20.py │ ├── volumeinterface_create_from_vdb_r21.py │ ├── volumetools_bool_2_mesh_r20.py │ ├── volumetools_convert_vector_to_fog_r21.py │ ├── volumetools_create_curl_r21.py │ ├── volumetools_create_gradient_sphere_r20.py │ ├── volumetools_export_mesh_to_vdb_r20.py │ ├── volumetools_import_vdb_r20.py │ ├── volumetools_meshtovolume_volumetomesh_r20.py │ ├── volumetools_mix_2_mesh_r20.py │ └── volumetools_mix_vector_volumes_r21.py └── xpresso │ ├── gvnode_delete_r13.py │ ├── gvnode_move_r13.py │ ├── gvnodemaster_creates_connects_nodes_r13.py │ ├── gvnodemaster_from_xpresso_tag_r13.py │ ├── gvnodemaster_loops_nodes_r13.py │ └── readme.md └── readme.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/LICENSE -------------------------------------------------------------------------------- /plugins/py-cmd_gui_dynamic_2024/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_dynamic_2024/preview.png -------------------------------------------------------------------------------- /plugins/py-cmd_gui_dynamic_2024/py-cmd_gui_dynamic_2024.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_dynamic_2024/py-cmd_gui_dynamic_2024.pyp -------------------------------------------------------------------------------- /plugins/py-cmd_gui_dynamic_2024/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_dynamic_2024/readme.md -------------------------------------------------------------------------------- /plugins/py-cmd_gui_hello_world_2024/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_hello_world_2024/preview.png -------------------------------------------------------------------------------- /plugins/py-cmd_gui_hello_world_2024/py-cmd_gui_hello_world_2024.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_hello_world_2024/py-cmd_gui_hello_world_2024.pyp -------------------------------------------------------------------------------- /plugins/py-cmd_gui_hello_world_2024/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_hello_world_2024/readme.md -------------------------------------------------------------------------------- /plugins/py-cmd_gui_persistent_2024/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_persistent_2024/preview.png -------------------------------------------------------------------------------- /plugins/py-cmd_gui_persistent_2024/py-cmd_gui_persistent_2024.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_persistent_2024/py-cmd_gui_persistent_2024.pyp -------------------------------------------------------------------------------- /plugins/py-cmd_gui_persistent_2024/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_persistent_2024/readme.md -------------------------------------------------------------------------------- /plugins/py-cmd_gui_persistent_no_restart_2024/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_persistent_no_restart_2024/preview.png -------------------------------------------------------------------------------- /plugins/py-cmd_gui_persistent_no_restart_2024/py-cmd_gui_persistent_no_restart_2024.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_persistent_no_restart_2024/py-cmd_gui_persistent_no_restart_2024.pyp -------------------------------------------------------------------------------- /plugins/py-cmd_gui_persistent_no_restart_2024/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_persistent_no_restart_2024/readme.md -------------------------------------------------------------------------------- /plugins/py-cmd_gui_resources_2024/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_resources_2024/preview.png -------------------------------------------------------------------------------- /plugins/py-cmd_gui_resources_2024/py-cmd_gui_resources_2024.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_resources_2024/py-cmd_gui_resources_2024.pyp -------------------------------------------------------------------------------- /plugins/py-cmd_gui_resources_2024/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_resources_2024/readme.md -------------------------------------------------------------------------------- /plugins/py-cmd_gui_resources_2024/res/c4d_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_resources_2024/res/c4d_symbols.h -------------------------------------------------------------------------------- /plugins/py-cmd_gui_resources_2024/res/dialogs/idd_buttons.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_resources_2024/res/dialogs/idd_buttons.res -------------------------------------------------------------------------------- /plugins/py-cmd_gui_resources_2024/res/dialogs/idd_values.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_resources_2024/res/dialogs/idd_values.res -------------------------------------------------------------------------------- /plugins/py-cmd_gui_resources_2024/res/strings_de-DE/c4d_strings.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_resources_2024/res/strings_de-DE/c4d_strings.str -------------------------------------------------------------------------------- /plugins/py-cmd_gui_resources_2024/res/strings_de-DE/dialogs/idd_buttons.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_resources_2024/res/strings_de-DE/dialogs/idd_buttons.str -------------------------------------------------------------------------------- /plugins/py-cmd_gui_resources_2024/res/strings_de-DE/dialogs/idd_values.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_resources_2024/res/strings_de-DE/dialogs/idd_values.str -------------------------------------------------------------------------------- /plugins/py-cmd_gui_resources_2024/res/strings_en-US/c4d_strings.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_resources_2024/res/strings_en-US/c4d_strings.str -------------------------------------------------------------------------------- /plugins/py-cmd_gui_resources_2024/res/strings_en-US/dialogs/idd_buttons.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_resources_2024/res/strings_en-US/dialogs/idd_buttons.str -------------------------------------------------------------------------------- /plugins/py-cmd_gui_resources_2024/res/strings_en-US/dialogs/idd_values.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_resources_2024/res/strings_en-US/dialogs/idd_values.str -------------------------------------------------------------------------------- /plugins/py-cmd_gui_resources_2024/res/strings_fr-FR/c4d_strings.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_resources_2024/res/strings_fr-FR/c4d_strings.str -------------------------------------------------------------------------------- /plugins/py-cmd_gui_resources_2024/res/strings_fr-FR/dialogs/idd_buttons.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_resources_2024/res/strings_fr-FR/dialogs/idd_buttons.str -------------------------------------------------------------------------------- /plugins/py-cmd_gui_resources_2024/res/strings_fr-FR/dialogs/idd_values.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_resources_2024/res/strings_fr-FR/dialogs/idd_values.str -------------------------------------------------------------------------------- /plugins/py-cmd_gui_resources_2024/unicode_encode_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_resources_2024/unicode_encode_strings.py -------------------------------------------------------------------------------- /plugins/py-cmd_gui_simple_2024/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_simple_2024/preview.png -------------------------------------------------------------------------------- /plugins/py-cmd_gui_simple_2024/py-cmd_gui_simple_2024.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_simple_2024/py-cmd_gui_simple_2024.pyp -------------------------------------------------------------------------------- /plugins/py-cmd_gui_simple_2024/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-cmd_gui_simple_2024/readme.md -------------------------------------------------------------------------------- /plugins/py-custom_icon_r21/py-custom_icon_r21.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-custom_icon_r21/py-custom_icon_r21.pyp -------------------------------------------------------------------------------- /plugins/py-custom_icon_r21/res/c4d_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-custom_icon_r21/res/c4d_symbols.h -------------------------------------------------------------------------------- /plugins/py-custom_icon_r21/res/customicon.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-custom_icon_r21/res/customicon.tif -------------------------------------------------------------------------------- /plugins/py-custom_icon_r21/res/description/py_custom_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-custom_icon_r21/res/description/py_custom_icon.h -------------------------------------------------------------------------------- /plugins/py-custom_icon_r21/res/description/py_custom_icon.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-custom_icon_r21/res/description/py_custom_icon.res -------------------------------------------------------------------------------- /plugins/py-custom_icon_r21/res/strings_us/description/py_custom_icon.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-custom_icon_r21/res/strings_us/description/py_custom_icon.str -------------------------------------------------------------------------------- /plugins/py-double_circle_r19/py-double_circle_r19.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-double_circle_r19/py-double_circle_r19.pyp -------------------------------------------------------------------------------- /plugins/py-double_circle_r19/res/c4d_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-double_circle_r19/res/c4d_symbols.h -------------------------------------------------------------------------------- /plugins/py-double_circle_r19/res/circle.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-double_circle_r19/res/circle.tif -------------------------------------------------------------------------------- /plugins/py-double_circle_r19/res/description/opydoublecircle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-double_circle_r19/res/description/opydoublecircle.h -------------------------------------------------------------------------------- /plugins/py-double_circle_r19/res/description/opydoublecircle.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-double_circle_r19/res/description/opydoublecircle.res -------------------------------------------------------------------------------- /plugins/py-double_circle_r19/res/strings_us/description/opydoublecircle.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-double_circle_r19/res/strings_us/description/opydoublecircle.str -------------------------------------------------------------------------------- /plugins/py-dynamic_parameters_object_r18/py-dynamic_parameters_object_r18.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-dynamic_parameters_object_r18/py-dynamic_parameters_object_r18.pyp -------------------------------------------------------------------------------- /plugins/py-dynamic_parameters_object_r18/res/c4d_symbols.h: -------------------------------------------------------------------------------- 1 | enum 2 | { 3 | // End of symbol definition 4 | _DUMMY_ELEMENT_ 5 | }; 6 | -------------------------------------------------------------------------------- /plugins/py-dynamic_parameters_object_r18/res/description/opydynamicparametersobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-dynamic_parameters_object_r18/res/description/opydynamicparametersobject.h -------------------------------------------------------------------------------- /plugins/py-dynamic_parameters_object_r18/res/description/opydynamicparametersobject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-dynamic_parameters_object_r18/res/description/opydynamicparametersobject.res -------------------------------------------------------------------------------- /plugins/py-dynamic_parameters_object_r18/res/strings_us/description/opydynamicparametersobject.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-dynamic_parameters_object_r18/res/strings_us/description/opydynamicparametersobject.str -------------------------------------------------------------------------------- /plugins/py-fresnel_r13/py-fresnel_r13.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-fresnel_r13/py-fresnel_r13.pyp -------------------------------------------------------------------------------- /plugins/py-fresnel_r13/res/c4d_symbols.h: -------------------------------------------------------------------------------- 1 | enum 2 | { 3 | // End of symbol definition 4 | IDS_PY_FRESNEL=10000, 5 | _DUMMY_ELEMENT_ 6 | }; 7 | -------------------------------------------------------------------------------- /plugins/py-fresnel_r13/res/strings_us/c4d_strings.str: -------------------------------------------------------------------------------- 1 | STRINGTABLE 2 | { 3 | IDS_PY_FRESNEL "Py-Fresnel"; 4 | } 5 | -------------------------------------------------------------------------------- /plugins/py-gravitation_r12/py-gravitation_r12.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-gravitation_r12/py-gravitation_r12.pyp -------------------------------------------------------------------------------- /plugins/py-gravitation_r12/res/c4d_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-gravitation_r12/res/c4d_symbols.h -------------------------------------------------------------------------------- /plugins/py-gravitation_r12/res/description/gravitation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-gravitation_r12/res/description/gravitation.h -------------------------------------------------------------------------------- /plugins/py-gravitation_r12/res/description/gravitation.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-gravitation_r12/res/description/gravitation.res -------------------------------------------------------------------------------- /plugins/py-gravitation_r12/res/gravitation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-gravitation_r12/res/gravitation.tif -------------------------------------------------------------------------------- /plugins/py-gravitation_r12/res/strings_us/description/gravitation.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-gravitation_r12/res/strings_us/description/gravitation.str -------------------------------------------------------------------------------- /plugins/py-ies_meta_r12/py-ies-meta-loader.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-ies_meta_r12/py-ies-meta-loader.pyp -------------------------------------------------------------------------------- /plugins/py-ies_meta_r12/py-ies_meta_r12.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-ies_meta_r12/py-ies_meta_r12.pyp -------------------------------------------------------------------------------- /plugins/py-ies_meta_r12/res/c4d_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-ies_meta_r12/res/c4d_symbols.h -------------------------------------------------------------------------------- /plugins/py-ies_meta_r12/res/description/fies_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-ies_meta_r12/res/description/fies_loader.h -------------------------------------------------------------------------------- /plugins/py-ies_meta_r12/res/description/fies_loader.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-ies_meta_r12/res/description/fies_loader.res -------------------------------------------------------------------------------- /plugins/py-ies_meta_r12/res/strings_us/c4d_strings.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-ies_meta_r12/res/strings_us/c4d_strings.str -------------------------------------------------------------------------------- /plugins/py-ies_meta_r12/res/strings_us/description/fies_loader.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-ies_meta_r12/res/strings_us/description/fies_loader.str -------------------------------------------------------------------------------- /plugins/py-licensing_2026/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-licensing_2026/README.md -------------------------------------------------------------------------------- /plugins/py-licensing_2026/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-licensing_2026/preview.png -------------------------------------------------------------------------------- /plugins/py-licensing_2026/py-licensing_2026.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-licensing_2026/py-licensing_2026.pyp -------------------------------------------------------------------------------- /plugins/py-licensing_2026/py-licensing_simple_2026.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-licensing_2026/py-licensing_simple_2026.pyp -------------------------------------------------------------------------------- /plugins/py-licensing_2026/res/c4d_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-licensing_2026/res/c4d_symbols.h -------------------------------------------------------------------------------- /plugins/py-licensing_2026/res/description/Olicenseablecube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-licensing_2026/res/description/Olicenseablecube.h -------------------------------------------------------------------------------- /plugins/py-licensing_2026/res/description/Olicenseablecube.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-licensing_2026/res/description/Olicenseablecube.res -------------------------------------------------------------------------------- /plugins/py-licensing_2026/res/dialogs/dlg_license_manager.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-licensing_2026/res/dialogs/dlg_license_manager.res -------------------------------------------------------------------------------- /plugins/py-licensing_2026/res/strings_us/c4d_strings.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-licensing_2026/res/strings_us/c4d_strings.str -------------------------------------------------------------------------------- /plugins/py-licensing_2026/res/strings_us/description/Olicenseablecube.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-licensing_2026/res/strings_us/description/Olicenseablecube.str -------------------------------------------------------------------------------- /plugins/py-licensing_2026/res/strings_us/dialogs/dlg_license_manager.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-licensing_2026/res/strings_us/dialogs/dlg_license_manager.str -------------------------------------------------------------------------------- /plugins/py-licensing_example_r21/py-licensing_example_r21.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-licensing_example_r21/py-licensing_example_r21.pyp -------------------------------------------------------------------------------- /plugins/py-liquid_painter_r12/py-liquid_painter_r12.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-liquid_painter_r12/py-liquid_painter_r12.pyp -------------------------------------------------------------------------------- /plugins/py-liquid_painter_r12/res/c4d_symbols.h: -------------------------------------------------------------------------------- 1 | enum 2 | { 3 | IDS_PRIMITIVETOOL = 50000, 4 | 5 | // End of symbol definition 6 | _DUMMY_ELEMENT_ 7 | }; 8 | -------------------------------------------------------------------------------- /plugins/py-liquid_painter_r12/res/liquid.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-liquid_painter_r12/res/liquid.tif -------------------------------------------------------------------------------- /plugins/py-liquid_painter_r12/res/strings_us/c4d_strings.str: -------------------------------------------------------------------------------- 1 | STRINGTABLE 2 | { 3 | IDS_PRIMITIVETOOL "Py SDK - Liquid Painting Tool"; 4 | } -------------------------------------------------------------------------------- /plugins/py-look_at_camera_r13/py-look_at_camera_r13.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-look_at_camera_r13/py-look_at_camera_r13.pyp -------------------------------------------------------------------------------- /plugins/py-look_at_camera_r13/res/c4d_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-look_at_camera_r13/res/c4d_symbols.h -------------------------------------------------------------------------------- /plugins/py-look_at_camera_r13/res/description/tpylookatcamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-look_at_camera_r13/res/description/tpylookatcamera.h -------------------------------------------------------------------------------- /plugins/py-look_at_camera_r13/res/description/tpylookatcamera.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-look_at_camera_r13/res/description/tpylookatcamera.res -------------------------------------------------------------------------------- /plugins/py-look_at_camera_r13/res/strings_us/description/tpylookatcamera.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-look_at_camera_r13/res/strings_us/description/tpylookatcamera.str -------------------------------------------------------------------------------- /plugins/py-look_at_camera_r13/res/tpylookatcamera.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-look_at_camera_r13/res/tpylookatcamera.tif -------------------------------------------------------------------------------- /plugins/py-memory_viewer_r12/py-memory_viewer_r12.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-memory_viewer_r12/py-memory_viewer_r12.pyp -------------------------------------------------------------------------------- /plugins/py-memory_viewer_r12/res/mviewer.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-memory_viewer_r12/res/mviewer.tif -------------------------------------------------------------------------------- /plugins/py-noise_falloff_r14/py-noise_falloff_r14.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-noise_falloff_r14/py-noise_falloff_r14.pyp -------------------------------------------------------------------------------- /plugins/py-noise_falloff_r14/res/c4d_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-noise_falloff_r14/res/c4d_symbols.h -------------------------------------------------------------------------------- /plugins/py-noise_falloff_r14/res/description/Ofalloff_pynoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-noise_falloff_r14/res/description/Ofalloff_pynoise.h -------------------------------------------------------------------------------- /plugins/py-noise_falloff_r14/res/description/Ofalloff_pynoise.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-noise_falloff_r14/res/description/Ofalloff_pynoise.res -------------------------------------------------------------------------------- /plugins/py-noise_falloff_r14/res/strings_us/description/Ofalloff_pynoise.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-noise_falloff_r14/res/strings_us/description/Ofalloff_pynoise.str -------------------------------------------------------------------------------- /plugins/py-ocio_node_2025/py-ocio_node_2025.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-ocio_node_2025/py-ocio_node_2025.pyp -------------------------------------------------------------------------------- /plugins/py-ocio_node_2025/res/c4d_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-ocio_node_2025/res/c4d_symbols.h -------------------------------------------------------------------------------- /plugins/py-ocio_node_2025/res/description/oocionode2025.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-ocio_node_2025/res/description/oocionode2025.h -------------------------------------------------------------------------------- /plugins/py-ocio_node_2025/res/description/oocionode2025.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-ocio_node_2025/res/description/oocionode2025.res -------------------------------------------------------------------------------- /plugins/py-ocio_node_2025/res/strings_en-US/c4d_strings.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-ocio_node_2025/res/strings_en-US/c4d_strings.str -------------------------------------------------------------------------------- /plugins/py-ocio_node_2025/res/strings_en-US/description/oocionode2025.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-ocio_node_2025/res/strings_en-US/description/oocionode2025.str -------------------------------------------------------------------------------- /plugins/py-osffset_y_spline_r16/py-osffset_y_spline_r16.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-osffset_y_spline_r16/py-osffset_y_spline_r16.pyp -------------------------------------------------------------------------------- /plugins/py-osffset_y_spline_r16/res/c4d_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-osffset_y_spline_r16/res/c4d_symbols.h -------------------------------------------------------------------------------- /plugins/py-osffset_y_spline_r16/res/description/py_offsets_y_spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-osffset_y_spline_r16/res/description/py_offsets_y_spline.h -------------------------------------------------------------------------------- /plugins/py-osffset_y_spline_r16/res/description/py_offsets_y_spline.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-osffset_y_spline_r16/res/description/py_offsets_y_spline.res -------------------------------------------------------------------------------- /plugins/py-osffset_y_spline_r16/res/strings_us/description/py_offsets_y_spline.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-osffset_y_spline_r16/res/strings_us/description/py_offsets_y_spline.str -------------------------------------------------------------------------------- /plugins/py-preference_r19/py-preference_r19.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-preference_r19/py-preference_r19.pyp -------------------------------------------------------------------------------- /plugins/py-preference_r19/res/c4d_symbols.h: -------------------------------------------------------------------------------- 1 | enum 2 | { 3 | // End of symbol definition 4 | _DUMMY_ELEMENT_ 5 | }; -------------------------------------------------------------------------------- /plugins/py-preference_r19/res/description/pypreference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-preference_r19/res/description/pypreference.h -------------------------------------------------------------------------------- /plugins/py-preference_r19/res/description/pypreference.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-preference_r19/res/description/pypreference.res -------------------------------------------------------------------------------- /plugins/py-preference_r19/res/strings_us/description/pypreference.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-preference_r19/res/strings_us/description/pypreference.str -------------------------------------------------------------------------------- /plugins/py-render_token_r21/py-render_token_r21.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-render_token_r21/py-render_token_r21.pyp -------------------------------------------------------------------------------- /plugins/py-rounded_tube_r13/py-rounded_tube_r13.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-rounded_tube_r13/py-rounded_tube_r13.pyp -------------------------------------------------------------------------------- /plugins/py-rounded_tube_r13/res/c4d_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-rounded_tube_r13/res/c4d_symbols.h -------------------------------------------------------------------------------- /plugins/py-rounded_tube_r13/res/description/roundedtube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-rounded_tube_r13/res/description/roundedtube.h -------------------------------------------------------------------------------- /plugins/py-rounded_tube_r13/res/description/roundedtube.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-rounded_tube_r13/res/description/roundedtube.res -------------------------------------------------------------------------------- /plugins/py-rounded_tube_r13/res/oroundedtube.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-rounded_tube_r13/res/oroundedtube.tif -------------------------------------------------------------------------------- /plugins/py-rounded_tube_r13/res/strings_us/description/roundedtube.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-rounded_tube_r13/res/strings_us/description/roundedtube.str -------------------------------------------------------------------------------- /plugins/py-sculpt_grab_brush_r16/res/c4d_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_grab_brush_r16/res/c4d_symbols.h -------------------------------------------------------------------------------- /plugins/py-sculpt_grab_brush_r16/res/description/pythongrabbrush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_grab_brush_r16/res/description/pythongrabbrush.h -------------------------------------------------------------------------------- /plugins/py-sculpt_grab_brush_r16/res/description/pythongrabbrush.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_grab_brush_r16/res/description/pythongrabbrush.res -------------------------------------------------------------------------------- /plugins/py-sculpt_grab_brush_r16/res/strings_us/c4d_strings.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_grab_brush_r16/res/strings_us/c4d_strings.str -------------------------------------------------------------------------------- /plugins/py-sculpt_grab_brush_r16/res/strings_us/description/pythongrabbrush.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_grab_brush_r16/res/strings_us/description/pythongrabbrush.str -------------------------------------------------------------------------------- /plugins/py-sculpt_grab_brush_r16/sculpt_grab_brush_r16.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_grab_brush_r16/sculpt_grab_brush_r16.pyp -------------------------------------------------------------------------------- /plugins/py-sculpt_modifier_deformer_r16/res/c4d_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_modifier_deformer_r16/res/c4d_symbols.h -------------------------------------------------------------------------------- /plugins/py-sculpt_modifier_deformer_r16/res/description/opysculptmodifierdeformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_modifier_deformer_r16/res/description/opysculptmodifierdeformer.h -------------------------------------------------------------------------------- /plugins/py-sculpt_modifier_deformer_r16/res/description/opysculptmodifierdeformer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_modifier_deformer_r16/res/description/opysculptmodifierdeformer.res -------------------------------------------------------------------------------- /plugins/py-sculpt_modifier_deformer_r16/res/strings_us/description/opysculptmodifierdeformer.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_modifier_deformer_r16/res/strings_us/description/opysculptmodifierdeformer.str -------------------------------------------------------------------------------- /plugins/py-sculpt_modifier_deformer_r16/sculpt_modifier_deformer_r16.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_modifier_deformer_r16/sculpt_modifier_deformer_r16.pyp -------------------------------------------------------------------------------- /plugins/py-sculpt_paint_brush_r16/res/c4d_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_paint_brush_r16/res/c4d_symbols.h -------------------------------------------------------------------------------- /plugins/py-sculpt_paint_brush_r16/res/description/pythonpaintbrush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_paint_brush_r16/res/description/pythonpaintbrush.h -------------------------------------------------------------------------------- /plugins/py-sculpt_paint_brush_r16/res/description/pythonpaintbrush.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_paint_brush_r16/res/description/pythonpaintbrush.res -------------------------------------------------------------------------------- /plugins/py-sculpt_paint_brush_r16/res/strings_us/c4d_strings.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_paint_brush_r16/res/strings_us/c4d_strings.str -------------------------------------------------------------------------------- /plugins/py-sculpt_paint_brush_r16/res/strings_us/description/pythonpaintbrush.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_paint_brush_r16/res/strings_us/description/pythonpaintbrush.str -------------------------------------------------------------------------------- /plugins/py-sculpt_paint_brush_r16/sculpt_paint_brush_r16.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_paint_brush_r16/sculpt_paint_brush_r16.pyp -------------------------------------------------------------------------------- /plugins/py-sculpt_pull_brush_r16/res/c4d_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_pull_brush_r16/res/c4d_symbols.h -------------------------------------------------------------------------------- /plugins/py-sculpt_pull_brush_r16/res/description/pythonpullbrush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_pull_brush_r16/res/description/pythonpullbrush.h -------------------------------------------------------------------------------- /plugins/py-sculpt_pull_brush_r16/res/description/pythonpullbrush.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_pull_brush_r16/res/description/pythonpullbrush.res -------------------------------------------------------------------------------- /plugins/py-sculpt_pull_brush_r16/res/strings_us/c4d_strings.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_pull_brush_r16/res/strings_us/c4d_strings.str -------------------------------------------------------------------------------- /plugins/py-sculpt_pull_brush_r16/res/strings_us/description/pythonpullbrush.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_pull_brush_r16/res/strings_us/description/pythonpullbrush.str -------------------------------------------------------------------------------- /plugins/py-sculpt_pull_brush_r16/sculpt_pull_brush_r16.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_pull_brush_r16/sculpt_pull_brush_r16.pyp -------------------------------------------------------------------------------- /plugins/py-sculpt_save_mask_r15/sculpt_save_mask_r15.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_save_mask_r15/sculpt_save_mask_r15.pyp -------------------------------------------------------------------------------- /plugins/py-sculpt_twist_brush_r16/res/c4d_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_twist_brush_r16/res/c4d_symbols.h -------------------------------------------------------------------------------- /plugins/py-sculpt_twist_brush_r16/res/description/pythontwistbrush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_twist_brush_r16/res/description/pythontwistbrush.h -------------------------------------------------------------------------------- /plugins/py-sculpt_twist_brush_r16/res/description/pythontwistbrush.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_twist_brush_r16/res/description/pythontwistbrush.res -------------------------------------------------------------------------------- /plugins/py-sculpt_twist_brush_r16/res/strings_us/c4d_strings.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_twist_brush_r16/res/strings_us/c4d_strings.str -------------------------------------------------------------------------------- /plugins/py-sculpt_twist_brush_r16/res/strings_us/description/pythontwistbrush.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_twist_brush_r16/res/strings_us/description/pythontwistbrush.str -------------------------------------------------------------------------------- /plugins/py-sculpt_twist_brush_r16/sculpt_twist_brush_r16.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-sculpt_twist_brush_r16/sculpt_twist_brush_r16.pyp -------------------------------------------------------------------------------- /plugins/py-spherify_modifier_r13/py-spherify_modifier_r13.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-spherify_modifier_r13/py-spherify_modifier_r13.pyp -------------------------------------------------------------------------------- /plugins/py-spherify_modifier_r13/res/c4d_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-spherify_modifier_r13/res/c4d_symbols.h -------------------------------------------------------------------------------- /plugins/py-spherify_modifier_r13/res/description/opyspherifymodifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-spherify_modifier_r13/res/description/opyspherifymodifier.h -------------------------------------------------------------------------------- /plugins/py-spherify_modifier_r13/res/description/opyspherifymodifier.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-spherify_modifier_r13/res/description/opyspherifymodifier.res -------------------------------------------------------------------------------- /plugins/py-spherify_modifier_r13/res/opyspherifymodifier.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-spherify_modifier_r13/res/opyspherifymodifier.tif -------------------------------------------------------------------------------- /plugins/py-spherify_modifier_r13/res/strings_us/description/opyspherifymodifier.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-spherify_modifier_r13/res/strings_us/description/opyspherifymodifier.str -------------------------------------------------------------------------------- /plugins/py-texture_baker_r18/py-texture_baker_r18.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-texture_baker_r18/py-texture_baker_r18.pyp -------------------------------------------------------------------------------- /plugins/py-tooldata_ui_r15/py-tooldata_ui_r15.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-tooldata_ui_r15/py-tooldata_ui_r15.pyp -------------------------------------------------------------------------------- /plugins/py-tooldata_ui_r15/res/c4d_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-tooldata_ui_r15/res/c4d_symbols.h -------------------------------------------------------------------------------- /plugins/py-tooldata_ui_r15/res/strings_us/c4d_strings.str: -------------------------------------------------------------------------------- 1 | STRINGTABLE 2 | { 3 | } -------------------------------------------------------------------------------- /plugins/py-xample_loader_r23/py-xample_loader_r23.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-xample_loader_r23/py-xample_loader_r23.pyp -------------------------------------------------------------------------------- /plugins/py-xample_saver_r23/py-xample_saver_r23.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/py-xample_saver_r23/py-xample_saver_r23.pyp -------------------------------------------------------------------------------- /plugins/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/plugins/readme.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/readme.md -------------------------------------------------------------------------------- /scenes/py_effector_push_apart_r13.c4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scenes/py_effector_push_apart_r13.c4d -------------------------------------------------------------------------------- /scenes/py_effector_random_r13.c4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scenes/py_effector_random_r13.c4d -------------------------------------------------------------------------------- /scenes/py_effector_shape_r13.c4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scenes/py_effector_shape_r13.c4d -------------------------------------------------------------------------------- /scenes/py_field_modifier_readcolor_r20.c4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scenes/py_field_modifier_readcolor_r20.c4d -------------------------------------------------------------------------------- /scenes/py_field_modifier_vertexmap_r20.c4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scenes/py_field_modifier_vertexmap_r20.c4d -------------------------------------------------------------------------------- /scenes/py_field_object_color_direction_r20.c4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scenes/py_field_object_color_direction_r20.c4d -------------------------------------------------------------------------------- /scenes/py_generator_binary_kite_2025.c4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scenes/py_generator_binary_kite_2025.c4d -------------------------------------------------------------------------------- /scenes/py_generator_binary_kite_r20.c4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scenes/py_generator_binary_kite_r20.c4d -------------------------------------------------------------------------------- /scenes/py_generator_mengersponge_r20.c4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scenes/py_generator_mengersponge_r20.c4d -------------------------------------------------------------------------------- /scenes/py_tag_boid_simulation_r13.c4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scenes/py_tag_boid_simulation_r13.c4d -------------------------------------------------------------------------------- /scenes/py_tag_cs_buildon_r13.c4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scenes/py_tag_cs_buildon_r13.c4d -------------------------------------------------------------------------------- /scenes/py_tag_cube_sin_r13.c4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scenes/py_tag_cube_sin_r13.c4d -------------------------------------------------------------------------------- /scenes/py_tag_light_intensity_r13.c4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scenes/py_tag_light_intensity_r13.c4d -------------------------------------------------------------------------------- /scenes/py_tag_sa4_python_r13.c4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scenes/py_tag_sa4_python_r13.c4d -------------------------------------------------------------------------------- /scenes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scenes/readme.md -------------------------------------------------------------------------------- /scripts/01_foundations/load_python_script_r26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/01_foundations/load_python_script_r26.py -------------------------------------------------------------------------------- /scripts/01_foundations/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/01_foundations/readme.md -------------------------------------------------------------------------------- /scripts/01_foundations/reg_plugin_info_r23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/01_foundations/reg_plugin_info_r23.py -------------------------------------------------------------------------------- /scripts/01_foundations/retrieves_temp_folder_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/01_foundations/retrieves_temp_folder_r17.py -------------------------------------------------------------------------------- /scripts/01_foundations/script_custom_icon_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/01_foundations/script_custom_icon_r13.py -------------------------------------------------------------------------------- /scripts/01_foundations/script_custom_icon_r13.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/01_foundations/script_custom_icon_r13.tif -------------------------------------------------------------------------------- /scripts/01_foundations/script_custom_name_description_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/01_foundations/script_custom_name_description_r13.py -------------------------------------------------------------------------------- /scripts/02_data_algorithms/basecontainer_basic_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/02_data_algorithms/basecontainer_basic_r13.py -------------------------------------------------------------------------------- /scripts/02_data_algorithms/basecontainer_iterates_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/02_data_algorithms/basecontainer_iterates_r13.py -------------------------------------------------------------------------------- /scripts/02_data_algorithms/c4dnoise_luka_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/02_data_algorithms/c4dnoise_luka_r13.py -------------------------------------------------------------------------------- /scripts/02_data_algorithms/datatype_gradient_r21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/02_data_algorithms/datatype_gradient_r21.py -------------------------------------------------------------------------------- /scripts/02_data_algorithms/icondata_basic_r21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/02_data_algorithms/icondata_basic_r21.py -------------------------------------------------------------------------------- /scripts/02_data_algorithms/maxon_basearray_r20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/02_data_algorithms/maxon_basearray_r20.py -------------------------------------------------------------------------------- /scripts/02_data_algorithms/maxon_datadictionary_2023_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/02_data_algorithms/maxon_datadictionary_2023_1.py -------------------------------------------------------------------------------- /scripts/02_data_algorithms/maxon_tuple_r20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/02_data_algorithms/maxon_tuple_r20.py -------------------------------------------------------------------------------- /scripts/02_data_algorithms/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/02_data_algorithms/readme.md -------------------------------------------------------------------------------- /scripts/03_application_development/files_media/copy_32bits_image_r23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/files_media/copy_32bits_image_r23.py -------------------------------------------------------------------------------- /scripts/03_application_development/files_media/export_alembic_r14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/files_media/export_alembic_r14.py -------------------------------------------------------------------------------- /scripts/03_application_development/files_media/export_obj_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/files_media/export_obj_r13.py -------------------------------------------------------------------------------- /scripts/03_application_development/files_media/geclipmap_fill_color_bitmap_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/files_media/geclipmap_fill_color_bitmap_r18.py -------------------------------------------------------------------------------- /scripts/03_application_development/files_media/import_obj_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/files_media/import_obj_r13.py -------------------------------------------------------------------------------- /scripts/03_application_development/files_media/import_sketchup_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/files_media/import_sketchup_r17.py -------------------------------------------------------------------------------- /scripts/03_application_development/files_media/import_step_r20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/files_media/import_step_r20.py -------------------------------------------------------------------------------- /scripts/03_application_development/files_media/read_write_memory_file_bitmap_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/files_media/read_write_memory_file_bitmap_r13.py -------------------------------------------------------------------------------- /scripts/03_application_development/files_media/read_write_memory_file_data_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/files_media/read_write_memory_file_data_r13.py -------------------------------------------------------------------------------- /scripts/03_application_development/files_media/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/files_media/readme.md -------------------------------------------------------------------------------- /scripts/03_application_development/files_media/set_get_globaltexturepaths_r20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/files_media/set_get_globaltexturepaths_r20.py -------------------------------------------------------------------------------- /scripts/03_application_development/gui/description/description_check_descid_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/gui/description/description_check_descid_r18.py -------------------------------------------------------------------------------- /scripts/03_application_development/gui/description/description_create_popup_menu_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/gui/description/description_create_popup_menu_r18.py -------------------------------------------------------------------------------- /scripts/03_application_development/gui/description/description_getsubdescriptionwithdata_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/gui/description/description_getsubdescriptionwithdata_r18.py -------------------------------------------------------------------------------- /scripts/03_application_development/gui/description/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/gui/description/readme.md -------------------------------------------------------------------------------- /scripts/03_application_development/gui/dialog/customgui_quicktab_r19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/gui/dialog/customgui_quicktab_r19.py -------------------------------------------------------------------------------- /scripts/03_application_development/gui/dialog/gedialog_ask_number_r15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/gui/dialog/gedialog_ask_number_r15.py -------------------------------------------------------------------------------- /scripts/03_application_development/gui/dialog/gedialog_menu_hide_content_r15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/gui/dialog/gedialog_menu_hide_content_r15.py -------------------------------------------------------------------------------- /scripts/03_application_development/gui/dialog/gedialog_modal_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/gui/dialog/gedialog_modal_r13.py -------------------------------------------------------------------------------- /scripts/03_application_development/gui/dialog/gedialog_subdialog_r19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/gui/dialog/gedialog_subdialog_r19.py -------------------------------------------------------------------------------- /scripts/03_application_development/gui/dialog/geuserarea_basic_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/gui/dialog/geuserarea_basic_r13.py -------------------------------------------------------------------------------- /scripts/03_application_development/gui/dialog/geuserarea_drag_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/gui/dialog/geuserarea_drag_r13.py -------------------------------------------------------------------------------- /scripts/03_application_development/gui/dialog/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/gui/dialog/readme.md -------------------------------------------------------------------------------- /scripts/03_application_development/gui/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/gui/readme.md -------------------------------------------------------------------------------- /scripts/03_application_development/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/readme.md -------------------------------------------------------------------------------- /scripts/03_application_development/threading/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/threading/readme.md -------------------------------------------------------------------------------- /scripts/03_application_development/threading/threading_basic_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/threading/threading_basic_13.py -------------------------------------------------------------------------------- /scripts/03_application_development/threading/threading_testdbreak_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/03_application_development/threading/threading_testdbreak_r13.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/geometry/geometry_caches_s26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/geometry/geometry_caches_s26.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/geometry/geometry_polgyon_edges_2024.0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/geometry/geometry_polgyon_edges_2024.0.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/geometry/geometry_polygonobject_s26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/geometry/geometry_polygonobject_s26.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/geometry/geometry_splineobject_s26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/geometry/geometry_splineobject_s26.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/geometry/geometry_uvw_2025.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/geometry/geometry_uvw_2025.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/geometry/operation_extrude_polygons_s26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/geometry/operation_extrude_polygons_s26.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/geometry/operation_flatten_polygons_s26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/geometry/operation_flatten_polygons_s26.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/geometry/operation_transfer_axis_s26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/geometry/operation_transfer_axis_s26.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/geometry/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/geometry/readme.md -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/modeling_commands/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/modeling_commands/readme.md -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/modeling_commands/smc_currentstatetoobject_s26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/modeling_commands/smc_currentstatetoobject_s26.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/modeling_commands/smc_edgesmooth_s26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/modeling_commands/smc_edgesmooth_s26.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/modeling_commands/smc_extrude_s26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/modeling_commands/smc_extrude_s26.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/modeling_commands/smc_flatten_s26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/modeling_commands/smc_flatten_s26.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/modeling_commands/smc_join_s26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/modeling_commands/smc_join_s26.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/polygon_reduction/polygonreduction_create_r19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/polygon_reduction/polygonreduction_create_r19.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/polygon_reduction/polygonreduction_edgelevel_r19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/polygon_reduction/polygonreduction_edgelevel_r19.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/polygon_reduction/polygonreduction_preprocess_r19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/polygon_reduction/polygonreduction_preprocess_r19.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/polygon_reduction/polygonreduction_trianglelevel_r19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/polygon_reduction/polygonreduction_trianglelevel_r19.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/polygon_reduction/polygonreduction_vertexlevel_r19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/polygon_reduction/polygonreduction_vertexlevel_r19.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/polygon_reduction/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/polygon_reduction/readme.md -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/read_write_normal_tag_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/read_write_normal_tag_r13.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/readme.md -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/uvw_tag/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/uvw_tag/readme.md -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/uvw_tag/uvwtag_addselection_to_uv_point_pinned_s22_114.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/uvw_tag/uvwtag_addselection_to_uv_point_pinned_s22_114.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/uvw_tag/uvwtag_removeselection_to_uv_point_pinned_s22_114.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/uvw_tag/uvwtag_removeselection_to_uv_point_pinned_s22_114.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/uvw_tag/uvwtag_retrieve_uv_point_pinned_s22_114.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/uvw_tag/uvwtag_retrieve_uv_point_pinned_s22_114.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/vertex_color_tag/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/vertex_color_tag/readme.md -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/vertex_color_tag/vertex_color_tag_point_mode_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/vertex_color_tag/vertex_color_tag_point_mode_r18.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/modeling/vertex_color_tag/vertex_color_tag_polygon_mode_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/modeling/vertex_color_tag/vertex_color_tag_polygon_mode_r18.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/open_color_io_2025_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/open_color_io_2025_2.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/readme.md -------------------------------------------------------------------------------- /scripts/04_3d_concepts/rendering/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/rendering/readme.md -------------------------------------------------------------------------------- /scripts/04_3d_concepts/rendering/render_current_frame_r12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/rendering/render_current_frame_r12.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/rendering/render_ogl_half_size_r12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/rendering/render_ogl_half_size_r12.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/rendering/render_settings_double_size_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/rendering/render_settings_double_size_r13.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/rendering/render_settings_openexr_data_r20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/rendering/render_settings_openexr_data_r20.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/rendering/render_with_progress_hook_r21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/rendering/render_with_progress_hook_r21.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/animation/baseobject_find_best_euler_angle_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/animation/baseobject_find_best_euler_angle_r18.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/animation/baseobject_get_vector_curves_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/animation/baseobject_get_vector_curves_r18.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/animation/baseobject_get_vector_tracks_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/animation/baseobject_get_vector_tracks_r18.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/animation/baseobject_quaternion_rotation_mode_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/animation/baseobject_quaternion_rotation_mode_r18.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/animation/baseobject_synchronize_vector_track_keys_18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/animation/baseobject_synchronize_vector_track_keys_18.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/animation/ckey_quaternion_interpolation_18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/animation/ckey_quaternion_interpolation_18.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/animation/ctrack_copy_r14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/animation/ctrack_copy_r14.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/animation/ctrack_create_keys_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/animation/ctrack_create_keys_r13.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/animation/ctrack_synchronized_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/animation/ctrack_synchronized_r18.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/animation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/animation/readme.md -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/materials_shading/material_create_and_set_to_obj_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/materials_shading/material_create_and_set_to_obj_r13.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/materials_shading/material_from_texture_tag_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/materials_shading/material_from_texture_tag_r13.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/materials_shading/material_reflectance_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/materials_shading/material_reflectance_r18.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/materials_shading/material_set_to_selected_poly_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/materials_shading/material_set_to_selected_poly_r13.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/materials_shading/material_shader_loops_all_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/materials_shading/material_shader_loops_all_r13.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/materials_shading/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/materials_shading/readme.md -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/materials_shading/shader_create_bitmap_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/materials_shading/shader_create_bitmap_r13.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/materials_shading/shader_read_layer_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/materials_shading/shader_read_layer_r17.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/materials_shading/shader_variation_r26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/materials_shading/shader_variation_r26.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/readme.md -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/scene_elements/instanceobject_create_r20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/scene_elements/instanceobject_create_r20.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/scene_elements/instanceobject_matrix_r20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/scene_elements/instanceobject_matrix_r20.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/scene_elements/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/scene_elements/readme.md -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/scene_management/basedocument_animate_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/scene_management/basedocument_animate_r13.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/scene_management/basedocument_creates_marker_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/scene_management/basedocument_creates_marker_r17.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/scene_management/basedocument_creates_render_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/scene_management/basedocument_creates_render_r13.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/scene_management/basedocument_loops_marker_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/scene_management/basedocument_loops_marker_r17.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/scene_management/basedocument_loops_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/scene_management/basedocument_loops_r13.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/scene_management/basedocument_read_animated_mesh_r16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/scene_management/basedocument_read_animated_mesh_r16.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/scene_management/basedocument_undo_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/scene_management/basedocument_undo_r13.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/scene_management/c4datom_unique_id_r23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/scene_management/c4datom_unique_id_r23.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/scene_management/layer_creates_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/scene_management/layer_creates_r13.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/scene_management/multipass_creates_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/scene_management/multipass_creates_r13.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/scene_management/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/scene_management/readme.md -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/scene_management/renderdata_read_engine_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/scene_management/renderdata_read_engine_r13.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/take_system/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/take_system/readme.md -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/take_system/takesystem_autotake_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/take_system/takesystem_autotake_r17.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/take_system/takesystem_cameras_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/take_system/takesystem_cameras_r17.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/take_system/takesystem_counter_part_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/take_system/takesystem_counter_part_r17.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/take_system/takesystem_cube_override_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/take_system/takesystem_cube_override_r17.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/take_system/takesystem_loop_takes_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/take_system/takesystem_loop_takes_r17.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/take_system/takesystem_main_take_current_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/take_system/takesystem_main_take_current_r17.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/take_system/takesystem_material_override_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/take_system/takesystem_material_override_r17.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/take_system/takesystem_new_take_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/take_system/takesystem_new_take_r17.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/take_system/takesystem_override_group_active_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/take_system/takesystem_override_group_active_r17.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/take_system/takesystem_override_group_add_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/take_system/takesystem_override_group_add_r17.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/take_system/takesystem_override_group_materials_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/take_system/takesystem_override_group_materials_r17.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/take_system/takesystem_override_group_modes_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/take_system/takesystem_override_group_modes_r17.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/take_system/takesystem_override_group_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/take_system/takesystem_override_group_r17.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/take_system/takesystem_renderdata_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/take_system/takesystem_renderdata_r17.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/take_system/takesystem_sphere_override_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/take_system/takesystem_sphere_override_r17.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/take_system/takesystem_take_to_document_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/take_system/takesystem_take_to_document_r17.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/scene_elements/take_system/takesystem_userdata_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/scene_elements/take_system/takesystem_userdata_r17.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/simulation/particle_group_object_2024_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/simulation/particle_group_object_2024_4.py -------------------------------------------------------------------------------- /scripts/04_3d_concepts/simulation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/04_3d_concepts/simulation/readme.md -------------------------------------------------------------------------------- /scripts/05_modules/assets/asset_databases_r26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/assets/asset_databases_r26.py -------------------------------------------------------------------------------- /scripts/05_modules/assets/asset_metadata_r26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/assets/asset_metadata_r26.py -------------------------------------------------------------------------------- /scripts/05_modules/assets/asset_types_r26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/assets/asset_types_r26.py -------------------------------------------------------------------------------- /scripts/05_modules/assets/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/assets/readme.md -------------------------------------------------------------------------------- /scripts/05_modules/batch_render/batchrender_adds_document_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/batch_render/batchrender_adds_document_r13.py -------------------------------------------------------------------------------- /scripts/05_modules/batch_render/batchrender_loops_queue_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/batch_render/batchrender_loops_queue_r13.py -------------------------------------------------------------------------------- /scripts/05_modules/batch_render/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/batch_render/readme.md -------------------------------------------------------------------------------- /scripts/05_modules/bodypaint/call_uv_command_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/bodypaint/call_uv_command_r18.py -------------------------------------------------------------------------------- /scripts/05_modules/bodypaint/get_uv_seams_s22_114.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/bodypaint/get_uv_seams_s22_114.py -------------------------------------------------------------------------------- /scripts/05_modules/bodypaint/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/bodypaint/readme.md -------------------------------------------------------------------------------- /scripts/05_modules/colorchooser/colorchooser_color_to_string_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/colorchooser/colorchooser_color_to_string_r18.py -------------------------------------------------------------------------------- /scripts/05_modules/colorchooser/colorchooser_complementary_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/colorchooser/colorchooser_complementary_r18.py -------------------------------------------------------------------------------- /scripts/05_modules/colorchooser/colorchooser_kelvin_to_rgb_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/colorchooser/colorchooser_kelvin_to_rgb_r18.py -------------------------------------------------------------------------------- /scripts/05_modules/colorchooser/colorchooser_load_colors_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/colorchooser/colorchooser_load_colors_r18.py -------------------------------------------------------------------------------- /scripts/05_modules/colorchooser/colorchooser_save_preset_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/colorchooser/colorchooser_save_preset_r18.py -------------------------------------------------------------------------------- /scripts/05_modules/colorchooser/colorswatch_create_new_group_and_color_r20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/colorchooser/colorswatch_create_new_group_and_color_r20.py -------------------------------------------------------------------------------- /scripts/05_modules/colorchooser/colorswatch_creatematerials_r19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/colorchooser/colorswatch_creatematerials_r19.py -------------------------------------------------------------------------------- /scripts/05_modules/colorchooser/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/colorchooser/readme.md -------------------------------------------------------------------------------- /scripts/05_modules/lod_object/lodobject_create_r19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/lod_object/lodobject_create_r19.py -------------------------------------------------------------------------------- /scripts/05_modules/lod_object/lodobject_display_r19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/lod_object/lodobject_display_r19.py -------------------------------------------------------------------------------- /scripts/05_modules/lod_object/lodobject_level_r19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/lod_object/lodobject_level_r19.py -------------------------------------------------------------------------------- /scripts/05_modules/lod_object/lodobject_objectlist_r19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/lod_object/lodobject_objectlist_r19.py -------------------------------------------------------------------------------- /scripts/05_modules/lod_object/lodobject_parameter_r19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/lod_object/lodobject_parameter_r19.py -------------------------------------------------------------------------------- /scripts/05_modules/lod_object/lodobject_simplify_r19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/lod_object/lodobject_simplify_r19.py -------------------------------------------------------------------------------- /scripts/05_modules/lod_object/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/lod_object/readme.md -------------------------------------------------------------------------------- /scripts/05_modules/mograph/fieldlist_add_mask_r21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/mograph/fieldlist_add_mask_r21.py -------------------------------------------------------------------------------- /scripts/05_modules/mograph/fieldlist_sampling_r20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/mograph/fieldlist_sampling_r20.py -------------------------------------------------------------------------------- /scripts/05_modules/mograph/fieldobject_sampling_20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/mograph/fieldobject_sampling_20.py -------------------------------------------------------------------------------- /scripts/05_modules/mograph/get_modata_selection_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/mograph/get_modata_selection_r18.py -------------------------------------------------------------------------------- /scripts/05_modules/mograph/get_modata_weights_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/mograph/get_modata_weights_r18.py -------------------------------------------------------------------------------- /scripts/05_modules/mograph/read_modata_color_r16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/mograph/read_modata_color_r16.py -------------------------------------------------------------------------------- /scripts/05_modules/mograph/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/mograph/readme.md -------------------------------------------------------------------------------- /scripts/05_modules/mograph/set_modata_selection_r2024.0.0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/mograph/set_modata_selection_r2024.0.0.py -------------------------------------------------------------------------------- /scripts/05_modules/mograph/set_modata_weights_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/mograph/set_modata_weights_r18.py -------------------------------------------------------------------------------- /scripts/05_modules/mograph/voronoi_fracture_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/mograph/voronoi_fracture_r18.py -------------------------------------------------------------------------------- /scripts/05_modules/motion_tracker/motiontracker_get_2dtrack_from_object_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/motion_tracker/motiontracker_get_2dtrack_from_object_r18.py -------------------------------------------------------------------------------- /scripts/05_modules/motion_tracker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/motion_tracker/readme.md -------------------------------------------------------------------------------- /scripts/05_modules/node/access_graph_entities_2024_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/node/access_graph_entities_2024_2.py -------------------------------------------------------------------------------- /scripts/05_modules/node/access_nodematerial_2024.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/node/access_nodematerial_2024.py -------------------------------------------------------------------------------- /scripts/05_modules/node/create_nodematerial_2024.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/node/create_nodematerial_2024.py -------------------------------------------------------------------------------- /scripts/05_modules/node/create_redshift_nodematerial_2024.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/node/create_redshift_nodematerial_2024.py -------------------------------------------------------------------------------- /scripts/05_modules/node/create_standard_nodematerial_2023_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/node/create_standard_nodematerial_2023_1.py -------------------------------------------------------------------------------- /scripts/05_modules/node/graph_descriptions/applying_descriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/node/graph_descriptions/applying_descriptions.py -------------------------------------------------------------------------------- /scripts/05_modules/node/graph_descriptions/getting_graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/node/graph_descriptions/getting_graphs.py -------------------------------------------------------------------------------- /scripts/05_modules/node/graph_descriptions/hello_world_brief.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/node/graph_descriptions/hello_world_brief.py -------------------------------------------------------------------------------- /scripts/05_modules/node/graph_descriptions/hello_world_narrative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/node/graph_descriptions/hello_world_narrative.py -------------------------------------------------------------------------------- /scripts/05_modules/node/graph_descriptions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/node/graph_descriptions/readme.md -------------------------------------------------------------------------------- /scripts/05_modules/node/group_nodes_r26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/node/group_nodes_r26.py -------------------------------------------------------------------------------- /scripts/05_modules/node/modify_port_value_r26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/node/modify_port_value_r26.py -------------------------------------------------------------------------------- /scripts/05_modules/node/mute_selected_wire_r26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/node/mute_selected_wire_r26.py -------------------------------------------------------------------------------- /scripts/05_modules/node/nodegraph_selection_r26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/node/nodegraph_selection_r26.py -------------------------------------------------------------------------------- /scripts/05_modules/node/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/node/readme.md -------------------------------------------------------------------------------- /scripts/05_modules/node/retrieve_information_r26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/node/retrieve_information_r26.py -------------------------------------------------------------------------------- /scripts/05_modules/node/solo_node_r26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/node/solo_node_r26.py -------------------------------------------------------------------------------- /scripts/05_modules/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/readme.md -------------------------------------------------------------------------------- /scripts/05_modules/snap/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/snap/readme.md -------------------------------------------------------------------------------- /scripts/05_modules/snap/snap_enable_quantize_r14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/snap/snap_enable_quantize_r14.py -------------------------------------------------------------------------------- /scripts/05_modules/snap/snap_enable_snapping_3d_point_r14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/snap/snap_enable_snapping_3d_point_r14.py -------------------------------------------------------------------------------- /scripts/05_modules/snap/snap_workplane_14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/snap/snap_workplane_14.py -------------------------------------------------------------------------------- /scripts/05_modules/substance/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/substance/readme.md -------------------------------------------------------------------------------- /scripts/05_modules/substance/substance_create_shader_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/substance/substance_create_shader_r18.py -------------------------------------------------------------------------------- /scripts/05_modules/substance/substance_loops_graph_input_output_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/substance/substance_loops_graph_input_output_r18.py -------------------------------------------------------------------------------- /scripts/05_modules/substance/substances_create_material_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/substance/substances_create_material_r18.py -------------------------------------------------------------------------------- /scripts/05_modules/thinking_particles/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/thinking_particles/readme.md -------------------------------------------------------------------------------- /scripts/05_modules/thinking_particles/thinking_particles_creates_r16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/thinking_particles/thinking_particles_creates_r16.py -------------------------------------------------------------------------------- /scripts/05_modules/token_system/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/token_system/readme.md -------------------------------------------------------------------------------- /scripts/05_modules/token_system/tokensystem_filter_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/token_system/tokensystem_filter_r17.py -------------------------------------------------------------------------------- /scripts/05_modules/token_system/tokensystem_render_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/token_system/tokensystem_render_r17.py -------------------------------------------------------------------------------- /scripts/05_modules/token_system/tokensystem_root_r17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/token_system/tokensystem_root_r17.py -------------------------------------------------------------------------------- /scripts/05_modules/volume/gridaccessor_read_r20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/volume/gridaccessor_read_r20.py -------------------------------------------------------------------------------- /scripts/05_modules/volume/gridaccessor_write_r20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/volume/gridaccessor_write_r20.py -------------------------------------------------------------------------------- /scripts/05_modules/volume/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/volume/readme.md -------------------------------------------------------------------------------- /scripts/05_modules/volume/volumebuilder_access_volume_r20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/volume/volumebuilder_access_volume_r20.py -------------------------------------------------------------------------------- /scripts/05_modules/volume/volumebuilder_add_object_r20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/volume/volumebuilder_add_object_r20.py -------------------------------------------------------------------------------- /scripts/05_modules/volume/volumebuilder_create_r20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/volume/volumebuilder_create_r20.py -------------------------------------------------------------------------------- /scripts/05_modules/volume/volumebuilder_loops_inputs_r20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/volume/volumebuilder_loops_inputs_r20.py -------------------------------------------------------------------------------- /scripts/05_modules/volume/volumecommand_create_sphere_volume_r20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/volume/volumecommand_create_sphere_volume_r20.py -------------------------------------------------------------------------------- /scripts/05_modules/volume/volumecommand_spline_to_volume_r20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/volume/volumecommand_spline_to_volume_r20.py -------------------------------------------------------------------------------- /scripts/05_modules/volume/volumeinterface_create_from_vdb_r21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/volume/volumeinterface_create_from_vdb_r21.py -------------------------------------------------------------------------------- /scripts/05_modules/volume/volumetools_bool_2_mesh_r20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/volume/volumetools_bool_2_mesh_r20.py -------------------------------------------------------------------------------- /scripts/05_modules/volume/volumetools_convert_vector_to_fog_r21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/volume/volumetools_convert_vector_to_fog_r21.py -------------------------------------------------------------------------------- /scripts/05_modules/volume/volumetools_create_curl_r21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/volume/volumetools_create_curl_r21.py -------------------------------------------------------------------------------- /scripts/05_modules/volume/volumetools_create_gradient_sphere_r20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/volume/volumetools_create_gradient_sphere_r20.py -------------------------------------------------------------------------------- /scripts/05_modules/volume/volumetools_export_mesh_to_vdb_r20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/volume/volumetools_export_mesh_to_vdb_r20.py -------------------------------------------------------------------------------- /scripts/05_modules/volume/volumetools_import_vdb_r20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/volume/volumetools_import_vdb_r20.py -------------------------------------------------------------------------------- /scripts/05_modules/volume/volumetools_meshtovolume_volumetomesh_r20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/volume/volumetools_meshtovolume_volumetomesh_r20.py -------------------------------------------------------------------------------- /scripts/05_modules/volume/volumetools_mix_2_mesh_r20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/volume/volumetools_mix_2_mesh_r20.py -------------------------------------------------------------------------------- /scripts/05_modules/volume/volumetools_mix_vector_volumes_r21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/volume/volumetools_mix_vector_volumes_r21.py -------------------------------------------------------------------------------- /scripts/05_modules/xpresso/gvnode_delete_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/xpresso/gvnode_delete_r13.py -------------------------------------------------------------------------------- /scripts/05_modules/xpresso/gvnode_move_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/xpresso/gvnode_move_r13.py -------------------------------------------------------------------------------- /scripts/05_modules/xpresso/gvnodemaster_creates_connects_nodes_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/xpresso/gvnodemaster_creates_connects_nodes_r13.py -------------------------------------------------------------------------------- /scripts/05_modules/xpresso/gvnodemaster_from_xpresso_tag_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/xpresso/gvnodemaster_from_xpresso_tag_r13.py -------------------------------------------------------------------------------- /scripts/05_modules/xpresso/gvnodemaster_loops_nodes_r13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/xpresso/gvnodemaster_loops_nodes_r13.py -------------------------------------------------------------------------------- /scripts/05_modules/xpresso/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/05_modules/xpresso/readme.md -------------------------------------------------------------------------------- /scripts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxon-Computer/Cinema-4D-Python-API-Examples/HEAD/scripts/readme.md --------------------------------------------------------------------------------