1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-06-20 11:54:07 +03:00
occt/src/IntAna2d/IntAna2d_IntPoint.cxx
mkrylova d533dafb56 0031035: Coding - uninitialized class fields reported by Visual Studio Code Analysis
Added initialization of fields that had not initialization
Added default constructors to classes without constructors
2020-07-23 16:08:20 +03:00

61 lines
1.8 KiB
C++

// Created on: 1992-10-07
// Created by: Laurent BUCHARD
// Copyright (c) 1992-1999 Matra Datavision
// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#include <gp_Pnt2d.hxx>
#include <IntAna2d_IntPoint.hxx>
#include <Standard_DomainError.hxx>
IntAna2d_IntPoint::IntAna2d_IntPoint (const Standard_Real X, const Standard_Real Y,
const Standard_Real U1,const Standard_Real U2):
myu1(U1),myu2(U2),myp(X,Y),myimplicit(Standard_False)
{
}
IntAna2d_IntPoint::IntAna2d_IntPoint (const Standard_Real X, const Standard_Real Y,
const Standard_Real U1):
myu1(U1),myu2(RealLast()),myp(X,Y),myimplicit(Standard_True)
{
}
IntAna2d_IntPoint::IntAna2d_IntPoint ():
myu1(RealLast()),myu2(RealLast()),myp(RealLast(),RealLast()),myimplicit(Standard_False)
{
}
void IntAna2d_IntPoint::SetValue (const Standard_Real X, const Standard_Real Y,
const Standard_Real U1, const Standard_Real U2) {
myimplicit = Standard_False;
myp.SetCoord(X,Y);
myu1 = U1;
myu2 = U2;
}
void IntAna2d_IntPoint::SetValue (const Standard_Real X, const Standard_Real Y, const Standard_Real U1) {
myimplicit = Standard_True;
myp.SetCoord(X,Y);
myu1 = U1;
myu2 = RealLast();
}