summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/tkz/tkz-euclide/latex/tkz-obj-eu-compass.tex
blob: dd1c46863a0d020dff443f8758f7010273804de8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
% tkz-obj-eu-compass.tex
% Copyright 2020 by Alain Matthes
% This file may be distributed and/or modified
% 1. under the LaTeX Project Public License and/or
% 2. under the GNU Public License.
\def\fileversion{3.02c}
\def\filedate{2020/01/24} 
\typeout{2020/01/24 3.02c tkz-obj-eu-compass.tex}  
\makeatletter
%<--------------------------------------------------------------------------–>
%  Author Alain Matthes  
%   idea from Y. Combe   
%<--------------------------------------------------------------------------–>
%<--------------------------------------------------------------------------–>
%                Utilisation du Compas : Compass   
%<--------------------------------------------------------------------------–>
%                                Setup   Compass
%<--------------------------------------------------------------------------–>
\pgfkeys{%
	tkzsucompass/.cd,
	line width/.code   =     {\global\edef\tkz@compass@lw{#1}},
	color/.code        =     {\global\edef\tkz@compass@color{#1}},
	style/.code        =     {\global\edef\tkz@compass@style{#1}},
	} 
%<--------------------------------------------------------------------------–>
%<--------------------------------------------------------------------------–>
\def\tkzSetUpCompass{\pgfutil@ifnextchar[{\tkzActivOff\tkz@SetUpCompass}{%
                                          \tkzActivOff\tkz@SetUpCompass[]}}
%<--------------------------------------------------------------------------–>
\def\tkz@SetUpCompass[#1]{% 
\pgfkeys{%
	tkzsucompass/.cd,
	line width   = \tkz@euc@compasswidth,
	color        = \tkz@euc@compasscolor,
	style        = \tkz@euc@compassstyle
	}  
\pgfqkeys{/tkzsucompass}{#1}
\tikzset{compass style/.style={color       = \tkz@compass@color,
                               line width  = \tkz@compass@lw,
                               style       = \tkz@compass@style
                            }}
}
%<--------------------------------------------------------------------------–> 
%                \tkzCompass(A, B)
%
% Marque de compas auto-ajustée en longueur
%               #2 center #3 le point
% Par défaut: 
%                 longueur : 1cm, mais avec un maximum d'un angle de 180°
%                 angle calculé pour la longueur
%                 style traits pleins

%<--------------------------------------------------------------------------–> 
 \pgfkeys{
    /tkzcompass/delta/.code      = {\def\tkz@delta{#1}},
    /tkzcompass/length/.code     = {\def\tkz@length{#1}},
    /tkzcompass/ratio/.code      = {\def\tkz@ratio{#1}},  
    /tkzcompass/.unknown/.code   = {\let\searchname=\pgfkeyscurrentname
                                 \pgfkeysalso{\searchname/.try=#1,
                                  /tikz/\searchname/.retry=#1}}
}
                                        
\def\tkzCompass{\pgfutil@ifnextchar[{\tkz@Compass}{\tkz@Compass[]}}
\def\tkz@Compass[#1](#2,#3){%   
\begingroup
\pgfkeys{%
  	tkzcompass/.cd,
  	length = 1,
  	delta  = 0,
  	ratio  = .5
  	}
\pgfkeys{tkzcompass/.cd,#1}  
    \tkzCalcLength(#2,#3)\tkzGetLength{tkz@tempLen}  
\ifnum\tkz@delta=0 %
   \pgfmathsetmacro{\tkz@delta}{min(deg(\tkz@length cm/ \tkz@tempLen pt),180)/2}
\fi 
    \tkzFindSlopeAngle(#2,#3)\tkzGetAngle{tkz@angle}%
    \draw[shift ={(#2)},/tkzcompass/.cd,compass style,#1]%
     (\tkz@angle-\tkz@delta:\tkz@tempLen pt)%
      arc (\tkz@angle-\tkz@delta:\tkz@angle+\tkz@delta:\tkz@tempLen pt);
           %};   
\endgroup}
%<--------------------------------------------------------------------------–> 
\def\tkz@multiCompass#1 #2\@nil{% 
 \protected@edef\tkz@temp{
   \noexpand \tkzCompass[\tkz@optcompass](#1)}\tkz@temp% 
   \def\tkz@nextArg{#2}%
   \ifx\tkzutil@empty\tkz@nextArg
     \let\next\@gobble
   \fi
   \next#2\@nil
}
\def\tkzCompasss{\pgfutil@ifnextchar[{\tkz@Compasss}{\tkz@Compasss[]}}   

\def\tkz@Compasss[#1](#2){%
\global\edef\tkz@optcompass{#1} 
\begingroup
   \let\next\tkz@multiCompass
   \next#2 \@nil %    
\endgroup
}%

\makeatother
\endinput