Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:18:51 +08:00
commit d80558b1cf
52 changed files with 12920 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
"""
Blender Toolkit Utilities
유틸리티 모듈
"""
from .bone_matching import (
normalize_bone_name,
calculate_similarity,
find_best_match,
fuzzy_match_bones,
get_match_quality_report,
)
from .logger import (
get_logger,
setup_logging,
log_function_call,
log_error,
)
__all__ = [
# Bone matching
'normalize_bone_name',
'calculate_similarity',
'find_best_match',
'fuzzy_match_bones',
'get_match_quality_report',
# Logging
'get_logger',
'setup_logging',
'log_function_call',
'log_error',
]