diff options
author | Théo de la Hogue | 2024-02-19 14:57:24 +0100 |
---|---|---|
committer | Théo de la Hogue | 2024-02-19 14:57:24 +0100 |
commit | b58c4bdae021213cd6cf93ce3f3643b32f54e5a0 (patch) | |
tree | cd510fe72f989e08240b997468af7889aa04f383 /src | |
parent | 81c0455a01f8464d5611c0cec9499010f0a5b450 (diff) | |
download | argaze-b58c4bdae021213cd6cf93ce3f3643b32f54e5a0.zip argaze-b58c4bdae021213cd6cf93ce3f3643b32f54e5a0.tar.gz argaze-b58c4bdae021213cd6cf93ce3f3643b32f54e5a0.tar.bz2 argaze-b58c4bdae021213cd6cf93ce3f3643b32f54e5a0.tar.xz |
Commenting the use of unwrap option.
Diffstat (limited to 'src')
-rw-r--r-- | src/argaze/ArFeatures.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/argaze/ArFeatures.py b/src/argaze/ArFeatures.py index d08463b..5fcc990 100644 --- a/src/argaze/ArFeatures.py +++ b/src/argaze/ArFeatures.py @@ -1443,6 +1443,8 @@ class ArCamera(ArFrame): """ # Project gaze position into camera frame + # NOTE: the call to super().look method uses unwrap option to disable observers notification + # as they are already notified that this look method is called. Cf DataFeatures.PipelineStepMethod.wrapper. super().look(timestamp, gaze_position, unwrap=True) # Use camera frame lock feature |