diff options
author | Théo de la Hogue | 2023-06-19 10:01:10 +0200 |
---|---|---|
committer | Théo de la Hogue | 2023-06-19 10:01:10 +0200 |
commit | 91857bacd4f82e48d8a06b43bcc48294701d6a1d (patch) | |
tree | 93d95d0bc6ec4b01c295efe8b788ac69d369d6e2 /docs/user_guide/gaze_analysis/gaze_position.md | |
parent | 053726042d48f68bce7f0bfb4d53c5be097e234d (diff) | |
download | argaze-91857bacd4f82e48d8a06b43bcc48294701d6a1d.zip argaze-91857bacd4f82e48d8a06b43bcc48294701d6a1d.tar.gz argaze-91857bacd4f82e48d8a06b43bcc48294701d6a1d.tar.bz2 argaze-91857bacd4f82e48d8a06b43bcc48294701d6a1d.tar.xz |
Using relative path to code reference to make it works online.
Diffstat (limited to 'docs/user_guide/gaze_analysis/gaze_position.md')
-rw-r--r-- | docs/user_guide/gaze_analysis/gaze_position.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/user_guide/gaze_analysis/gaze_position.md b/docs/user_guide/gaze_analysis/gaze_position.md index 67f15f8..9cc7f85 100644 --- a/docs/user_guide/gaze_analysis/gaze_position.md +++ b/docs/user_guide/gaze_analysis/gaze_position.md @@ -1,7 +1,7 @@ Gaze position ============= -[GazeFeatures](/argaze/#argaze.GazeFeatures) defines a [GazePosition](/argaze/#argaze.GazeFeatures.GazePosition) class to handle point coordinates with a precision value. +[GazeFeatures](../../../argaze/#argaze.GazeFeatures) defines a [GazePosition](../../../argaze/#argaze.GazeFeatures.GazePosition) class to handle point coordinates with a precision value. ``` python from argaze import GazeFeatures @@ -20,7 +20,7 @@ print(f'precision: {gaze_position.precision}') ## Validity -[GazeFeatures](/argaze/#argaze.GazeFeatures) defines also a [UnvalidGazePosition](/argaze/#argaze.GazeFeatures.UnvalidGazePosition) class that inherits from [GazePosition](/argaze/#argaze.GazeFeatures.GazePosition) to handle case where no gaze position exists because of any specific device reason. +[GazeFeatures](../../../argaze/#argaze.GazeFeatures) defines also a [UnvalidGazePosition](../../../argaze/#argaze.GazeFeatures.UnvalidGazePosition) class that inherits from [GazePosition](../../../argaze/#argaze.GazeFeatures.GazePosition) to handle case where no gaze position exists because of any specific device reason. ``` python from argaze import GazeFeatures @@ -38,7 +38,7 @@ print(f'validity: {gaze_position.valid}') ## Distance -[GazePosition](/argaze/#argaze.GazeFeatures.GazePosition) class provides a **distance** method to calculate the distance to another gaze position instance. +[GazePosition](../../../argaze/#argaze.GazeFeatures.GazePosition) class provides a **distance** method to calculate the distance to another gaze position instance. ![Distance](../../img/distance.png) @@ -49,7 +49,7 @@ d = gaze_position_A.distance(gaze_position_B) ## Overlapping -[GazePosition](/argaze/#argaze.GazeFeatures.GazePosition) class provides an **overlap** method to test if a gaze position overlaps another one considering their precisions. +[GazePosition](../../../argaze/#argaze.GazeFeatures.GazePosition) class provides an **overlap** method to test if a gaze position overlaps another one considering their precisions. ![Gaze overlapping](../../img/overlapping.png) |