Add tags to Rust std lib functions (#6701)
Signed-off-by: Nick Cameron <nrc@ncameron.org>
This commit is contained in:
@ -20,7 +20,6 @@ helix(
|
||||
): Helix
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Compute the absolute value of a number.
|
||||
abs(@input: number): number
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Compute the arccosine of a number.
|
||||
acos(@num: number(_)): number(rad)
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Compute the arcsine of a number.
|
||||
asin(@num: number(_)): number(rad)
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Consider using `atan2()` instead for the true inverse of tangent.
|
||||
atan(@num: number(_)): number(rad)
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -15,7 +15,6 @@ atan2(
|
||||
): number(rad)
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Compute the smallest integer greater than or equal to a number.
|
||||
ceil(@input: number): number
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Compute the cosine of a number.
|
||||
cos(@num: number(Angle)): number(_)
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Compute the largest integer less than or equal to a number.
|
||||
floor(@input: number): number
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Compute the natural logarithm of the number.
|
||||
ln(@input: number): number
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -17,7 +17,6 @@ log(
|
||||
): number
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Compute the base 10 logarithm of the number.
|
||||
log10(@input: number): number
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Compute the base 2 logarithm of the number.
|
||||
log2(@input: number): number
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Compute the maximum of the given arguments.
|
||||
max(@input: [number; 1+]): number
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Compute the minimum of the given arguments.
|
||||
min(@input: [number; 1+]): number
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -16,7 +16,6 @@ polar(
|
||||
): Point2d
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -15,7 +15,6 @@ pow(
|
||||
): number
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -16,7 +16,6 @@ rem(
|
||||
): number
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Round a number to the nearest integer.
|
||||
round(@input: number): number
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Compute the sine of a number.
|
||||
sin(@num: number(Angle)): number(_)
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Compute the square root of a number.
|
||||
sqrt(@input: number): number
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Compute the tangent of a number.
|
||||
tan(@num: number(Angle)): number(_)
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -16,7 +16,6 @@ offsetPlane(
|
||||
): Plane
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -30,7 +30,6 @@ revolve(
|
||||
): Solid
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -18,7 +18,6 @@ circle(
|
||||
): Sketch
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -17,7 +17,6 @@ mirror2d(
|
||||
): Sketch
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -19,7 +19,6 @@ chamfer(
|
||||
): Solid
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -20,7 +20,6 @@ fillet(
|
||||
): Solid
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -16,7 +16,6 @@ hollow(
|
||||
): Solid
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -17,7 +17,6 @@ shell(
|
||||
): [Solid]
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Convert a number to centimeters from its current units.
|
||||
units::toCentimeters(@num: number(cm)): number(cm)
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Converts a number to degrees from its current units.
|
||||
units::toDegrees(@num: number(deg)): number(deg)
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Convert a number to feet from its current units.
|
||||
units::toFeet(@num: number(ft)): number(ft)
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Convert a number to inches from its current units.
|
||||
units::toInches(@num: number(in)): number(in)
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Convert a number to meters from its current units.
|
||||
units::toMeters(@num: number(m)): number(m)
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Convert a number to millimeters from its current units.
|
||||
units::toMillimeters(@num: number(mm)): number(mm)
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Converts a number to radians from its current units.
|
||||
units::toRadians(@num: number(rad)): number(rad)
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
@ -12,7 +12,6 @@ Converts a number to yards from its current units.
|
||||
units::toYards(@num: number(yd)): number(yd)
|
||||
```
|
||||
|
||||
|
||||
### Arguments
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
|
Reference in New Issue
Block a user