]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/kernel/include/marLine.cpp
Support #1768 CREATIS Licence insertion
[creaMaracasVisu.git] / lib / maracasVisuLib / src / kernel / include / marLine.cpp
1 /*# ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
4 #                        pour la Sant�)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
9 #  This software is governed by the CeCILL-B license under French law and
10 #  abiding by the rules of distribution of free software. You can  use,
11 #  modify and/ or redistribute the software under the terms of the CeCILL-B
12 #  license as circulated by CEA, CNRS and INRIA at the following URL
13 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
14 #  or in the file LICENSE.txt.
15 #
16 #  As a counterpart to the access to the source code and  rights to copy,
17 #  modify and redistribute granted by the license, users are provided only
18 #  with a limited warranty  and the software's author,  the holder of the
19 #  economic rights,  and the successive licensors  have only  limited
20 #  liability.
21 #
22 #  The fact that you are presently reading this means that you have had
23 #  knowledge of the CeCILL-B license and that you accept its terms.
24 # ------------------------------------------------------------------------ */
25
26
27 #include "marLine.h"
28
29 // ----------------------------------------------------------------------------
30 // ----------------------------------------------------------------------------
31 marLine::marLine(){
32         this->a = 1;
33         this->b = 1;
34         this->c = 0;
35 }
36
37 // ----------------------------------------------------------------------------
38 marLine::marLine(double x1, double y1, double x2, double y2){
39         this->a = y2 - y1;                      //REVISAR SIGNO
40         this->b = (x1 - x2);
41         this->c = (y1 - y2) * x1 + (x2 - x1)*y1;
42 }
43
44 // ----------------------------------------------------------------------------
45 marLine::marLine(double a, double b){
46         this->a = a;
47         this->b = b;
48         this->c = 0;
49 }
50
51 // ----------------------------------------------------------------------------
52 void marLine::getNormal(double *a, double *b){
53         *a = (this->b);
54         *b = this->a;
55 }
56
57 // ----------------------------------------------------------------------------
58 void marLine::getIntersect(double a, double b, double c, double *x, double *y){
59
60         if (this->a == a){
61                 *x = -1;
62                 *y = -1;
63                 return;
64         }
65
66         if (this->b == b){
67                 *x = -1;
68                 *y = -1;
69                 return;
70         }
71
72         *x = (c*this->b - this->c*b) / (this->a*b - a*this->b);
73
74         if (this->b == 0){
75                 *y = -c/b;
76         } else if (b == 0){
77                 *y = -this->c/this->b;
78         } else {
79                 *y = (-this->a*(*x) - this->c) / this->b;
80         }
81         
82
83         if (*x < 0 || *y < 0){
84                 *x = -1;
85                 *y = -1;
86         }
87         
88 }
89 // ----------------------------------------------------------------------------
90 double marLine::getA(){
91         return a;
92 }
93
94 // ----------------------------------------------------------------------------
95 double marLine::getB(){
96         return b;
97 }
98
99 // ----------------------------------------------------------------------------
100 double marLine::getC(){
101         return c;
102 }
103
104 // ----------------------------------------------------------------------------
105 marLine::~marLine(){
106 }
107