和过去的自己斗智斗勇,想知道为什么用球坐标系来表示声像方位吗?

This commit is contained in:
2026-07-17 04:01:17 +08:00
parent fc9ec86adb
commit 6b0d88ad5b
3 changed files with 524 additions and 330 deletions
+3
View File
@@ -342,6 +342,9 @@ class SingleNote:
# def __list__(self) -> List[int]:
# 我不认为这个类应当被作为列表使用
def __bool__(self) -> bool:
return bool(self.volume)
def __tuple__(
self,
) -> Tuple[int, int, int, int, int]:
+3 -1
View File
@@ -133,7 +133,9 @@ def load_plugin_from_module(package: Union[Path, str]):
else:
return importlib.import_module(package)
except ModuleNotFoundError as e:
raise PluginNotFoundError("无法找到名为`{}`的插件包".format(package)) from e
raise PluginNotFoundError(
"无法找到名为`{}`的插件包,或该插件包的依赖未正确安装。".format(package)
) from e
class PluginRegistry:
Generated
+518 -329
View File
File diff suppressed because it is too large Load Diff