summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/tkz/tkz-elements/latex/tkz_elements_ellipse.lua
diff options
context:
space:
mode:
Diffstat (limited to 'macros/latex/contrib/tkz/tkz-elements/latex/tkz_elements_ellipse.lua')
-rw-r--r--macros/latex/contrib/tkz/tkz-elements/latex/tkz_elements_ellipse.lua9
1 files changed, 4 insertions, 5 deletions
diff --git a/macros/latex/contrib/tkz/tkz-elements/latex/tkz_elements_ellipse.lua b/macros/latex/contrib/tkz/tkz-elements/latex/tkz_elements_ellipse.lua
index f3fa0d173b..98800f791e 100644
--- a/macros/latex/contrib/tkz/tkz-elements/latex/tkz_elements_ellipse.lua
+++ b/macros/latex/contrib/tkz/tkz-elements/latex/tkz_elements_ellipse.lua
@@ -1,6 +1,6 @@
-- tkz_elements-ellipses.lua
--- date 2024/01/16
--- version 1.82c
+-- date 2024/02/04
+-- version 2.00c
-- Copyright 2024 Alain Matthes
-- This work may be distributed and/or modified under the
-- conditions of the LaTeX Project Public License, either version 1.3
@@ -105,13 +105,12 @@ function ellipse: tangent_from (pt)
end
function ellipse: in_out (pt)
- local d,D,an,m,epsilon
- epsilon = 10^(-12)
+ local d,D,an,m
d = point.abs (pt - self.center)
an = point.arg (pt - self.center)
m = point(self.Rx*math.cos(an),self.Ry*math.sin(an))
D = point.abs (m - self.center)
- if D-d > epsilon
+ if D-d > tkz_epsilon
then
return true
else