From 8afe6d3a501f895849da3290a706f9ac3418b0d6 Mon Sep 17 00:00:00 2001 From: Théo de la Hogue Date: Wed, 9 Aug 2023 18:43:29 +0200 Subject: Adding duration_max documentation. --- src/argaze/GazeFeatures.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/argaze/GazeFeatures.py b/src/argaze/GazeFeatures.py index 67e5822..224e2d9 100644 --- a/src/argaze/GazeFeatures.py +++ b/src/argaze/GazeFeatures.py @@ -590,7 +590,11 @@ ScanPathType = TypeVar('ScanPathType', bound="ScanPathType") # Type definition for type annotation convenience class ScanPath(list): - """List of scan steps.""" + """List of scan steps. + + Parameters: + duration_max: duration from which older scan steps are removed each time new scan steps are added. 0 means no maximal duration. + """ def __init__(self, duration_max: int|float = 0): -- cgit v1.1