Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
This is the result of running `python build_docs.py`. We now have a
CI/CD pipeline for generating documentation so the actual HTML output is
not part of the repository anymore.
  • Loading branch information
c0d1f1ed committed Jan 10, 2024
1 parent 7a068e4 commit 7aaa811
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docs/modules/functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1840,6 +1840,11 @@ Operators
:nocontentsentry:


.. function:: mul(x: Vector[Any,Scalar], y: Matrix[Any,Any,Scalar]) -> Vector[Any,Scalar]
:noindex:
:nocontentsentry:


.. function:: mul(x: Matrix[Any,Any,Scalar], y: Matrix[Any,Any,Scalar])
:noindex:
:nocontentsentry:
Expand Down Expand Up @@ -1871,16 +1876,31 @@ Operators
:nocontentsentry:


.. function:: div(x: Scalar, y: Vector[Any,Scalar]) -> Vector[Any,Scalar]
:noindex:
:nocontentsentry:


.. function:: div(x: Matrix[Any,Any,Scalar], y: Scalar) -> Matrix[Any,Any,Scalar]
:noindex:
:nocontentsentry:


.. function:: div(x: Scalar, y: Matrix[Any,Any,Scalar]) -> Matrix[Any,Any,Scalar]
:noindex:
:nocontentsentry:


.. function:: div(x: Quaternion[Scalar], y: Scalar) -> Quaternion[Scalar]
:noindex:
:nocontentsentry:


.. function:: div(x: Scalar, y: Quaternion[Scalar]) -> Quaternion[Scalar]
:noindex:
:nocontentsentry:


.. function:: floordiv(x: Scalar, y: Scalar) -> Scalar


Expand Down

0 comments on commit 7aaa811

Please sign in to comment.