1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-08 18:40:55 +03:00
occt/src/AppDef/AppDef_MultiLine.cxx
ski 9775fa6110 0026937: Eliminate NO_CXX_EXCEPTION macro support
Macro NO_CXX_EXCEPTION was removed from code.
Method Raise() was replaced by explicit throw statement.
Method Standard_Failure::Caught() was replaced by normal C++mechanism of exception transfer.
Method Standard_Failure::Caught() is deprecated now.
Eliminated empty constructors.
Updated samples.
Eliminate empty method ChangeValue from NCollection_Map class.
Removed not operable methods from NCollection classes.
2017-02-02 16:35:54 +03:00

105 lines
3.1 KiB
C++

// Copyright (c) 1995-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.
// Lpa, le 3/12/91
#include <AppDef_Array1OfMultiPointConstraint.hxx>
#include <AppDef_MultiLine.hxx>
#include <AppDef_MultiPointConstraint.hxx>
#include <Standard_ConstructionError.hxx>
#include <Standard_DimensionError.hxx>
#include <Standard_OutOfRange.hxx>
AppDef_MultiLine::AppDef_MultiLine(){}
AppDef_MultiLine::AppDef_MultiLine (const Standard_Integer NbMult)
{
if (NbMult < 0 ) throw Standard_ConstructionError();
tabMult = new AppDef_HArray1OfMultiPointConstraint (1, NbMult);
}
AppDef_MultiLine::AppDef_MultiLine (const AppDef_Array1OfMultiPointConstraint& tabMultiP)
{
tabMult = new AppDef_HArray1OfMultiPointConstraint (1, tabMultiP.Length());
Standard_Integer i, Lower = tabMultiP.Lower();
for (i = 1; i <= tabMultiP.Length(); i++) {
tabMult->SetValue(i, tabMultiP.Value(Lower+i-1));
}
}
AppDef_MultiLine::AppDef_MultiLine (const TColgp_Array1OfPnt& tabP3d)
{
tabMult = new AppDef_HArray1OfMultiPointConstraint (1, tabP3d.Length());
Standard_Integer i, Lower = tabP3d.Lower();
for (i = 1; i <= tabP3d.Length(); i++) {
AppDef_MultiPointConstraint MP(1, 0);
MP.SetPoint(1, tabP3d(Lower+i-1));
tabMult->SetValue(i, MP);
}
}
AppDef_MultiLine::AppDef_MultiLine (const TColgp_Array1OfPnt2d& tabP2d)
{
tabMult = new AppDef_HArray1OfMultiPointConstraint (1, tabP2d.Length());
Standard_Integer i, Lower = tabP2d.Lower();
for (i = 1; i <= tabP2d.Length(); i++) {
AppDef_MultiPointConstraint MP(0, 1);
MP.SetPoint2d(1, tabP2d(Lower+i-1));
tabMult->SetValue(i, MP);
}
}
Standard_Integer AppDef_MultiLine::NbMultiPoints () const {
return tabMult->Length();
}
Standard_Integer AppDef_MultiLine::NbPoints() const {
return tabMult->Value(1).NbPoints() + tabMult->Value(1).NbPoints2d();
}
void AppDef_MultiLine::SetValue (const Standard_Integer Index,
const AppDef_MultiPointConstraint& MPoint) {
if ((Index <= 0) || (Index > tabMult->Length())) {
throw Standard_OutOfRange();
}
tabMult->SetValue(Index, MPoint);
}
AppDef_MultiPointConstraint AppDef_MultiLine::Value (const Standard_Integer Index) const
{
if ((Index <= 0) || (Index > tabMult->Length())) {
throw Standard_OutOfRange();
}
return tabMult->Value(Index);
}
void AppDef_MultiLine::Dump(Standard_OStream& o) const
{
o << "AppDef_MultiLine dump:" << endl;
// AppDef_MultiPointConstraint MP = tabMult->Value(1);
o << "It contains " << tabMult->Length() << " MultiPointConstraint"<< endl;
// o << MP->NbPoints() << " 3d and " << MP->NbPoints2d() << endl;
}