Skip to content

Commit

Permalink
📝 优化文档样式
Browse files Browse the repository at this point in the history
  • Loading branch information
snowykami committed Aug 29, 2024
1 parent 260a0f8 commit 86b8a4c
Show file tree
Hide file tree
Showing 39 changed files with 1,578 additions and 2,327 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,7 @@ A Minecraft particle production library
## 示例
- [【特效红石音乐】童话镇~「总有一条蜿蜒在童话镇里...」](https://www.bilibili.com/video/BV1xE4m1d72j)

- [【特效红石音乐】使一颗心免于哀伤 If I Can Stop One Heart From Breaking「崩坏:星穹铁道 EP」](https://www.bilibili.com/video/BV1B1421t7i3)
- [【特效红石音乐】使一颗心免于哀伤 If I Can Stop One Heart From Breaking「崩坏:星穹铁道 EP」](https://www.bilibili.com/video/BV1B1421t7i3)

- AA
- BB
114 changes: 45 additions & 69 deletions docs/api/mp_math/angle.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,16 @@ title: mbcp.mp_math.angle
### *method* `__init__(self, value: float, is_radian: bool = False)`


任意角度。

**参数**:

- value: 角度或弧度值

- is_radian: 是否为弧度,默认为否
**说明**: 任意角度。

**参数**:
> - value: 角度或弧度值
> - is_radian: 是否为弧度,默认为否

<details>
<summary> <i>源代码</i> </summary>
<summary> <b>源代码</b> </summary>

```python
def __init__(self, value: float, is_radian: bool=False):
Expand All @@ -38,16 +36,14 @@ def __init__(self, value: float, is_radian: bool=False):
### *method* `complementary(self) -> AnyAngle`


余角:两角的和为90°。

**返回**:

- 余角
**说明**: 余角:两角的和为90°。

**返回**: 余角


<details>
<summary> <i>源代码</i> </summary>
<summary> <b>源代码</b> </summary>

```python
@property
Expand All @@ -65,16 +61,14 @@ def complementary(self) -> 'AnyAngle':
### *method* `supplementary(self) -> AnyAngle`


补角:两角的和为180°。

**返回**:

- 补角
**说明**: 补角:两角的和为180°。

**返回**: 补角


<details>
<summary> <i>源代码</i> </summary>
<summary> <b>源代码</b> </summary>

```python
@property
Expand All @@ -92,16 +86,14 @@ def supplementary(self) -> 'AnyAngle':
### *method* `degree(self) -> float`


角度。

**返回**:

- 弧度
**说明**: 角度。

**返回**: 弧度


<details>
<summary> <i>源代码</i> </summary>
<summary> <b>源代码</b> </summary>

```python
@property
Expand All @@ -119,16 +111,14 @@ def degree(self) -> float:
### *method* `minimum_positive(self) -> AnyAngle`


最小正角。

**返回**:

- 最小正角度
**说明**: 最小正角。

**返回**: 最小正角度


<details>
<summary> <i>源代码</i> </summary>
<summary> <b>源代码</b> </summary>

```python
@property
Expand All @@ -146,16 +136,14 @@ def minimum_positive(self) -> 'AnyAngle':
### *method* `maximum_negative(self) -> AnyAngle`


最大负角。

**返回**:

- 最大负角度
**说明**: 最大负角。

**返回**: 最大负角度


<details>
<summary> <i>源代码</i> </summary>
<summary> <b>源代码</b> </summary>

```python
@property
Expand All @@ -173,16 +161,14 @@ def maximum_negative(self) -> 'AnyAngle':
### *method* `sin(self) -> float`


正弦值。

**返回**:

- 正弦值
**说明**: 正弦值

**返回**: 正弦值


<details>
<summary> <i>源代码</i> </summary>
<summary> <b>源代码</b> </summary>

```python
@property
Expand All @@ -200,16 +186,14 @@ def sin(self) -> float:
### *method* `cos(self) -> float`


余弦值。

**返回**:

- 余弦值
**说明**: 余弦值。

**返回**: 余弦值


<details>
<summary> <i>源代码</i> </summary>
<summary> <b>源代码</b> </summary>

```python
@property
Expand All @@ -227,16 +211,14 @@ def cos(self) -> float:
### *method* `tan(self) -> float`


正切值。

**返回**:

- 正切值
**说明**: 正切值

**返回**: 正切值


<details>
<summary> <i>源代码</i> </summary>
<summary> <b>源代码</b> </summary>

```python
@property
Expand All @@ -254,16 +236,14 @@ def tan(self) -> float:
### *method* `cot(self) -> float`


余切值。

**返回**:

- 余切值
**说明**: 余切值。

**返回**: 余切值


<details>
<summary> <i>源代码</i> </summary>
<summary> <b>源代码</b> </summary>

```python
@property
Expand All @@ -281,16 +261,14 @@ def cot(self) -> float:
### *method* `sec(self) -> float`


正割值。

**返回**:

- 正割值
**说明**: 正割值

**返回**: 正割值


<details>
<summary> <i>源代码</i> </summary>
<summary> <b>源代码</b> </summary>

```python
@property
Expand All @@ -308,16 +286,14 @@ def sec(self) -> float:
### *method* `csc(self) -> float`


余割值。

**返回**:

- 余割值
**说明**: 余割值

**返回**: 余割值


<details>
<summary> <i>源代码</i> </summary>
<summary> <b>源代码</b> </summary>

```python
@property
Expand All @@ -335,7 +311,7 @@ def csc(self) -> float:


<details>
<summary> <i>源代码</i> </summary>
<summary> <b>源代码</b> </summary>

```python
def __add__(self, other: 'AnyAngle') -> 'AnyAngle':
Expand All @@ -347,7 +323,7 @@ def __add__(self, other: 'AnyAngle') -> 'AnyAngle':


<details>
<summary> <i>源代码</i> </summary>
<summary> <b>源代码</b> </summary>

```python
def __eq__(self, other):
Expand All @@ -359,7 +335,7 @@ def __eq__(self, other):


<details>
<summary> <i>源代码</i> </summary>
<summary> <b>源代码</b> </summary>

```python
def __sub__(self, other: 'AnyAngle') -> 'AnyAngle':
Expand All @@ -371,7 +347,7 @@ def __sub__(self, other: 'AnyAngle') -> 'AnyAngle':


<details>
<summary> <i>源代码</i> </summary>
<summary> <b>源代码</b> </summary>

```python
def __mul__(self, other: float) -> 'AnyAngle':
Expand All @@ -384,7 +360,7 @@ def __mul__(self, other: float) -> 'AnyAngle':


<details>
<summary> <i>源代码</i> </summary>
<summary> <b>源代码</b> </summary>

```python
@overload
Expand All @@ -398,7 +374,7 @@ def __truediv__(self, other: float) -> 'AnyAngle':


<details>
<summary> <i>源代码</i> </summary>
<summary> <b>源代码</b> </summary>

```python
@overload
Expand All @@ -411,7 +387,7 @@ def __truediv__(self, other: 'AnyAngle') -> float:


<details>
<summary> <i>源代码</i> </summary>
<summary> <b>源代码</b> </summary>

```python
def __truediv__(self, other):
Expand Down
Loading

0 comments on commit 86b8a4c

Please sign in to comment.