├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── Makefile ├── Makefile_excludes ├── README.md ├── RetopoFlow.LICENSE ├── __init__.py ├── addon_common ├── .gitignore ├── CookieCutter.LICENSE ├── README.md ├── common │ ├── __init__.py │ ├── bezier.py │ ├── blender.py │ ├── blender_preferences.py │ ├── bmesh_render.py │ ├── boundvar.py │ ├── colors.py │ ├── config │ │ └── ui_defaultstyles.css │ ├── debug.py │ ├── decorators.py │ ├── drawing.py │ ├── fontmanager.py │ ├── fonts │ │ ├── DejaVuSansMono.LICENSE │ │ ├── DejaVuSansMono.ttf │ │ ├── DroidSans-Blender.ttf │ │ ├── DroidSans.LICENSE │ │ ├── DroidSerif-Bold.ttf │ │ ├── DroidSerif-BoldItalic.ttf │ │ ├── DroidSerif-Italic.ttf │ │ ├── DroidSerif-Regular.ttf │ │ ├── DroidSerif.LICENSE │ │ ├── OpenSans-Bold.ttf │ │ ├── OpenSans-BoldItalic.ttf │ │ ├── OpenSans-Italic.ttf │ │ └── OpenSans.LICENSE │ ├── fsm.py │ ├── functools.py │ ├── globals.py │ ├── gpustate.py │ ├── hasher.py │ ├── human_readable.py │ ├── image_preloader.py │ ├── images │ │ ├── checkmark.png │ │ ├── close.png │ │ ├── collapse_close.png │ │ ├── collapse_open.png │ │ └── radio.png │ ├── inspect.py │ ├── irc.py │ ├── logger.py │ ├── markdown.py │ ├── maths.py │ ├── metaclasses.py │ ├── parse.py │ ├── profiler.py │ ├── shaders.py │ ├── shaders │ │ ├── arrow.glsl │ │ ├── bmesh_render_edges.glsl │ │ ├── bmesh_render_faces.glsl │ │ ├── bmesh_render_old.glsl │ │ ├── bmesh_render_verts.glsl │ │ ├── brushstroke.glsl │ │ ├── circle.glsl │ │ ├── circle_2D.glsl │ │ ├── circle_3D.glsl │ │ ├── edgeshorten.glsl │ │ ├── lineseg_2D.glsl │ │ ├── linesegment.glsl │ │ ├── point_2D.glsl │ │ ├── triangle_2D.glsl │ │ ├── triangle_3D.glsl │ │ └── ui_element.glsl │ ├── timerhandler.py │ ├── ui_core.py │ ├── ui_document.py │ ├── ui_draw.py │ ├── ui_elements.py │ ├── ui_event.py │ ├── ui_layout.py │ ├── ui_linefitter.py │ ├── ui_markdown.py │ ├── ui_properties.py │ ├── ui_settings.py │ ├── ui_styling.py │ ├── ui_utilities.py │ ├── undostack.py │ ├── updater_core.py │ ├── updater_ops.py │ ├── updater_tmp │ │ └── .gitignore │ ├── useractions.py │ ├── utils.py │ └── xmesh.py ├── cookiecutter │ ├── __init__.py │ ├── cookiecutter.py │ ├── cookiecutter_actions.py │ ├── cookiecutter_blender.py │ ├── cookiecutter_debug.py │ ├── cookiecutter_exceptions.py │ ├── cookiecutter_fsm.py │ ├── cookiecutter_modal.py │ ├── cookiecutter_ui.py │ └── test.py ├── ext │ ├── apng.py │ ├── bgl_ext.py │ └── png.py ├── hive │ ├── __init__.py │ └── hive.py └── scripts │ ├── speedtest.py │ └── strip_debugging.py ├── config ├── background.jpg ├── keymaps.py ├── options.py ├── retopoflow.html └── ui.css ├── devnotes ├── blender280notes.md ├── blenderbugs.md ├── demonotes.md └── versionbump.md ├── docs ├── CNAME ├── Gemfile ├── Gemfile.lock ├── _config.yml ├── _data │ ├── keymaps.yml │ └── options.yml ├── _layouts │ └── default.html ├── addon_updater.md ├── addon_updater_advanced.png ├── addon_updater_button.png ├── addon_updater_system.png ├── assets │ └── css │ │ ├── main.css │ │ └── style-old.scss ├── blendermarket.png ├── blendermarket_screenshot.png ├── changelist.md ├── contours-icon.png ├── contours.md ├── debugging.md ├── delete_dialog_pie.png ├── faq.md ├── general.md ├── global_exception.png ├── help_contours.png ├── help_knife.png ├── help_loops.png ├── help_patches.png ├── help_polypen.png ├── help_polypen_modes_options_pie.png ├── help_polystrips.png ├── help_relax.png ├── help_strokes.png ├── help_strokes_modes_options_pie.png ├── help_themes.png ├── help_tweak.png ├── index.md ├── install.png ├── issue_template.md ├── issue_template_simple.md ├── keymap_all.png ├── keymap_button.png ├── keymap_editor.md ├── keymap_insert.png ├── knife-icon.png ├── knife.md ├── loops-icon.png ├── loops.md ├── orange-turbine.png ├── patches-icon.png ├── patches.md ├── pie_menu.png ├── polypen-icon.png ├── polypen.md ├── polystrips-icon.png ├── polystrips.md ├── quick_start.md ├── relax-icon.png ├── relax.md ├── retopoflow_3_feature.png ├── selection_options.png ├── start_rf_create_new_target.png ├── start_rf_quickstart.png ├── start_rf_tool.png ├── strokes-icon.png ├── strokes.md ├── table_of_contents.md ├── tweak-icon.png ├── tweak.md ├── warning_viewlock.png ├── warnings.md ├── warnings.png └── welcome.md ├── docs_config ├── CNAME ├── Gemfile ├── Gemfile.lock ├── _config.yml ├── default.html └── main.css ├── help ├── addon_updater.md ├── addon_updater_advanced.png ├── addon_updater_advanced.thumb.png ├── addon_updater_button.png ├── addon_updater_button.thumb.png ├── addon_updater_system.png ├── addon_updater_system.thumb.png ├── blendermarket_screenshot.png ├── blendermarket_screenshot.thumb.png ├── changelist.md ├── contours.md ├── debugging.md ├── delete_dialog_pie.png ├── delete_dialog_pie.thumb.png ├── faq.md ├── general.md ├── global_exception.png ├── global_exception.thumb.png ├── help_contours.png ├── help_contours.thumb.png ├── help_knife.png ├── help_knife.thumb.png ├── help_loops.png ├── help_loops.thumb.png ├── help_patches.png ├── help_patches.thumb.png ├── help_polypen.png ├── help_polypen.thumb.png ├── help_polypen_modes_options_pie.png ├── help_polypen_modes_options_pie.thumb.png ├── help_polystrips.png ├── help_polystrips.thumb.png ├── help_relax.png ├── help_relax.thumb.png ├── help_strokes.png ├── help_strokes.thumb.png ├── help_strokes_modes_options_pie.png ├── help_strokes_modes_options_pie.thumb.png ├── help_themes.png ├── help_themes.thumb.png ├── help_tweak.png ├── help_tweak.thumb.png ├── index.md ├── install.png ├── install.thumb.png ├── issue_template.md ├── issue_template_simple.md ├── keymap_all.png ├── keymap_all.thumb.png ├── keymap_button.png ├── keymap_button.thumb.png ├── keymap_editor.md ├── keymap_insert.png ├── keymap_insert.thumb.png ├── knife.md ├── loops.md ├── patches.md ├── pie_menu.png ├── pie_menu.thumb.png ├── polypen.md ├── polystrips.md ├── quick_start.md ├── relax.md ├── retopoflow_3_feature.png ├── retopoflow_3_feature.thumb.png ├── selection_options.png ├── selection_options.thumb.png ├── start_rf_create_new_target.png ├── start_rf_create_new_target.thumb.png ├── start_rf_quickstart.png ├── start_rf_quickstart.thumb.png ├── start_rf_tool.png ├── start_rf_tool.thumb.png ├── strokes.md ├── table_of_contents.md ├── tweak.md ├── warning_viewlock.png ├── warning_viewlock.thumb.png ├── warnings.md ├── warnings.png ├── warnings.thumb.png └── welcome.md ├── hive.json ├── icons ├── blendermarket.png ├── contours-icon.png ├── knife-icon.png ├── loops-icon.png ├── orange-turbine.png ├── patches-icon.png ├── polypen-icon.png ├── polystrips-icon.png ├── relax-icon.png ├── strokes-icon.png └── tweak-icon.png ├── retopoflow ├── __init__.py ├── helpsystem.py ├── html │ ├── alert_dialog.html │ ├── delete_dialog.html │ ├── geometry.html │ ├── help_dialog.html │ ├── keymaps_dialog.html │ ├── loading_dialog.html │ ├── main_full.html │ ├── main_tiny.html │ ├── options_dialog.html │ ├── pie_menu.html │ ├── quit_dialog.html │ └── updater_dialog.html ├── keymapsystem.py ├── retopoflow.py ├── rf │ ├── __init__.py │ ├── rf_blender_objects.py │ ├── rf_blender_save.py │ ├── rf_drawing.py │ ├── rf_fsm.py │ ├── rf_grease.py │ ├── rf_helpsystem.py │ ├── rf_instrument.py │ ├── rf_keymapsystem.py │ ├── rf_normalize.py │ ├── rf_sources.py │ ├── rf_spaces.py │ ├── rf_target.py │ ├── rf_tools.py │ ├── rf_ui.py │ ├── rf_ui_alert.py │ ├── rf_undo.py │ └── rf_updatersystem.py ├── rfmesh │ ├── rfmesh.py │ ├── rfmesh_render.py │ └── rfmesh_wrapper.py ├── rftool.py ├── rftool_contours │ ├── __init__.py │ ├── contours.py │ ├── contours_ops.py │ ├── contours_options.html │ ├── contours_props.py │ └── contours_utils.py ├── rftool_knife │ ├── knife.py │ └── knife_options.html ├── rftool_loops │ └── loops.py ├── rftool_patches │ ├── patches.py │ └── patches_options.html ├── rftool_polypen │ ├── polypen.py │ └── polypen_options.html ├── rftool_polystrips │ ├── polystrips.py │ ├── polystrips_ops.py │ ├── polystrips_options.html │ ├── polystrips_props.py │ └── polystrips_utils.py ├── rftool_relax │ ├── relax.py │ └── relax_options.html ├── rftool_strokes │ ├── strokes.py │ ├── strokes_options.html │ └── strokes_utils.py ├── rftool_tweak │ ├── tweak.py │ └── tweak_options.html ├── rfwidget.py ├── rfwidgets │ ├── __init__.py │ ├── rfwidget_brushfalloff.py │ ├── rfwidget_brushstroke.py │ ├── rfwidget_default.py │ ├── rfwidget_hidden.py │ └── rfwidget_linecut.py ├── updater.py └── updatersystem.py └── scripts ├── __init__.py ├── convert_docs_for_web.py ├── create_thumbnails.py ├── detect_filename_case_conflicts.py ├── download_b280.py ├── download_b281.py ├── download_b282.py ├── get_hive_value.py ├── memlimited.sh └── prep_help_for_online.py /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile_excludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/Makefile_excludes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/README.md -------------------------------------------------------------------------------- /RetopoFlow.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/RetopoFlow.LICENSE -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/__init__.py -------------------------------------------------------------------------------- /addon_common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/.gitignore -------------------------------------------------------------------------------- /addon_common/CookieCutter.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/CookieCutter.LICENSE -------------------------------------------------------------------------------- /addon_common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/README.md -------------------------------------------------------------------------------- /addon_common/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/__init__.py -------------------------------------------------------------------------------- /addon_common/common/bezier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/bezier.py -------------------------------------------------------------------------------- /addon_common/common/blender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/blender.py -------------------------------------------------------------------------------- /addon_common/common/blender_preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/blender_preferences.py -------------------------------------------------------------------------------- /addon_common/common/bmesh_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/bmesh_render.py -------------------------------------------------------------------------------- /addon_common/common/boundvar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/boundvar.py -------------------------------------------------------------------------------- /addon_common/common/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/colors.py -------------------------------------------------------------------------------- /addon_common/common/config/ui_defaultstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/config/ui_defaultstyles.css -------------------------------------------------------------------------------- /addon_common/common/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/debug.py -------------------------------------------------------------------------------- /addon_common/common/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/decorators.py -------------------------------------------------------------------------------- /addon_common/common/drawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/drawing.py -------------------------------------------------------------------------------- /addon_common/common/fontmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/fontmanager.py -------------------------------------------------------------------------------- /addon_common/common/fonts/DejaVuSansMono.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/fonts/DejaVuSansMono.LICENSE -------------------------------------------------------------------------------- /addon_common/common/fonts/DejaVuSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/fonts/DejaVuSansMono.ttf -------------------------------------------------------------------------------- /addon_common/common/fonts/DroidSans-Blender.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/fonts/DroidSans-Blender.ttf -------------------------------------------------------------------------------- /addon_common/common/fonts/DroidSans.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/fonts/DroidSans.LICENSE -------------------------------------------------------------------------------- /addon_common/common/fonts/DroidSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/fonts/DroidSerif-Bold.ttf -------------------------------------------------------------------------------- /addon_common/common/fonts/DroidSerif-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/fonts/DroidSerif-BoldItalic.ttf -------------------------------------------------------------------------------- /addon_common/common/fonts/DroidSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/fonts/DroidSerif-Italic.ttf -------------------------------------------------------------------------------- /addon_common/common/fonts/DroidSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/fonts/DroidSerif-Regular.ttf -------------------------------------------------------------------------------- /addon_common/common/fonts/DroidSerif.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/fonts/DroidSerif.LICENSE -------------------------------------------------------------------------------- /addon_common/common/fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /addon_common/common/fonts/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/fonts/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /addon_common/common/fonts/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/fonts/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /addon_common/common/fonts/OpenSans.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/fonts/OpenSans.LICENSE -------------------------------------------------------------------------------- /addon_common/common/fsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/fsm.py -------------------------------------------------------------------------------- /addon_common/common/functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/functools.py -------------------------------------------------------------------------------- /addon_common/common/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/globals.py -------------------------------------------------------------------------------- /addon_common/common/gpustate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/gpustate.py -------------------------------------------------------------------------------- /addon_common/common/hasher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/hasher.py -------------------------------------------------------------------------------- /addon_common/common/human_readable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/human_readable.py -------------------------------------------------------------------------------- /addon_common/common/image_preloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/image_preloader.py -------------------------------------------------------------------------------- /addon_common/common/images/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/images/checkmark.png -------------------------------------------------------------------------------- /addon_common/common/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/images/close.png -------------------------------------------------------------------------------- /addon_common/common/images/collapse_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/images/collapse_close.png -------------------------------------------------------------------------------- /addon_common/common/images/collapse_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/images/collapse_open.png -------------------------------------------------------------------------------- /addon_common/common/images/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/images/radio.png -------------------------------------------------------------------------------- /addon_common/common/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/inspect.py -------------------------------------------------------------------------------- /addon_common/common/irc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/irc.py -------------------------------------------------------------------------------- /addon_common/common/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/logger.py -------------------------------------------------------------------------------- /addon_common/common/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/markdown.py -------------------------------------------------------------------------------- /addon_common/common/maths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/maths.py -------------------------------------------------------------------------------- /addon_common/common/metaclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/metaclasses.py -------------------------------------------------------------------------------- /addon_common/common/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/parse.py -------------------------------------------------------------------------------- /addon_common/common/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/profiler.py -------------------------------------------------------------------------------- /addon_common/common/shaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/shaders.py -------------------------------------------------------------------------------- /addon_common/common/shaders/arrow.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/shaders/arrow.glsl -------------------------------------------------------------------------------- /addon_common/common/shaders/bmesh_render_edges.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/shaders/bmesh_render_edges.glsl -------------------------------------------------------------------------------- /addon_common/common/shaders/bmesh_render_faces.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/shaders/bmesh_render_faces.glsl -------------------------------------------------------------------------------- /addon_common/common/shaders/bmesh_render_old.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/shaders/bmesh_render_old.glsl -------------------------------------------------------------------------------- /addon_common/common/shaders/bmesh_render_verts.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/shaders/bmesh_render_verts.glsl -------------------------------------------------------------------------------- /addon_common/common/shaders/brushstroke.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/shaders/brushstroke.glsl -------------------------------------------------------------------------------- /addon_common/common/shaders/circle.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/shaders/circle.glsl -------------------------------------------------------------------------------- /addon_common/common/shaders/circle_2D.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/shaders/circle_2D.glsl -------------------------------------------------------------------------------- /addon_common/common/shaders/circle_3D.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/shaders/circle_3D.glsl -------------------------------------------------------------------------------- /addon_common/common/shaders/edgeshorten.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/shaders/edgeshorten.glsl -------------------------------------------------------------------------------- /addon_common/common/shaders/lineseg_2D.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/shaders/lineseg_2D.glsl -------------------------------------------------------------------------------- /addon_common/common/shaders/linesegment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/shaders/linesegment.glsl -------------------------------------------------------------------------------- /addon_common/common/shaders/point_2D.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/shaders/point_2D.glsl -------------------------------------------------------------------------------- /addon_common/common/shaders/triangle_2D.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/shaders/triangle_2D.glsl -------------------------------------------------------------------------------- /addon_common/common/shaders/triangle_3D.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/shaders/triangle_3D.glsl -------------------------------------------------------------------------------- /addon_common/common/shaders/ui_element.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/shaders/ui_element.glsl -------------------------------------------------------------------------------- /addon_common/common/timerhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/timerhandler.py -------------------------------------------------------------------------------- /addon_common/common/ui_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/ui_core.py -------------------------------------------------------------------------------- /addon_common/common/ui_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/ui_document.py -------------------------------------------------------------------------------- /addon_common/common/ui_draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/ui_draw.py -------------------------------------------------------------------------------- /addon_common/common/ui_elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/ui_elements.py -------------------------------------------------------------------------------- /addon_common/common/ui_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/ui_event.py -------------------------------------------------------------------------------- /addon_common/common/ui_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/ui_layout.py -------------------------------------------------------------------------------- /addon_common/common/ui_linefitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/ui_linefitter.py -------------------------------------------------------------------------------- /addon_common/common/ui_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/ui_markdown.py -------------------------------------------------------------------------------- /addon_common/common/ui_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/ui_properties.py -------------------------------------------------------------------------------- /addon_common/common/ui_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/ui_settings.py -------------------------------------------------------------------------------- /addon_common/common/ui_styling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/ui_styling.py -------------------------------------------------------------------------------- /addon_common/common/ui_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/ui_utilities.py -------------------------------------------------------------------------------- /addon_common/common/undostack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/undostack.py -------------------------------------------------------------------------------- /addon_common/common/updater_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/updater_core.py -------------------------------------------------------------------------------- /addon_common/common/updater_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/updater_ops.py -------------------------------------------------------------------------------- /addon_common/common/updater_tmp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/updater_tmp/.gitignore -------------------------------------------------------------------------------- /addon_common/common/useractions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/useractions.py -------------------------------------------------------------------------------- /addon_common/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/utils.py -------------------------------------------------------------------------------- /addon_common/common/xmesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/common/xmesh.py -------------------------------------------------------------------------------- /addon_common/cookiecutter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/cookiecutter/__init__.py -------------------------------------------------------------------------------- /addon_common/cookiecutter/cookiecutter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/cookiecutter/cookiecutter.py -------------------------------------------------------------------------------- /addon_common/cookiecutter/cookiecutter_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/cookiecutter/cookiecutter_actions.py -------------------------------------------------------------------------------- /addon_common/cookiecutter/cookiecutter_blender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/cookiecutter/cookiecutter_blender.py -------------------------------------------------------------------------------- /addon_common/cookiecutter/cookiecutter_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/cookiecutter/cookiecutter_debug.py -------------------------------------------------------------------------------- /addon_common/cookiecutter/cookiecutter_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/cookiecutter/cookiecutter_exceptions.py -------------------------------------------------------------------------------- /addon_common/cookiecutter/cookiecutter_fsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/cookiecutter/cookiecutter_fsm.py -------------------------------------------------------------------------------- /addon_common/cookiecutter/cookiecutter_modal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/cookiecutter/cookiecutter_modal.py -------------------------------------------------------------------------------- /addon_common/cookiecutter/cookiecutter_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/cookiecutter/cookiecutter_ui.py -------------------------------------------------------------------------------- /addon_common/cookiecutter/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/cookiecutter/test.py -------------------------------------------------------------------------------- /addon_common/ext/apng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/ext/apng.py -------------------------------------------------------------------------------- /addon_common/ext/bgl_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/ext/bgl_ext.py -------------------------------------------------------------------------------- /addon_common/ext/png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/ext/png.py -------------------------------------------------------------------------------- /addon_common/hive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/hive/__init__.py -------------------------------------------------------------------------------- /addon_common/hive/hive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/hive/hive.py -------------------------------------------------------------------------------- /addon_common/scripts/speedtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/scripts/speedtest.py -------------------------------------------------------------------------------- /addon_common/scripts/strip_debugging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/addon_common/scripts/strip_debugging.py -------------------------------------------------------------------------------- /config/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/config/background.jpg -------------------------------------------------------------------------------- /config/keymaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/config/keymaps.py -------------------------------------------------------------------------------- /config/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/config/options.py -------------------------------------------------------------------------------- /config/retopoflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/config/retopoflow.html -------------------------------------------------------------------------------- /config/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/config/ui.css -------------------------------------------------------------------------------- /devnotes/blender280notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/devnotes/blender280notes.md -------------------------------------------------------------------------------- /devnotes/blenderbugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/devnotes/blenderbugs.md -------------------------------------------------------------------------------- /devnotes/demonotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/devnotes/demonotes.md -------------------------------------------------------------------------------- /devnotes/versionbump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/devnotes/versionbump.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | docs.retopoflow.com -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_data/keymaps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/_data/keymaps.yml -------------------------------------------------------------------------------- /docs/_data/options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/_data/options.yml -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/addon_updater.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/addon_updater.md -------------------------------------------------------------------------------- /docs/addon_updater_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/addon_updater_advanced.png -------------------------------------------------------------------------------- /docs/addon_updater_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/addon_updater_button.png -------------------------------------------------------------------------------- /docs/addon_updater_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/addon_updater_system.png -------------------------------------------------------------------------------- /docs/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/assets/css/main.css -------------------------------------------------------------------------------- /docs/assets/css/style-old.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/assets/css/style-old.scss -------------------------------------------------------------------------------- /docs/blendermarket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/blendermarket.png -------------------------------------------------------------------------------- /docs/blendermarket_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/blendermarket_screenshot.png -------------------------------------------------------------------------------- /docs/changelist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/changelist.md -------------------------------------------------------------------------------- /docs/contours-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/contours-icon.png -------------------------------------------------------------------------------- /docs/contours.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/contours.md -------------------------------------------------------------------------------- /docs/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/debugging.md -------------------------------------------------------------------------------- /docs/delete_dialog_pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/delete_dialog_pie.png -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/general.md -------------------------------------------------------------------------------- /docs/global_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/global_exception.png -------------------------------------------------------------------------------- /docs/help_contours.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/help_contours.png -------------------------------------------------------------------------------- /docs/help_knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/help_knife.png -------------------------------------------------------------------------------- /docs/help_loops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/help_loops.png -------------------------------------------------------------------------------- /docs/help_patches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/help_patches.png -------------------------------------------------------------------------------- /docs/help_polypen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/help_polypen.png -------------------------------------------------------------------------------- /docs/help_polypen_modes_options_pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/help_polypen_modes_options_pie.png -------------------------------------------------------------------------------- /docs/help_polystrips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/help_polystrips.png -------------------------------------------------------------------------------- /docs/help_relax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/help_relax.png -------------------------------------------------------------------------------- /docs/help_strokes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/help_strokes.png -------------------------------------------------------------------------------- /docs/help_strokes_modes_options_pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/help_strokes_modes_options_pie.png -------------------------------------------------------------------------------- /docs/help_themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/help_themes.png -------------------------------------------------------------------------------- /docs/help_tweak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/help_tweak.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/install.png -------------------------------------------------------------------------------- /docs/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/issue_template.md -------------------------------------------------------------------------------- /docs/issue_template_simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/issue_template_simple.md -------------------------------------------------------------------------------- /docs/keymap_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/keymap_all.png -------------------------------------------------------------------------------- /docs/keymap_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/keymap_button.png -------------------------------------------------------------------------------- /docs/keymap_editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/keymap_editor.md -------------------------------------------------------------------------------- /docs/keymap_insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/keymap_insert.png -------------------------------------------------------------------------------- /docs/knife-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/knife-icon.png -------------------------------------------------------------------------------- /docs/knife.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/knife.md -------------------------------------------------------------------------------- /docs/loops-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/loops-icon.png -------------------------------------------------------------------------------- /docs/loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/loops.md -------------------------------------------------------------------------------- /docs/orange-turbine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/orange-turbine.png -------------------------------------------------------------------------------- /docs/patches-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/patches-icon.png -------------------------------------------------------------------------------- /docs/patches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/patches.md -------------------------------------------------------------------------------- /docs/pie_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/pie_menu.png -------------------------------------------------------------------------------- /docs/polypen-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/polypen-icon.png -------------------------------------------------------------------------------- /docs/polypen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/polypen.md -------------------------------------------------------------------------------- /docs/polystrips-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/polystrips-icon.png -------------------------------------------------------------------------------- /docs/polystrips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/polystrips.md -------------------------------------------------------------------------------- /docs/quick_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/quick_start.md -------------------------------------------------------------------------------- /docs/relax-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/relax-icon.png -------------------------------------------------------------------------------- /docs/relax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/relax.md -------------------------------------------------------------------------------- /docs/retopoflow_3_feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/retopoflow_3_feature.png -------------------------------------------------------------------------------- /docs/selection_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/selection_options.png -------------------------------------------------------------------------------- /docs/start_rf_create_new_target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/start_rf_create_new_target.png -------------------------------------------------------------------------------- /docs/start_rf_quickstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/start_rf_quickstart.png -------------------------------------------------------------------------------- /docs/start_rf_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/start_rf_tool.png -------------------------------------------------------------------------------- /docs/strokes-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/strokes-icon.png -------------------------------------------------------------------------------- /docs/strokes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/strokes.md -------------------------------------------------------------------------------- /docs/table_of_contents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/table_of_contents.md -------------------------------------------------------------------------------- /docs/tweak-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/tweak-icon.png -------------------------------------------------------------------------------- /docs/tweak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/tweak.md -------------------------------------------------------------------------------- /docs/warning_viewlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/warning_viewlock.png -------------------------------------------------------------------------------- /docs/warnings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/warnings.md -------------------------------------------------------------------------------- /docs/warnings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/warnings.png -------------------------------------------------------------------------------- /docs/welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs/welcome.md -------------------------------------------------------------------------------- /docs_config/CNAME: -------------------------------------------------------------------------------- 1 | docs.retopoflow.com -------------------------------------------------------------------------------- /docs_config/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs_config/Gemfile -------------------------------------------------------------------------------- /docs_config/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs_config/Gemfile.lock -------------------------------------------------------------------------------- /docs_config/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs_config/_config.yml -------------------------------------------------------------------------------- /docs_config/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs_config/default.html -------------------------------------------------------------------------------- /docs_config/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/docs_config/main.css -------------------------------------------------------------------------------- /help/addon_updater.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/addon_updater.md -------------------------------------------------------------------------------- /help/addon_updater_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/addon_updater_advanced.png -------------------------------------------------------------------------------- /help/addon_updater_advanced.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/addon_updater_advanced.thumb.png -------------------------------------------------------------------------------- /help/addon_updater_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/addon_updater_button.png -------------------------------------------------------------------------------- /help/addon_updater_button.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/addon_updater_button.thumb.png -------------------------------------------------------------------------------- /help/addon_updater_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/addon_updater_system.png -------------------------------------------------------------------------------- /help/addon_updater_system.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/addon_updater_system.thumb.png -------------------------------------------------------------------------------- /help/blendermarket_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/blendermarket_screenshot.png -------------------------------------------------------------------------------- /help/blendermarket_screenshot.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/blendermarket_screenshot.thumb.png -------------------------------------------------------------------------------- /help/changelist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/changelist.md -------------------------------------------------------------------------------- /help/contours.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/contours.md -------------------------------------------------------------------------------- /help/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/debugging.md -------------------------------------------------------------------------------- /help/delete_dialog_pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/delete_dialog_pie.png -------------------------------------------------------------------------------- /help/delete_dialog_pie.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/delete_dialog_pie.thumb.png -------------------------------------------------------------------------------- /help/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/faq.md -------------------------------------------------------------------------------- /help/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/general.md -------------------------------------------------------------------------------- /help/global_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/global_exception.png -------------------------------------------------------------------------------- /help/global_exception.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/global_exception.thumb.png -------------------------------------------------------------------------------- /help/help_contours.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_contours.png -------------------------------------------------------------------------------- /help/help_contours.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_contours.thumb.png -------------------------------------------------------------------------------- /help/help_knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_knife.png -------------------------------------------------------------------------------- /help/help_knife.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_knife.thumb.png -------------------------------------------------------------------------------- /help/help_loops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_loops.png -------------------------------------------------------------------------------- /help/help_loops.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_loops.thumb.png -------------------------------------------------------------------------------- /help/help_patches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_patches.png -------------------------------------------------------------------------------- /help/help_patches.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_patches.thumb.png -------------------------------------------------------------------------------- /help/help_polypen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_polypen.png -------------------------------------------------------------------------------- /help/help_polypen.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_polypen.thumb.png -------------------------------------------------------------------------------- /help/help_polypen_modes_options_pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_polypen_modes_options_pie.png -------------------------------------------------------------------------------- /help/help_polypen_modes_options_pie.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_polypen_modes_options_pie.thumb.png -------------------------------------------------------------------------------- /help/help_polystrips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_polystrips.png -------------------------------------------------------------------------------- /help/help_polystrips.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_polystrips.thumb.png -------------------------------------------------------------------------------- /help/help_relax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_relax.png -------------------------------------------------------------------------------- /help/help_relax.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_relax.thumb.png -------------------------------------------------------------------------------- /help/help_strokes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_strokes.png -------------------------------------------------------------------------------- /help/help_strokes.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_strokes.thumb.png -------------------------------------------------------------------------------- /help/help_strokes_modes_options_pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_strokes_modes_options_pie.png -------------------------------------------------------------------------------- /help/help_strokes_modes_options_pie.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_strokes_modes_options_pie.thumb.png -------------------------------------------------------------------------------- /help/help_themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_themes.png -------------------------------------------------------------------------------- /help/help_themes.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_themes.thumb.png -------------------------------------------------------------------------------- /help/help_tweak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_tweak.png -------------------------------------------------------------------------------- /help/help_tweak.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/help_tweak.thumb.png -------------------------------------------------------------------------------- /help/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/index.md -------------------------------------------------------------------------------- /help/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/install.png -------------------------------------------------------------------------------- /help/install.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/install.thumb.png -------------------------------------------------------------------------------- /help/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/issue_template.md -------------------------------------------------------------------------------- /help/issue_template_simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/issue_template_simple.md -------------------------------------------------------------------------------- /help/keymap_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/keymap_all.png -------------------------------------------------------------------------------- /help/keymap_all.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/keymap_all.thumb.png -------------------------------------------------------------------------------- /help/keymap_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/keymap_button.png -------------------------------------------------------------------------------- /help/keymap_button.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/keymap_button.thumb.png -------------------------------------------------------------------------------- /help/keymap_editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/keymap_editor.md -------------------------------------------------------------------------------- /help/keymap_insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/keymap_insert.png -------------------------------------------------------------------------------- /help/keymap_insert.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/keymap_insert.thumb.png -------------------------------------------------------------------------------- /help/knife.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/knife.md -------------------------------------------------------------------------------- /help/loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/loops.md -------------------------------------------------------------------------------- /help/patches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/patches.md -------------------------------------------------------------------------------- /help/pie_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/pie_menu.png -------------------------------------------------------------------------------- /help/pie_menu.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/pie_menu.thumb.png -------------------------------------------------------------------------------- /help/polypen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/polypen.md -------------------------------------------------------------------------------- /help/polystrips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/polystrips.md -------------------------------------------------------------------------------- /help/quick_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/quick_start.md -------------------------------------------------------------------------------- /help/relax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/relax.md -------------------------------------------------------------------------------- /help/retopoflow_3_feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/retopoflow_3_feature.png -------------------------------------------------------------------------------- /help/retopoflow_3_feature.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/retopoflow_3_feature.thumb.png -------------------------------------------------------------------------------- /help/selection_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/selection_options.png -------------------------------------------------------------------------------- /help/selection_options.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/selection_options.thumb.png -------------------------------------------------------------------------------- /help/start_rf_create_new_target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/start_rf_create_new_target.png -------------------------------------------------------------------------------- /help/start_rf_create_new_target.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/start_rf_create_new_target.thumb.png -------------------------------------------------------------------------------- /help/start_rf_quickstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/start_rf_quickstart.png -------------------------------------------------------------------------------- /help/start_rf_quickstart.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/start_rf_quickstart.thumb.png -------------------------------------------------------------------------------- /help/start_rf_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/start_rf_tool.png -------------------------------------------------------------------------------- /help/start_rf_tool.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/start_rf_tool.thumb.png -------------------------------------------------------------------------------- /help/strokes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/strokes.md -------------------------------------------------------------------------------- /help/table_of_contents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/table_of_contents.md -------------------------------------------------------------------------------- /help/tweak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/tweak.md -------------------------------------------------------------------------------- /help/warning_viewlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/warning_viewlock.png -------------------------------------------------------------------------------- /help/warning_viewlock.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/warning_viewlock.thumb.png -------------------------------------------------------------------------------- /help/warnings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/warnings.md -------------------------------------------------------------------------------- /help/warnings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/warnings.png -------------------------------------------------------------------------------- /help/warnings.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/warnings.thumb.png -------------------------------------------------------------------------------- /help/welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/help/welcome.md -------------------------------------------------------------------------------- /hive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/hive.json -------------------------------------------------------------------------------- /icons/blendermarket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/icons/blendermarket.png -------------------------------------------------------------------------------- /icons/contours-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/icons/contours-icon.png -------------------------------------------------------------------------------- /icons/knife-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/icons/knife-icon.png -------------------------------------------------------------------------------- /icons/loops-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/icons/loops-icon.png -------------------------------------------------------------------------------- /icons/orange-turbine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/icons/orange-turbine.png -------------------------------------------------------------------------------- /icons/patches-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/icons/patches-icon.png -------------------------------------------------------------------------------- /icons/polypen-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/icons/polypen-icon.png -------------------------------------------------------------------------------- /icons/polystrips-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/icons/polystrips-icon.png -------------------------------------------------------------------------------- /icons/relax-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/icons/relax-icon.png -------------------------------------------------------------------------------- /icons/strokes-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/icons/strokes-icon.png -------------------------------------------------------------------------------- /icons/tweak-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/icons/tweak-icon.png -------------------------------------------------------------------------------- /retopoflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/__init__.py -------------------------------------------------------------------------------- /retopoflow/helpsystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/helpsystem.py -------------------------------------------------------------------------------- /retopoflow/html/alert_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/html/alert_dialog.html -------------------------------------------------------------------------------- /retopoflow/html/delete_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/html/delete_dialog.html -------------------------------------------------------------------------------- /retopoflow/html/geometry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/html/geometry.html -------------------------------------------------------------------------------- /retopoflow/html/help_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/html/help_dialog.html -------------------------------------------------------------------------------- /retopoflow/html/keymaps_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/html/keymaps_dialog.html -------------------------------------------------------------------------------- /retopoflow/html/loading_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/html/loading_dialog.html -------------------------------------------------------------------------------- /retopoflow/html/main_full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/html/main_full.html -------------------------------------------------------------------------------- /retopoflow/html/main_tiny.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/html/main_tiny.html -------------------------------------------------------------------------------- /retopoflow/html/options_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/html/options_dialog.html -------------------------------------------------------------------------------- /retopoflow/html/pie_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/html/pie_menu.html -------------------------------------------------------------------------------- /retopoflow/html/quit_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/html/quit_dialog.html -------------------------------------------------------------------------------- /retopoflow/html/updater_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/html/updater_dialog.html -------------------------------------------------------------------------------- /retopoflow/keymapsystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/keymapsystem.py -------------------------------------------------------------------------------- /retopoflow/retopoflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/retopoflow.py -------------------------------------------------------------------------------- /retopoflow/rf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rf/__init__.py -------------------------------------------------------------------------------- /retopoflow/rf/rf_blender_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rf/rf_blender_objects.py -------------------------------------------------------------------------------- /retopoflow/rf/rf_blender_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rf/rf_blender_save.py -------------------------------------------------------------------------------- /retopoflow/rf/rf_drawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rf/rf_drawing.py -------------------------------------------------------------------------------- /retopoflow/rf/rf_fsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rf/rf_fsm.py -------------------------------------------------------------------------------- /retopoflow/rf/rf_grease.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rf/rf_grease.py -------------------------------------------------------------------------------- /retopoflow/rf/rf_helpsystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rf/rf_helpsystem.py -------------------------------------------------------------------------------- /retopoflow/rf/rf_instrument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rf/rf_instrument.py -------------------------------------------------------------------------------- /retopoflow/rf/rf_keymapsystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rf/rf_keymapsystem.py -------------------------------------------------------------------------------- /retopoflow/rf/rf_normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rf/rf_normalize.py -------------------------------------------------------------------------------- /retopoflow/rf/rf_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rf/rf_sources.py -------------------------------------------------------------------------------- /retopoflow/rf/rf_spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rf/rf_spaces.py -------------------------------------------------------------------------------- /retopoflow/rf/rf_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rf/rf_target.py -------------------------------------------------------------------------------- /retopoflow/rf/rf_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rf/rf_tools.py -------------------------------------------------------------------------------- /retopoflow/rf/rf_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rf/rf_ui.py -------------------------------------------------------------------------------- /retopoflow/rf/rf_ui_alert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rf/rf_ui_alert.py -------------------------------------------------------------------------------- /retopoflow/rf/rf_undo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rf/rf_undo.py -------------------------------------------------------------------------------- /retopoflow/rf/rf_updatersystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rf/rf_updatersystem.py -------------------------------------------------------------------------------- /retopoflow/rfmesh/rfmesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rfmesh/rfmesh.py -------------------------------------------------------------------------------- /retopoflow/rfmesh/rfmesh_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rfmesh/rfmesh_render.py -------------------------------------------------------------------------------- /retopoflow/rfmesh/rfmesh_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rfmesh/rfmesh_wrapper.py -------------------------------------------------------------------------------- /retopoflow/rftool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool.py -------------------------------------------------------------------------------- /retopoflow/rftool_contours/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_contours/__init__.py -------------------------------------------------------------------------------- /retopoflow/rftool_contours/contours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_contours/contours.py -------------------------------------------------------------------------------- /retopoflow/rftool_contours/contours_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_contours/contours_ops.py -------------------------------------------------------------------------------- /retopoflow/rftool_contours/contours_options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_contours/contours_options.html -------------------------------------------------------------------------------- /retopoflow/rftool_contours/contours_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_contours/contours_props.py -------------------------------------------------------------------------------- /retopoflow/rftool_contours/contours_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_contours/contours_utils.py -------------------------------------------------------------------------------- /retopoflow/rftool_knife/knife.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_knife/knife.py -------------------------------------------------------------------------------- /retopoflow/rftool_knife/knife_options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_knife/knife_options.html -------------------------------------------------------------------------------- /retopoflow/rftool_loops/loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_loops/loops.py -------------------------------------------------------------------------------- /retopoflow/rftool_patches/patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_patches/patches.py -------------------------------------------------------------------------------- /retopoflow/rftool_patches/patches_options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_patches/patches_options.html -------------------------------------------------------------------------------- /retopoflow/rftool_polypen/polypen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_polypen/polypen.py -------------------------------------------------------------------------------- /retopoflow/rftool_polypen/polypen_options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_polypen/polypen_options.html -------------------------------------------------------------------------------- /retopoflow/rftool_polystrips/polystrips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_polystrips/polystrips.py -------------------------------------------------------------------------------- /retopoflow/rftool_polystrips/polystrips_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_polystrips/polystrips_ops.py -------------------------------------------------------------------------------- /retopoflow/rftool_polystrips/polystrips_options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_polystrips/polystrips_options.html -------------------------------------------------------------------------------- /retopoflow/rftool_polystrips/polystrips_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_polystrips/polystrips_props.py -------------------------------------------------------------------------------- /retopoflow/rftool_polystrips/polystrips_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_polystrips/polystrips_utils.py -------------------------------------------------------------------------------- /retopoflow/rftool_relax/relax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_relax/relax.py -------------------------------------------------------------------------------- /retopoflow/rftool_relax/relax_options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_relax/relax_options.html -------------------------------------------------------------------------------- /retopoflow/rftool_strokes/strokes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_strokes/strokes.py -------------------------------------------------------------------------------- /retopoflow/rftool_strokes/strokes_options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_strokes/strokes_options.html -------------------------------------------------------------------------------- /retopoflow/rftool_strokes/strokes_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_strokes/strokes_utils.py -------------------------------------------------------------------------------- /retopoflow/rftool_tweak/tweak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_tweak/tweak.py -------------------------------------------------------------------------------- /retopoflow/rftool_tweak/tweak_options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rftool_tweak/tweak_options.html -------------------------------------------------------------------------------- /retopoflow/rfwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rfwidget.py -------------------------------------------------------------------------------- /retopoflow/rfwidgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rfwidgets/__init__.py -------------------------------------------------------------------------------- /retopoflow/rfwidgets/rfwidget_brushfalloff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rfwidgets/rfwidget_brushfalloff.py -------------------------------------------------------------------------------- /retopoflow/rfwidgets/rfwidget_brushstroke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rfwidgets/rfwidget_brushstroke.py -------------------------------------------------------------------------------- /retopoflow/rfwidgets/rfwidget_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rfwidgets/rfwidget_default.py -------------------------------------------------------------------------------- /retopoflow/rfwidgets/rfwidget_hidden.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rfwidgets/rfwidget_hidden.py -------------------------------------------------------------------------------- /retopoflow/rfwidgets/rfwidget_linecut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/rfwidgets/rfwidget_linecut.py -------------------------------------------------------------------------------- /retopoflow/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/updater.py -------------------------------------------------------------------------------- /retopoflow/updatersystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/retopoflow/updatersystem.py -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/scripts/__init__.py -------------------------------------------------------------------------------- /scripts/convert_docs_for_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/scripts/convert_docs_for_web.py -------------------------------------------------------------------------------- /scripts/create_thumbnails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/scripts/create_thumbnails.py -------------------------------------------------------------------------------- /scripts/detect_filename_case_conflicts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/scripts/detect_filename_case_conflicts.py -------------------------------------------------------------------------------- /scripts/download_b280.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/scripts/download_b280.py -------------------------------------------------------------------------------- /scripts/download_b281.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/scripts/download_b281.py -------------------------------------------------------------------------------- /scripts/download_b282.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/scripts/download_b282.py -------------------------------------------------------------------------------- /scripts/get_hive_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/scripts/get_hive_value.py -------------------------------------------------------------------------------- /scripts/memlimited.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/scripts/memlimited.sh -------------------------------------------------------------------------------- /scripts/prep_help_for_online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaseAufFeld/retopoflow/HEAD/scripts/prep_help_for_online.py --------------------------------------------------------------------------------