[Blender] Implemented tesselation for CAD-model, retopology and optimisation tesselation's result, assigning physical properties with assigned material

This commit is contained in:
brothermechanic 2023-06-24 13:54:49 +00:00 committed by Igor Brylyov
parent 9fa936cfba
commit 839ce36c70
19 changed files with 891 additions and 351 deletions

View file

@ -10,7 +10,7 @@
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
__version__ = "0.1"
__version__ = '0.1'
import logging
import bpy
@ -20,7 +20,7 @@ logging.basicConfig(level=logging.INFO)
def remove_collections(collection_name=None):
"""Removes all all collection or collection_name only"""
'''Removes all all collection or collection_name only'''
if collection_name:
collection = bpy.data.collections.get(collection_name)
try: