projects
/
linpy.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Docstrings and simplifications of domains.py
[linpy.git]
/
doc
/
geometry.rst
diff --git
a/doc/geometry.rst
b/doc/geometry.rst
index
0058ee9
..
838ec6e
100644
(file)
--- a/
doc/geometry.rst
+++ b/
doc/geometry.rst
@@
-13,19
+13,19
@@
This class represents points in space.
.. py:method:: __eq__(self, other)
.. py:method:: __eq__(self, other)
- Compare
s
two Points for equality.
+ Compare two Points for equality.
.. py:method:: __add__(self, other)
.. py:method:: __add__(self, other)
- Add
s a Point to a Vector and returns
the result as a Point.
+ Add
a Point to a Vector and return
the result as a Point.
.. py:method:: __sub__(self, other)
.. py:method:: __sub__(self, other)
- Return
s
the difference between two Points as a Vector.
+ Return the difference between two Points as a Vector.
.. py:method:: aspolyhedon(self)
.. py:method:: aspolyhedon(self)
- Return
s a Point as a polyhedron
.
+ Return
a Point as a polyhedron corresponding to the Point, assuming the Point has integer coordinates
.
.. py:class:: Vector
.. py:class:: Vector
@@
-34,11
+34,11
@@
This class represents displacements in space.
.. py:method:: __eq__(self, other)
.. py:method:: __eq__(self, other)
- Compare
s
two Vectors for equality.
+ Compare two Vectors for equality.
.. py:method:: __add__(self, other)
.. py:method:: __add__(self, other)
- Add
s
either a Point or Vector to a Vector. The resulting sum is returned as the same structure *other* is.
+ Add either a Point or Vector to a Vector. The resulting sum is returned as the same structure *other* is.
.. py:method:: __sub__(self, other)
.. py:method:: __sub__(self, other)
@@
-46,11
+46,11
@@
This class represents displacements in space.
.. py:method:: __mul__(self, other)
.. py:method:: __mul__(self, other)
- Multipl
es
a Vector by a scalar value and returns the result as a Vector.
+ Multipl
y
a Vector by a scalar value and returns the result as a Vector.
.. py:method:: __neg__(self)
.. py:method:: __neg__(self)
- Negate
s
a Vector.
+ Negate a Vector.
.. py:method:: norm(self)
.. py:method:: norm(self)
@@
-67,7
+67,7
@@
This class represents displacements in space.
.. py:method:: cross(self, other)
.. py:method:: cross(self, other)
- Calculate the cross product of two Vector3D structures.
+ Calculate the cross product of two Vector3D structures.
If the vectors are not tridimensional, a _____ error is raised.
.. py:method:: dot(self, other)
.. py:method:: dot(self, other)