-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add docstrings for real and Quaternion * add api.md * remove invisible character (U+00ad) * add docstrings for conj and imag_part * update api.md * Update docstring of `imag_part` Co-authored-by: Seth Axen <seth@sethaxen.com> * add docstring of `real(::Type{Quaternion{T}})` * add an example `real(::Array{<:Quaternion})` * Update the docstrings of `Quaternion` Co-authored-by: Seth Axen <seth@sethaxen.com> * update README.md * update README.md * more specific type in docstring Co-authored-by: Seth Axen <seth@sethaxen.com> * Add docstring for `Base.real(::AbstractArray{<:Quaternion})` Co-authored-by: Seth Axen <seth@sethaxen.com> * remove duplicated jldoctest for `Base.real` * add docstring for `quat` * update wording * rename APIs to API Co-authored-by: Seth Axen <seth@sethaxen.com> * Fix docstring with plural Co-authored-by: Seth Axen <seth@sethaxen.com> * Use Oxford comma in docstring Co-authored-by: Seth Axen <seth@sethaxen.com> * add more jidoctests for `quat` Co-authored-by: Seth Axen <seth@sethaxen.com> * update docstring of `imag_part` Co-authored-by: Seth Axen <seth@sethaxen.com> * update docstring of `imag_part` Co-authored-by: Seth Axen <seth@sethaxen.com> * update docstring of `imag_part` Co-authored-by: Seth Axen <seth@sethaxen.com> * update docstring of `real` Co-authored-by: Seth Axen <seth@sethaxen.com> * update docstring of `extend_analytic` Co-authored-by: Seth Axen <seth@sethaxen.com> * add depwarn to Quaternion(a::AbstractVector) * add `@test_deprecated` for `quat` * add docstring of `slerp` * add more `@docs` in api.md Co-authored-by: Seth Axen <seth@sethaxen.com>
- Loading branch information
Showing
5 changed files
with
163 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# API | ||
|
||
```@docs | ||
Quaternion | ||
``` | ||
|
||
```@docs | ||
quat | ||
``` | ||
|
||
```@docs | ||
real(::Quaternion) | ||
real(::AbstractArray{<:Quaternion}) | ||
real(::Type{Quaternion{T}}) where {T} | ||
``` | ||
|
||
```@docs | ||
imag_part | ||
``` | ||
|
||
```@docs | ||
conj | ||
``` | ||
|
||
```@docs | ||
slerp | ||
``` | ||
|
||
```@docs | ||
Quaternions.extend_analytic | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters