@@ -66,8 +66,8 @@ class VolMesh(FromToData,
6666
6767 Volumetric meshes are 3-mainfold, cellular structures.
6868
69- The implementation of ``VolMesh`` is based on the notion of *x-maps* [xmaps]
70- and the concepts behind the *OpenVolumeMesh* library [ovm] .
69+ The implementation of ``VolMesh`` is based on the notion of *x-maps*
70+ and the concepts behind the *OpenVolumeMesh* library [vci2016]_ .
7171 In short, we add an additional entity compared to polygonal meshes,
7272 the *cell*, and relate cells not through *half-edges*, but through a combination
7373 of *half-faces* and *planes*. Each cell consists of a series of vertex pairs,
@@ -92,7 +92,7 @@ class VolMesh(FromToData,
9292 halffaces.
9393 ``self.cell[ckey][u][v] -> fkey``
9494 halfface : dict
95- The halffaces of the volmesh. Each halfface is represented by
95+ The halffaces of the volmesh. Each halfface is represented by
9696 ``self.halfface[fkey] -> vertex cycle``
9797 plane : dict
9898 The planes of the volmesh. Every plane is uniquely defined by three
@@ -104,11 +104,6 @@ class VolMesh(FromToData,
104104 pointing at the cells of the volmesh.
105105 ``self.plane[u][v][w] -> ckey``.
106106
107- References
108- ----------
109- .. [xmaps] xxx
110- .. [ovm] `Open Volum Mesh <http://www.openvolumemesh.org>`_
111-
112107 """
113108
114109 def __init__ (self ):
@@ -888,5 +883,5 @@ def scale(self, factor=1.0):
888883
889884 viewer .setup ()
890885
891- viewer .camera .zoom_out (5 )
886+ viewer .camera .zoom_out (5 )
892887 viewer .show ()
0 commit comments