1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-07 18:30:55 +03:00
occt/src/AppDef/AppDef_MultiLine.cxx
abv d5f74e42d6 0024624: Lost word in license statement in source files
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast
Wrong license statements corrected in several files.
Copyright and license statements added in XSD and GLSL files.
Copyright year updated in some files.
Obsolete documentation files removed from DrawResources.
2014-02-20 16:15:17 +04:00

104 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_MultiLine.ixx>
#include <Standard_OutOfRange.hxx>
#include <AppDef_Array1OfMultiPointConstraint.hxx>
#include <Standard_ConstructionError.hxx>
AppDef_MultiLine::AppDef_MultiLine(){}
AppDef_MultiLine::AppDef_MultiLine (const Standard_Integer NbMult)
{
if (NbMult < 0 ) Standard_ConstructionError::Raise();
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())) {
Standard_OutOfRange::Raise();
}
tabMult->SetValue(Index, MPoint);
}
AppDef_MultiPointConstraint AppDef_MultiLine::Value (const Standard_Integer Index) const
{
if ((Index <= 0) || (Index > tabMult->Length())) {
Standard_OutOfRange::Raise();
}
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;
}