You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/samplers_dev.rst
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ The base class is located at pyntcloud/filters/base.py
41
41
42
42
At the very least, all samplers receive a PyntCloud when they are instantiated.
43
43
44
-
The `Sampler.exctract_info` method must be overridden in order to extract and save the information required to generate the sample in a attribute.
44
+
The `Sampler.extract_info` method must be overridden in order to extract and save the information required to generate the sample in a attribute.
45
45
46
46
See SUBMODULE BASE CLASS below for more information.
47
47
@@ -58,7 +58,7 @@ Samplers are grouped into submodules according to which kind of information they
58
58
59
59
For example, samplers that require a VoxelGrid to be computed are in pyntcloud/samplers/s_voxelgrid.py
60
60
61
-
As the information required by all the filters in each submodule is the same, we create a submodule base class overriding the __init__ and exctract_info
61
+
As the information required by all the filters in each submodule is the same, we create a submodule base class overriding the __init__ and extract_info
62
62
methods of the Sampler base class.
63
63
64
64
For example, in the s_voxelgrid submodule there is a Sampler_Voxelgrid class from which all the samplers that require a Voxelgrid inherit.
Copy file name to clipboardExpand all lines: docs/scalar_fields_dev.rst
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ The base class is located at pyntcloud/scalar_fields/base.py
42
42
43
43
At the very least, all scalar fields receive a PyntCloud when they are instantiated.
44
44
45
-
The `ScalarField.exctract_info` method must be overridden in order to extract and save in a attribute the information required to compute the scalar field.
45
+
The `ScalarField.extract_info` method must be overridden in order to extract and save in a attribute the information required to compute the scalar field.
46
46
47
47
See SUBMODULE BASE CLASS below for more information.
48
48
@@ -59,7 +59,7 @@ Scalar fields are grouped in submodules according to which kind of information t
59
59
60
60
For example, scalar fields that require a VoxelGrid to be computed are in pyntcloud/scalar_fields/sf_voxelgrid.py
61
61
62
-
As the information required by all the scalar fields in each submodule is the same, we create a submodule base class overriding the __init__ and exctract_info
62
+
As the information required by all the scalar fields in each submodule is the same, we create a submodule base class overriding the __init__ and extract_info
63
63
methods of the ScalarField base class.
64
64
65
65
For example, in the sf_voxelgrid submodule there is a ScalarField_Voxelgrid class from which all the scalar fields that require a VoxelGrid inherit.
0 commit comments