1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-16 10:54:53 +03:00
occt/src/StepGeom/StepGeom_CurveBoundedSurface.cxx

111 lines
3.8 KiB
C++

// Created on: 1999-11-26
// Created by: Andrey BETENEV
// Copyright (c) 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.
// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.0
#include <StepGeom_CurveBoundedSurface.hxx>
#include <StepGeom_Surface.hxx>
#include <TCollection_HAsciiString.hxx>
IMPLEMENT_STANDARD_RTTIEXT(StepGeom_CurveBoundedSurface,StepGeom_BoundedSurface)
//=======================================================================
//function : StepGeom_CurveBoundedSurface
//purpose :
//=======================================================================
StepGeom_CurveBoundedSurface::StepGeom_CurveBoundedSurface ()
{
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void StepGeom_CurveBoundedSurface::Init (const Handle(TCollection_HAsciiString) &aRepresentationItem_Name,
const Handle(StepGeom_Surface) &aBasisSurface,
const Handle(StepGeom_HArray1OfSurfaceBoundary) &aBoundaries,
const Standard_Boolean aImplicitOuter)
{
StepGeom_BoundedSurface::Init(aRepresentationItem_Name);
theBasisSurface = aBasisSurface;
theBoundaries = aBoundaries;
theImplicitOuter = aImplicitOuter;
}
//=======================================================================
//function : BasisSurface
//purpose :
//=======================================================================
Handle(StepGeom_Surface) StepGeom_CurveBoundedSurface::BasisSurface () const
{
return theBasisSurface;
}
//=======================================================================
//function : SetBasisSurface
//purpose :
//=======================================================================
void StepGeom_CurveBoundedSurface::SetBasisSurface (const Handle(StepGeom_Surface) &aBasisSurface)
{
theBasisSurface = aBasisSurface;
}
//=======================================================================
//function : Boundaries
//purpose :
//=======================================================================
Handle(StepGeom_HArray1OfSurfaceBoundary) StepGeom_CurveBoundedSurface::Boundaries () const
{
return theBoundaries;
}
//=======================================================================
//function : SetBoundaries
//purpose :
//=======================================================================
void StepGeom_CurveBoundedSurface::SetBoundaries (const Handle(StepGeom_HArray1OfSurfaceBoundary) &aBoundaries)
{
theBoundaries = aBoundaries;
}
//=======================================================================
//function : ImplicitOuter
//purpose :
//=======================================================================
Standard_Boolean StepGeom_CurveBoundedSurface::ImplicitOuter () const
{
return theImplicitOuter;
}
//=======================================================================
//function : SetImplicitOuter
//purpose :
//=======================================================================
void StepGeom_CurveBoundedSurface::SetImplicitOuter (const Standard_Boolean aImplicitOuter)
{
theImplicitOuter = aImplicitOuter;
}