import{_ as s,c as i,o as a,a4 as t}from"./chunks/framework.DpC1ZpOZ.js";const c=JSON.parse('{"title":"mbcp.mp_math.angle","description":"","frontmatter":{"title":"mbcp.mp_math.angle","lastUpdated":false},"headers":[],"relativePath":"en/api/mp_math/angle.md","filePath":"en/api/mp_math/angle.md"}'),e={name:"en/api/mp_math/angle.md"},n=t('

Module mbcp.mp_math.angle

本模块定义了角度相关的类

class Angle

class AnyAngle(Angle)


method __init__(self, value: float, is_radian: bool = False)

Description: 任意角度。

Arguments:

Source code or View on GitHub
python
def __init__(self, value: float, is_radian: bool=False):\n    if is_radian:\n        self.radian = value\n    else:\n        self.radian = value * PI / 180

@property

method complementary(self) -> AnyAngle

Description: 余角:两角的和为90°。

Return: 余角

Source code or View on GitHub
python
@property\ndef complementary(self) -> 'AnyAngle':\n    return AnyAngle(PI / 2 - self.minimum_positive.radian, is_radian=True)

@property

method supplementary(self) -> AnyAngle

Description: 补角:两角的和为180°。

Return: 补角

Source code or View on GitHub
python
@property\ndef supplementary(self) -> 'AnyAngle':\n    return AnyAngle(PI - self.minimum_positive.radian, is_radian=True)

@property

method degree(self) -> float

Description: 角度。

Return: 弧度

Source code or View on GitHub
python
@property\ndef degree(self) -> float:\n    return self.radian * 180 / PI

@property

method minimum_positive(self) -> AnyAngle

Description: 最小正角。

Return: 最小正角度

Source code or View on GitHub
python
@property\ndef minimum_positive(self) -> 'AnyAngle':\n    return AnyAngle(self.radian % (2 * PI))

@property

method maximum_negative(self) -> AnyAngle

Description: 最大负角。

Return: 最大负角度

Source code or View on GitHub
python
@property\ndef maximum_negative(self) -> 'AnyAngle':\n    return AnyAngle(-self.radian % (2 * PI), is_radian=True)

@property

method sin(self) -> float

Description: 正弦值。

Return: 正弦值

Source code or View on GitHub
python
@property\ndef sin(self) -> float:\n    return math.sin(self.radian)

@property

method cos(self) -> float

Description: 余弦值。

Return: 余弦值

Source code or View on GitHub
python
@property\ndef cos(self) -> float:\n    return math.cos(self.radian)

@property

method tan(self) -> float

Description: 正切值。

Return: 正切值

Source code or View on GitHub
python
@property\ndef tan(self) -> float:\n    return math.tan(self.radian)

@property

method cot(self) -> float

Description: 余切值。

Return: 余切值

Source code or View on GitHub
python
@property\ndef cot(self) -> float:\n    return 1 / math.tan(self.radian)

@property

method sec(self) -> float

Description: 正割值。

Return: 正割值

Source code or View on GitHub
python
@property\ndef sec(self) -> float:\n    return 1 / math.cos(self.radian)

@property

method csc(self) -> float

Description: 余割值。

Return: 余割值

Source code or View on GitHub
python
@property\ndef csc(self) -> float:\n    return 1 / math.sin(self.radian)

method self + other: AnyAngle => AnyAngle

Source code or View on GitHub
python
def __add__(self, other: 'AnyAngle') -> 'AnyAngle':\n    return AnyAngle(self.radian + other.radian, is_radian=True)

method self == other

Source code or View on GitHub
python
def __eq__(self, other):\n    return approx(self.radian, other.radian)

method self - other: AnyAngle => AnyAngle

Source code or View on GitHub
python
def __sub__(self, other: 'AnyAngle') -> 'AnyAngle':\n    return AnyAngle(self.radian - other.radian, is_radian=True)

method self * other: float => AnyAngle

Source code or View on GitHub
python
def __mul__(self, other: float) -> 'AnyAngle':\n    return AnyAngle(self.radian * other, is_radian=True)

@overload

method self / other: float => AnyAngle

Source code or View on GitHub
python
@overload\ndef __truediv__(self, other: float) -> 'AnyAngle':\n    ...

@overload

method self / other: AnyAngle => float

Source code or View on GitHub
python
@overload\ndef __truediv__(self, other: 'AnyAngle') -> float:\n    ...

method self / other

Source code or View on GitHub
python
def __truediv__(self, other):\n    if isinstance(other, AnyAngle):\n        return self.radian / other.radian\n    return AnyAngle(self.radian / other, is_radian=True)
',99),h=[n];function l(p,r,k,o,d,g){return a(),i("div",null,h)}const m=s(e,[["render",l]]);export{c as __pageData,m as default};