diff --git a/docs/Graphmath.Quatern.html b/docs/Graphmath.Quatern.html index 7c8aa82..67aecb3 100644 --- a/docs/Graphmath.Quatern.html +++ b/docs/Graphmath.Quatern.html @@ -242,8 +242,7 @@
add(lhs, rhs)
add two quaternions.
lhs
is the first quatern
rhs
is the second quatern
It returns a quatern
of the form
{ lhs<sub>w</sub> + rhs<sub>w</sub>, lhs<sub>x</sub> + rhs<sub>x</sub>, lhs<sub>y</sub> + rhs<sub>y</sub>, lhs<sub>z</sub> + rhs<sub>z</sub> }.
+It returns a quatern
of the form { lhsw + rhsw, lhsx + rhsx, lhsy + rhsy, lhsz + rhsz }.
subtract(lhs, rhs)
subtract two quaternions.
lhs
is the first quatern
rhs
is the second quatern
It returns a quatern
of the form
{ lhs<sub>w</sub> - rhs<sub>w</sub>, lhs<sub>x</sub> - rhs<sub>x</sub>, lhs<sub>y</sub> - rhs<sub>y</sub>, lhs<sub>z</sub> - rhs<sub>z</sub> }.
+ It returns a quatern
of the form { lhsw - rhsw, lhsx - rhsx, lhsy - rhsy, lhsz - rhsz }.