import{_ as s,c as i,o as a,a4 as t}from"./chunks/framework.DpC1ZpOZ.js";const E=JSON.parse('{"title":"mbcp.mp_math.utils","description":"","frontmatter":{"title":"mbcp.mp_math.utils","lastUpdated":false},"headers":[],"relativePath":"zht/api/mp_math/utils.md","filePath":"zht/api/mp_math/utils.md"}'),l={name:"zht/api/mp_math/utils.md"},n=t(`
mbcp.mp_math.utils
本模块定义了一些常用的工具函数
clamp(x: float, min_: float, max_: float) -> float
説明: 区间限定函数
變數説明:
- x (
float
): 值- min_ (
float
): 最小值- max_ (
float
): 最大值
返回: float
: 限定在区间内的值
def clamp(x: float, min_: float, max_: float) -> float:
return max(min(x, max_), min_)
Approx
__init__(self, value: RealNumber)
説明: 用于近似比较对象
變數説明:
- value (
RealNumber
): 实数
def __init__(self, value: RealNumber):
self.value = value
self == other
def __eq__(self, other):
if isinstance(self.value, (float, int)):
if isinstance(other, (float, int)):
return abs(self.value - other) < APPROX
else:
self.raise_type_error(other)
elif isinstance(self.value, Vector3):
if isinstance(other, (Vector3, Point3, Plane3, Line3)):
return all([approx(self.value.x, other.x), approx(self.value.y, other.y), approx(self.value.z, other.z)])
else:
self.raise_type_error(other)
raise_type_error(self, other)
def raise_type_error(self, other):
raise TypeError(f'Unsupported type: {type(self.value)} and {type(other)}')
self != other
def __ne__(self, other):
return not self.__eq__(other)
approx(x: float, y: float = 0.0, epsilon: float = APPROX) -> bool
説明: 判断两个数是否近似相等。或包装一个实数,用于判断是否近似于0。
變數説明:
- x (
float
): 数1- y (
float
): 数2- epsilon (
float
): 误差
返回: bool
: 是否近似相等
def approx(x: float, y: float=0.0, epsilon: float=APPROX) -> bool:
return abs(x - y) < epsilon
sign(x: float, only_neg: bool = False) -> str
説明: 获取数的符号。
變數説明:
返回: str
: 符号 + - ""
def sign(x: float, only_neg: bool=False) -> str:
if x > 0:
return '+' if not only_neg else ''
elif x < 0:
return '-'
else:
return ''
sign_format(x: float, only_neg: bool = False) -> str
説明: 格式化符号数 -1 -> -1 1 -> +1 0 -> ""
變數説明:
返回: str
: 符号 + - ""
def sign_format(x: float, only_neg: bool=False) -> str:
if x > 0:
return f'+{x}' if not only_neg else f'{x}'
elif x < 0:
return f'-{abs(x)}'
else:
return ''