summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/tkz/tkz-elements/latex/tkz_elements_point.lua
diff options
context:
space:
mode:
Diffstat (limited to 'macros/latex/contrib/tkz/tkz-elements/latex/tkz_elements_point.lua')
-rw-r--r--macros/latex/contrib/tkz/tkz-elements/latex/tkz_elements_point.lua16
1 files changed, 8 insertions, 8 deletions
diff --git a/macros/latex/contrib/tkz/tkz-elements/latex/tkz_elements_point.lua b/macros/latex/contrib/tkz/tkz-elements/latex/tkz_elements_point.lua
index 4997b857d8..7530dfc96a 100644
--- a/macros/latex/contrib/tkz/tkz-elements/latex/tkz_elements_point.lua
+++ b/macros/latex/contrib/tkz/tkz-elements/latex/tkz_elements_point.lua
@@ -1,7 +1,7 @@
-- tkz_elements_point.lua
--- date 23/12/24
--- version 1.72c
--- Copyright 2023 Alain Matthes
+-- date 2024/01/16
+-- version 1.82c
+-- 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
-- of this license or (at your option) any later version.
@@ -187,7 +187,7 @@ function point: new ( a,b )
end
function point: polar ( radius, phi )
- return scale * polar_ ( radius, phi )
+ return point: new (radius * math.cos(phi), radius * math.sin(phi))
end
function point: polar_deg ( radius, phi )
@@ -196,22 +196,22 @@ end
function point: north(d)
local d = d or 1
- return self+ polar_ ( d * scale, math.pi/2 )
+ return self+ polar_ ( d , math.pi/2 )
end
function point: south(d)
local d = d or 1
- return self + polar_ ( d * scale, 3 * math.pi/2 )
+ return self + polar_ ( d , 3 * math.pi/2 )
end
function point: east(d)
local d = d or 1
- return self+ polar_( d * scale, 0 )
+ return self+ polar_( d , 0 )
end
function point: west(d)
local d = d or 1
- return self + polar_ ( d * scale, math.pi )
+ return self + polar_ ( d , math.pi )
end
-- ----------------------------------------------------------------
-- transformations