read
Engine.read_fixed_rotation_key(file_path)- Creates a fixed rotation key by reading data from a file.
- Input:
- file_path: str or pathlib.Path
- Can be an absolute or relative path.
- file_path: str or pathlib.Path
- Output:
- FixedRotationKey
Examples
Using an absolute path
from desilofhe import Engine
engine = Engine()
fixed_rotation_key = engine.read_fixed_rotation_key(
"/opt/desilo/fixed_rotation_key"
)
Using a relative path