├── .gitignore ├── LICENSE ├── README.md ├── add-ons ├── pie_menu_with_custom_op │ ├── pie_menu_with_custom_op_final.py │ └── pie_menu_with_custom_op_start.py ├── simple_custom_operator_with_props │ └── simple_custom_operator_with_props.py └── simple_custom_panel │ └── simple_custom_panel.py ├── art_projects └── truchet_tiles │ ├── truchet_tiles_done.py │ ├── truchet_tiles_done_bpybb.py │ └── truchet_tiles_start.py ├── assets └── images │ ├── color_slices.png │ ├── cube_loop.png │ ├── floret.png │ ├── flow_out.png │ ├── import_into_sequence_editor.png │ ├── in_or_out.png │ ├── loop_of_rings.png │ ├── shapeshifting.png │ ├── video_grid.png │ └── weave.png ├── automation ├── apply_color_palettes │ ├── apply_color_palettes_done.py │ └── apply_color_palettes_start.py └── basic_360_turntable_animation │ ├── basic_360_turntable_animation_done.py │ ├── basic_360_turntable_animation_done_bpybb.py │ └── basic_360_turntable_animation_start.py ├── bpybb └── set_up_world_sun_light │ ├── set_up_world_sun_light_end.py │ └── set_up_world_sun_light_start.py ├── brainstorming_reverse_key_lighting ├── script_done.py └── script_start.py ├── color_slices ├── color_slices_part1_done.py ├── color_slices_part2_done.py ├── color_slices_part2_start.py ├── color_slices_part3_done.py ├── color_slices_part3_start.py ├── color_slices_part4_done.py ├── color_slices_part4_start.py ├── color_slices_part5_done.py ├── color_slices_part5_start.py ├── color_slices_part6_done.py ├── color_slices_part6_start.py ├── color_slices_part7_done.py ├── color_slices_part7_start.py ├── color_slices_part8_done.py └── color_slices_part8_start.py ├── compositor_import_image_sequence ├── compositor_import_image_sequence_done.py └── compositor_import_image_sequence_start.py ├── cube_loop ├── cube_loop_done.py └── cube_loop_start.py ├── floret ├── script_done.py ├── script_done_bpybb.py └── script_start.py ├── flow_out ├── flow_out_done.py └── flow_out_start.py ├── geo_nodes └── subdivided_triangulated_cube │ ├── subdivided_triangulated_cube_part_1_done.py │ ├── subdivided_triangulated_cube_part_1_start.py │ └── subdivided_triangulated_cube_part_2_done.py ├── hex_delay ├── hex_delay_done.py └── hex_delay_start.py ├── holder ├── script_done.py ├── script_done_bpybb.py └── script_start.py ├── in_or_out ├── in_or_out_done.py ├── in_or_out_done_bpybb.py └── in_or_out_start.py ├── loop_of_rings ├── loop_of_rings_done.py └── loop_of_rings_start.py ├── outline ├── outline_done.py ├── outline_done_bpybb.py └── outline_start.py ├── sequence_editor_frame_import ├── sequence_editor_frame_import_done.py └── sequence_editor_frame_import_start.py ├── sequence_editor_stitched_together_clips ├── sequence_editor_stitched_together_clips_done.py └── sequence_editor_stitched_together_clips_start.py ├── shapeshifting_loop ├── shapeshifting_done.py ├── shapeshifting_refactor.py ├── shapeshifting_refactor_bpybb.py └── shapeshifting_start.py ├── stack_overflow ├── stack_overflow_done.py ├── stack_overflow_done_bpybb.py └── stack_overflow_start.py ├── stack_spin ├── stack_spin_done.py └── stack_spin_start.py ├── video_grid ├── video_grid_done.py └── video_grid_start.py ├── weave ├── weave_done.py ├── weave_hdri_done.py └── weave_start.py └── working_with_color_palettes ├── color_palettes_done.py └── color_palettes_start.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/README.md -------------------------------------------------------------------------------- /add-ons/pie_menu_with_custom_op/pie_menu_with_custom_op_final.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/add-ons/pie_menu_with_custom_op/pie_menu_with_custom_op_final.py -------------------------------------------------------------------------------- /add-ons/pie_menu_with_custom_op/pie_menu_with_custom_op_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/add-ons/pie_menu_with_custom_op/pie_menu_with_custom_op_start.py -------------------------------------------------------------------------------- /add-ons/simple_custom_operator_with_props/simple_custom_operator_with_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/add-ons/simple_custom_operator_with_props/simple_custom_operator_with_props.py -------------------------------------------------------------------------------- /add-ons/simple_custom_panel/simple_custom_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/add-ons/simple_custom_panel/simple_custom_panel.py -------------------------------------------------------------------------------- /art_projects/truchet_tiles/truchet_tiles_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/art_projects/truchet_tiles/truchet_tiles_done.py -------------------------------------------------------------------------------- /art_projects/truchet_tiles/truchet_tiles_done_bpybb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/art_projects/truchet_tiles/truchet_tiles_done_bpybb.py -------------------------------------------------------------------------------- /art_projects/truchet_tiles/truchet_tiles_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/art_projects/truchet_tiles/truchet_tiles_start.py -------------------------------------------------------------------------------- /assets/images/color_slices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/assets/images/color_slices.png -------------------------------------------------------------------------------- /assets/images/cube_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/assets/images/cube_loop.png -------------------------------------------------------------------------------- /assets/images/floret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/assets/images/floret.png -------------------------------------------------------------------------------- /assets/images/flow_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/assets/images/flow_out.png -------------------------------------------------------------------------------- /assets/images/import_into_sequence_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/assets/images/import_into_sequence_editor.png -------------------------------------------------------------------------------- /assets/images/in_or_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/assets/images/in_or_out.png -------------------------------------------------------------------------------- /assets/images/loop_of_rings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/assets/images/loop_of_rings.png -------------------------------------------------------------------------------- /assets/images/shapeshifting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/assets/images/shapeshifting.png -------------------------------------------------------------------------------- /assets/images/video_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/assets/images/video_grid.png -------------------------------------------------------------------------------- /assets/images/weave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/assets/images/weave.png -------------------------------------------------------------------------------- /automation/apply_color_palettes/apply_color_palettes_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/automation/apply_color_palettes/apply_color_palettes_done.py -------------------------------------------------------------------------------- /automation/apply_color_palettes/apply_color_palettes_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/automation/apply_color_palettes/apply_color_palettes_start.py -------------------------------------------------------------------------------- /automation/basic_360_turntable_animation/basic_360_turntable_animation_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/automation/basic_360_turntable_animation/basic_360_turntable_animation_done.py -------------------------------------------------------------------------------- /automation/basic_360_turntable_animation/basic_360_turntable_animation_done_bpybb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/automation/basic_360_turntable_animation/basic_360_turntable_animation_done_bpybb.py -------------------------------------------------------------------------------- /automation/basic_360_turntable_animation/basic_360_turntable_animation_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/automation/basic_360_turntable_animation/basic_360_turntable_animation_start.py -------------------------------------------------------------------------------- /bpybb/set_up_world_sun_light/set_up_world_sun_light_end.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/bpybb/set_up_world_sun_light/set_up_world_sun_light_end.py -------------------------------------------------------------------------------- /bpybb/set_up_world_sun_light/set_up_world_sun_light_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/bpybb/set_up_world_sun_light/set_up_world_sun_light_start.py -------------------------------------------------------------------------------- /brainstorming_reverse_key_lighting/script_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/brainstorming_reverse_key_lighting/script_done.py -------------------------------------------------------------------------------- /brainstorming_reverse_key_lighting/script_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/brainstorming_reverse_key_lighting/script_start.py -------------------------------------------------------------------------------- /color_slices/color_slices_part1_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/color_slices/color_slices_part1_done.py -------------------------------------------------------------------------------- /color_slices/color_slices_part2_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/color_slices/color_slices_part2_done.py -------------------------------------------------------------------------------- /color_slices/color_slices_part2_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/color_slices/color_slices_part2_start.py -------------------------------------------------------------------------------- /color_slices/color_slices_part3_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/color_slices/color_slices_part3_done.py -------------------------------------------------------------------------------- /color_slices/color_slices_part3_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/color_slices/color_slices_part3_start.py -------------------------------------------------------------------------------- /color_slices/color_slices_part4_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/color_slices/color_slices_part4_done.py -------------------------------------------------------------------------------- /color_slices/color_slices_part4_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/color_slices/color_slices_part4_start.py -------------------------------------------------------------------------------- /color_slices/color_slices_part5_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/color_slices/color_slices_part5_done.py -------------------------------------------------------------------------------- /color_slices/color_slices_part5_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/color_slices/color_slices_part5_start.py -------------------------------------------------------------------------------- /color_slices/color_slices_part6_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/color_slices/color_slices_part6_done.py -------------------------------------------------------------------------------- /color_slices/color_slices_part6_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/color_slices/color_slices_part6_start.py -------------------------------------------------------------------------------- /color_slices/color_slices_part7_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/color_slices/color_slices_part7_done.py -------------------------------------------------------------------------------- /color_slices/color_slices_part7_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/color_slices/color_slices_part7_start.py -------------------------------------------------------------------------------- /color_slices/color_slices_part8_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/color_slices/color_slices_part8_done.py -------------------------------------------------------------------------------- /color_slices/color_slices_part8_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/color_slices/color_slices_part8_start.py -------------------------------------------------------------------------------- /compositor_import_image_sequence/compositor_import_image_sequence_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/compositor_import_image_sequence/compositor_import_image_sequence_done.py -------------------------------------------------------------------------------- /compositor_import_image_sequence/compositor_import_image_sequence_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/compositor_import_image_sequence/compositor_import_image_sequence_start.py -------------------------------------------------------------------------------- /cube_loop/cube_loop_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/cube_loop/cube_loop_done.py -------------------------------------------------------------------------------- /cube_loop/cube_loop_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/cube_loop/cube_loop_start.py -------------------------------------------------------------------------------- /floret/script_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/floret/script_done.py -------------------------------------------------------------------------------- /floret/script_done_bpybb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/floret/script_done_bpybb.py -------------------------------------------------------------------------------- /floret/script_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/floret/script_start.py -------------------------------------------------------------------------------- /flow_out/flow_out_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/flow_out/flow_out_done.py -------------------------------------------------------------------------------- /flow_out/flow_out_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/flow_out/flow_out_start.py -------------------------------------------------------------------------------- /geo_nodes/subdivided_triangulated_cube/subdivided_triangulated_cube_part_1_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/geo_nodes/subdivided_triangulated_cube/subdivided_triangulated_cube_part_1_done.py -------------------------------------------------------------------------------- /geo_nodes/subdivided_triangulated_cube/subdivided_triangulated_cube_part_1_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/geo_nodes/subdivided_triangulated_cube/subdivided_triangulated_cube_part_1_start.py -------------------------------------------------------------------------------- /geo_nodes/subdivided_triangulated_cube/subdivided_triangulated_cube_part_2_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/geo_nodes/subdivided_triangulated_cube/subdivided_triangulated_cube_part_2_done.py -------------------------------------------------------------------------------- /hex_delay/hex_delay_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/hex_delay/hex_delay_done.py -------------------------------------------------------------------------------- /hex_delay/hex_delay_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/hex_delay/hex_delay_start.py -------------------------------------------------------------------------------- /holder/script_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/holder/script_done.py -------------------------------------------------------------------------------- /holder/script_done_bpybb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/holder/script_done_bpybb.py -------------------------------------------------------------------------------- /holder/script_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/holder/script_start.py -------------------------------------------------------------------------------- /in_or_out/in_or_out_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/in_or_out/in_or_out_done.py -------------------------------------------------------------------------------- /in_or_out/in_or_out_done_bpybb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/in_or_out/in_or_out_done_bpybb.py -------------------------------------------------------------------------------- /in_or_out/in_or_out_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/in_or_out/in_or_out_start.py -------------------------------------------------------------------------------- /loop_of_rings/loop_of_rings_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/loop_of_rings/loop_of_rings_done.py -------------------------------------------------------------------------------- /loop_of_rings/loop_of_rings_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/loop_of_rings/loop_of_rings_start.py -------------------------------------------------------------------------------- /outline/outline_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/outline/outline_done.py -------------------------------------------------------------------------------- /outline/outline_done_bpybb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/outline/outline_done_bpybb.py -------------------------------------------------------------------------------- /outline/outline_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/outline/outline_start.py -------------------------------------------------------------------------------- /sequence_editor_frame_import/sequence_editor_frame_import_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/sequence_editor_frame_import/sequence_editor_frame_import_done.py -------------------------------------------------------------------------------- /sequence_editor_frame_import/sequence_editor_frame_import_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/sequence_editor_frame_import/sequence_editor_frame_import_start.py -------------------------------------------------------------------------------- /sequence_editor_stitched_together_clips/sequence_editor_stitched_together_clips_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/sequence_editor_stitched_together_clips/sequence_editor_stitched_together_clips_done.py -------------------------------------------------------------------------------- /sequence_editor_stitched_together_clips/sequence_editor_stitched_together_clips_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/sequence_editor_stitched_together_clips/sequence_editor_stitched_together_clips_start.py -------------------------------------------------------------------------------- /shapeshifting_loop/shapeshifting_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/shapeshifting_loop/shapeshifting_done.py -------------------------------------------------------------------------------- /shapeshifting_loop/shapeshifting_refactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/shapeshifting_loop/shapeshifting_refactor.py -------------------------------------------------------------------------------- /shapeshifting_loop/shapeshifting_refactor_bpybb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/shapeshifting_loop/shapeshifting_refactor_bpybb.py -------------------------------------------------------------------------------- /shapeshifting_loop/shapeshifting_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/shapeshifting_loop/shapeshifting_start.py -------------------------------------------------------------------------------- /stack_overflow/stack_overflow_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/stack_overflow/stack_overflow_done.py -------------------------------------------------------------------------------- /stack_overflow/stack_overflow_done_bpybb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/stack_overflow/stack_overflow_done_bpybb.py -------------------------------------------------------------------------------- /stack_overflow/stack_overflow_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/stack_overflow/stack_overflow_start.py -------------------------------------------------------------------------------- /stack_spin/stack_spin_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/stack_spin/stack_spin_done.py -------------------------------------------------------------------------------- /stack_spin/stack_spin_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/stack_spin/stack_spin_start.py -------------------------------------------------------------------------------- /video_grid/video_grid_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/video_grid/video_grid_done.py -------------------------------------------------------------------------------- /video_grid/video_grid_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/video_grid/video_grid_start.py -------------------------------------------------------------------------------- /weave/weave_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/weave/weave_done.py -------------------------------------------------------------------------------- /weave/weave_hdri_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/weave/weave_hdri_done.py -------------------------------------------------------------------------------- /weave/weave_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/weave/weave_start.py -------------------------------------------------------------------------------- /working_with_color_palettes/color_palettes_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/working_with_color_palettes/color_palettes_done.py -------------------------------------------------------------------------------- /working_with_color_palettes/color_palettes_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/blender_plus_python/HEAD/working_with_color_palettes/color_palettes_start.py --------------------------------------------------------------------------------