need space at end of definition list

This commit is contained in:
Martin Diehl 2020-05-13 11:09:37 +02:00
parent 66b928c5af
commit b5b9bfaa99
3 changed files with 7 additions and 3 deletions

View File

@ -10,6 +10,7 @@ class Orientation:
A crystallographic orientation contains a rotation and a lattice. A crystallographic orientation contains a rotation and a lattice.
""" """
__slots__ = ['rotation','lattice'] __slots__ = ['rotation','lattice']
def __repr__(self): def __repr__(self):

View File

@ -316,9 +316,10 @@ class Result:
Return groups that contain all requested datasets. Return groups that contain all requested datasets.
Only groups within Only groups within
- inc?????/constituent/*_*/* - inc*/constituent/*/*
- inc?????/materialpoint/*_*/* - inc*/materialpoint/*/*
- inc?????/geometry/* - inc*/geometry/*
are considered as they contain user-relevant data. are considered as they contain user-relevant data.
Single strings will be treated as list with one entry. Single strings will be treated as list with one entry.

View File

@ -16,6 +16,7 @@ def iszero(a):
class Rotation: class Rotation:
u""" u"""
Orientation stored with functionality for conversion to different representations. Orientation stored with functionality for conversion to different representations.
The following conventions apply: The following conventions apply:
- coordinate frames are right-handed. - coordinate frames are right-handed.
@ -42,6 +43,7 @@ class Rotation:
https://doi.org/10.1088/0965-0393/23/8/083501 https://doi.org/10.1088/0965-0393/23/8/083501
""" """
__slots__ = ['quaternion'] __slots__ = ['quaternion']
def __init__(self,quaternion = np.array([1.0,0.0,0.0,0.0])): def __init__(self,quaternion = np.array([1.0,0.0,0.0,0.0])):