Update plot examples
[linpy.git] / doc / domain.rst
index 4cd79d9..edf8934 100644 (file)
@@ -3,8 +3,6 @@ Domains Module
 
 .. py:class :: Domain
 
-    The properties of a domain can be are found using the following
-
     .. py:method:: symbols
 
         Returns a tuple of the symbols that exsist in a domain.
@@ -21,8 +19,6 @@ Domains Module
 
        Returns ``True`` if a domain depends on the given dimensions.
 
-    The unary properties of a domain can be inspected using the following methods.
-
     .. py:method:: isempty(self)
 
         Return ``True`` is a domain is empty.
@@ -39,8 +35,6 @@ Domains Module
 
         It is not guarenteed that a domain is disjoint. If it is necessary, this method will return a domain as disjoint.
 
-    The following methods compare two domains to find the binary properties.
-
     .. py:method:: isdisjoint(self, other)
 
         Return ``True`` if the intersection of *self* and *other* results in an empty set.
@@ -74,9 +68,6 @@ Domains Module
 
        Test whether every element in *other* is in a domain.
 
-
-    The following methods implement unary operations on a domain.
-
     .. py:method:: complement(self)
                    ¬self
 
@@ -98,8 +89,6 @@ Domains Module
 
         Return a single sample subset of a domain.
 
-    The following methods implement binary operations on two domains.
-
     .. py:method:: intersection(self, other)
                    self | other
 
@@ -120,8 +109,6 @@ Domains Module
 
         Return the sum of two domains.
 
-    The following methods use lexicographical ordering to find the maximum or minimum element in a domain.
-
     .. py:method:: lexmin(self)
 
         Return a new set containing the lexicographic minimum of the elements in the set.
@@ -131,7 +118,7 @@ Domains Module
         Return a new set containing the lexicographic maximum of the elements in the set.
 
 
-    A 2D or 3D domain can be plotted using the :meth:`plot` function. The points, verticies, and faces of a domain can be inspected using the following functions.
+A 2D or 3D domain can be plotted using the :meth:`plot` function. The points, verticies, and faces of a domain can be inspected using the following functions.
 
     .. py:method:: points(self)