1## Copyright (C) 2021 David Legland 2## All rights reserved. 3## 4## Redistribution and use in source and binary forms, with or without 5## modification, are permitted provided that the following conditions are met: 6## 7## 1 Redistributions of source code must retain the above copyright notice, 8## this list of conditions and the following disclaimer. 9## 2 Redistributions in binary form must reproduce the above copyright 10## notice, this list of conditions and the following disclaimer in the 11## documentation and/or other materials provided with the distribution. 12## 13## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ''AS IS'' 14## AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 15## IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 16## ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR 17## ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 18## DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 19## SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 20## CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 21## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22## OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23## 24## The views and conclusions contained in the software and documentation are 25## those of the authors and should not be interpreted as representing official 26## policies, either expressed or implied, of the copyright holders. 27 28function line = radicalAxis(circle1, circle2) 29%RADICALAXIS Compute the radical axis (or radical line) of 2 circles. 30% 31% L = radicalAxis(C1, C2) 32% Computes the radical axis of 2 circles. 33% 34% Example 35% C1 = [10 10 5]; 36% C2 = [60 50 30]; 37% L = radicalAxis(C1, C2); 38% hold on; axis equal;axis([0 100 0 100]); 39% drawCircle(C1);drawCircle(C2);drawLine(L); 40% 41% See also 42% lines2d, circles2d, createCircle 43% 44% Ref: 45% http://mathworld.wolfram.com/RadicalLine.html 46% http://en.wikipedia.org/wiki/Radical_axis 47% 48% ------ 49% Author: David Legland 50% e-mail: david.legland@grignon.inra.fr 51% Created: 2007-05-15, using Matlab 7.4.0.287 (R2007a) 52% Copyright 2007 INRA - BIA PV Nantes - MIAJ Jouy-en-Josas. 53% 54 55% extract circles parameters 56x1 = circle1(:,1); 57x2 = circle2(:,1); 58y1 = circle1(:,2); 59y2 = circle2(:,2); 60r1 = circle1(:,3); 61r2 = circle2(:,3); 62 63% distance between each couple of centers 64dist = sqrt((x2-x1).^2 + (y2-y1).^2); 65 66% relative position of intersection point of 67% the radical line with the line joining circle centers 68d = (dist.^2 + r1.^2 - r2.^2) * .5 ./ dist; 69 70% compute angle of radical axis 71angle = lineAngle(createLine([x1 y1], [x2 y2])); 72cot = cos(angle); 73sit = sin(angle); 74 75% parameters of the line 76x0 = x1 + d*cot; 77y0 = y1 + d*sit; 78dx = -sit; 79dy = cot; 80 81% concatenate into one structure 82line = [x0 y0 dx dy]; 83