├── .gitignore ├── README.md ├── carbon_tools.py ├── color_management_presets.py ├── io_import_photoscan_cameras.py ├── io_mesh_fast_obj ├── __init__.py ├── export_obj.pyx └── setup.py ├── space_view3d_point_cloud_visualizer.py ├── system_time_tracker.py └── uv_tube_unwrap.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlik/bpy/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlik/bpy/HEAD/README.md -------------------------------------------------------------------------------- /carbon_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlik/bpy/HEAD/carbon_tools.py -------------------------------------------------------------------------------- /color_management_presets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlik/bpy/HEAD/color_management_presets.py -------------------------------------------------------------------------------- /io_import_photoscan_cameras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlik/bpy/HEAD/io_import_photoscan_cameras.py -------------------------------------------------------------------------------- /io_mesh_fast_obj/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlik/bpy/HEAD/io_mesh_fast_obj/__init__.py -------------------------------------------------------------------------------- /io_mesh_fast_obj/export_obj.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlik/bpy/HEAD/io_mesh_fast_obj/export_obj.pyx -------------------------------------------------------------------------------- /io_mesh_fast_obj/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlik/bpy/HEAD/io_mesh_fast_obj/setup.py -------------------------------------------------------------------------------- /space_view3d_point_cloud_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlik/bpy/HEAD/space_view3d_point_cloud_visualizer.py -------------------------------------------------------------------------------- /system_time_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlik/bpy/HEAD/system_time_tracker.py -------------------------------------------------------------------------------- /uv_tube_unwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlik/bpy/HEAD/uv_tube_unwrap.py --------------------------------------------------------------------------------