We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 784724e commit 40b1761Copy full SHA for 40b1761
splinepy/microstructure/tiles/tile_base.py
@@ -31,7 +31,7 @@ def _raise_if_not_set_else_return(cls, attr_name):
31
return attr
32
33
@property
34
- def evaluation_points(cls):
+ def evaluation_points(self):
35
"""Positions in the parametrization function to be evaluated when tile
36
is constructed prior to composition.
37
@@ -43,7 +43,7 @@ def evaluation_points(cls):
43
-------
44
evaluation_points : np.ndarray(6,3)
45
"""
46
- return cls._raise_if_not_set_else_return("_evaluation_points")
+ return self._raise_if_not_set_else_return("_evaluation_points")
47
48
49
def dim(self):
0 commit comments