Skip to content

Commit a3adfe7

Browse files
committed
Rename Geometry -> Pointset
1 parent 4af4897 commit a3adfe7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

doc/source/devel/biaps/biap_0009.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ The basic API is as follows:
120120

121121
.. code-block:: python
122122
123-
class Geometry:
123+
class Pointset:
124124
@property
125125
def n_coords(self):
126126
""" Number of coordinates """
@@ -129,7 +129,7 @@ The basic API is as follows:
129129
""" Nx3 array of coordinates in RAS+ space """
130130
131131
132-
class TriangularMesh(Geometry):
132+
class TriangularMesh(Pointset):
133133
@property
134134
def n_triangles(self):
135135
""" Number of faces """
@@ -169,7 +169,7 @@ The basic API is as follows:
169169
170170
@property
171171
def geometry(self):
172-
""" A SurfaceGeometry or None """
172+
""" A Pointset or None """
173173
174174
@property
175175
def dataobj(self):
@@ -187,7 +187,7 @@ To enable a similar interface to raveled voxel data:
187187

188188
.. code-block:: python
189189
190-
class VolumeGeometry(Geometry):
190+
class VolumeGeometry(Pointset):
191191
_affine # Or _affines, if we want multiple, e.g. qform, sform
192192
_shape
193193
_ijk_coords
@@ -304,7 +304,7 @@ the data array.
304304
""" Load a collection of geometries from a specification, broadly construed. """
305305
306306
307-
class GeometrySequence(GeometryCollection, Geometry):
308-
# Inherit and override get_coords, n_coords from Geometry
307+
class PointsetSequence(GeometryCollection, Pointset):
308+
# Inherit and override get_coords, n_coords from Pointset
309309
def get_indices(self, name):
310310
""" Return indices for data array corresponding to a named geometry """

0 commit comments

Comments
 (0)