@@ -120,7 +120,7 @@ The basic API is as follows:
120
120
121
121
.. code-block :: python
122
122
123
- class Geometry :
123
+ class Pointset :
124
124
@ property
125
125
def n_coords (self ):
126
126
""" Number of coordinates """
@@ -129,7 +129,7 @@ The basic API is as follows:
129
129
""" Nx3 array of coordinates in RAS+ space """
130
130
131
131
132
- class TriangularMesh (Geometry ):
132
+ class TriangularMesh (Pointset ):
133
133
@ property
134
134
def n_triangles (self ):
135
135
""" Number of faces """
@@ -169,7 +169,7 @@ The basic API is as follows:
169
169
170
170
@ property
171
171
def geometry (self ):
172
- """ A SurfaceGeometry or None """
172
+ """ A Pointset or None """
173
173
174
174
@ property
175
175
def dataobj (self ):
@@ -187,7 +187,7 @@ To enable a similar interface to raveled voxel data:
187
187
188
188
.. code-block :: python
189
189
190
- class VolumeGeometry (Geometry ):
190
+ class VolumeGeometry (Pointset ):
191
191
_affine # Or _affines, if we want multiple, e.g. qform, sform
192
192
_shape
193
193
_ijk_coords
@@ -304,7 +304,7 @@ the data array.
304
304
""" Load a collection of geometries from a specification, broadly construed. """
305
305
306
306
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
309
309
def get_indices (self , name ):
310
310
""" Return indices for data array corresponding to a named geometry """
0 commit comments