Skip to content

Commit

Permalink
Remove angleaxis (#118)
Browse files Browse the repository at this point in the history
* Remove angleaxis

* Increment patch number
  • Loading branch information
sethaxen authored Dec 10, 2022
1 parent 59ead3e commit 3be75e4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "Quaternions"
uuid = "94ee1d12-ae83-5a48-8b1c-48b8ff168ae0"
version = "0.7.0"
version = "0.7.1"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand Down
2 changes: 0 additions & 2 deletions src/Quaternion.jl
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,6 @@ Base.:/(q::Quaternion, w::Quaternion) = q * inv(w)

Base.:(==)(q::Quaternion, w::Quaternion) = (q.s == w.s) & (q.v1 == w.v1) & (q.v2 == w.v2) & (q.v3 == w.v3)

angleaxis(q::Quaternion) = angle(q), axis(q)

"""
extend_analytic(f, q::Quaternion)
Expand Down

2 comments on commit 3be75e4

@sethaxen
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/73853

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.7.1 -m "<description of version>" 3be75e4ecbb4befb62530cd805c15d976bc11311
git push origin v0.7.1

Please sign in to comment.