Warnings on vc14 were eliminated
[occt.git] / src / GccAna / GccAna_Pnt2dBisec.cxx
CommitLineData
b311480e 1// Created on: 1991-10-04
2// Created by: Remi GILET
3// Copyright (c) 1991-1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
d5f74e42 8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
7fd59977 16
17//=========================================================================
0d969553 18// CREATION of the BISSECTRICE between two POINTS. +
7fd59977 19//=========================================================================
20
42cf5bc1 21#include <GccAna_NoSolution.hxx>
22#include <GccAna_Pnt2dBisec.hxx>
23#include <gp.hxx>
7fd59977 24#include <gp_Dir2d.hxx>
42cf5bc1 25#include <gp_Lin2d.hxx>
26#include <gp_Pnt2d.hxx>
27#include <gp_XY.hxx>
7fd59977 28#include <Standard_ConstructionError.hxx>
29#include <StdFail_NotDone.hxx>
7fd59977 30
31//=========================================================================
7fd59977 32GccAna_Pnt2dBisec::
33 GccAna_Pnt2dBisec (const gp_Pnt2d& Point1,
34 const gp_Pnt2d& Point2) {
35
36 WellDone = Standard_False;
37// if (Point1.Distance(Point2) > gp::Resolution()) {
38 if (Point1.Distance(Point2) > 1.e-10) {
39 gp_Dir2d dir1(Point2.XY()-Point1.XY());
40 linsol = gp_Lin2d(gp_Pnt2d((Point2.X()+Point1.X())/2.,
41// ======================================================
42 (Point2.Y()+Point1.Y())/2.),
43// ============================
44 gp_Dir2d(-dir1.Y(),dir1.X()));
45// =============================
46 HasSol = Standard_True;
47 WellDone = Standard_True;
48 }
49 else {
50 HasSol = Standard_False;
51 WellDone = Standard_True;
52 }
53 }
54
55
56//=========================================================================
57
58Standard_Boolean GccAna_Pnt2dBisec::
59 IsDone () const { return WellDone; }
60
61Standard_Boolean GccAna_Pnt2dBisec::
62 HasSolution () const { return HasSol; }
63
64gp_Lin2d GccAna_Pnt2dBisec::
65 ThisSolution () const {
9775fa61 66 if (!WellDone) { throw StdFail_NotDone(); }
67 else if (!HasSol) { throw GccAna_NoSolution(); }
7fd59977 68 return linsol;
69 }