// Copyright (c) 1999-2012 OPEN CASCADE SAS // // The content of this file is subject to the Open CASCADE Technology Public // License Version 6.5 (the "License"). You may not use the content of this file // except in compliance with the License. Please obtain a copy of the License // at http://www.opencascade.org and read it completely before using this file. // // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France. // // The Original Code and all software distributed under the License is // distributed on an "AS IS" basis, without warranty of any kind, and the // Initial Developer hereby disclaims all such warranties, including without // limitation, any warranties of merchantability, fitness for a particular // purpose or non-infringement. Please see the License for the specific terms // and conditions governing the rights and limitations under the License. #include StepGeom_BSplineSurface::StepGeom_BSplineSurface () {} void StepGeom_BSplineSurface::Init( const Handle(TCollection_HAsciiString)& aName) { StepRepr_RepresentationItem::Init(aName); } void StepGeom_BSplineSurface::Init( const Handle(TCollection_HAsciiString)& aName, const Standard_Integer aUDegree, const Standard_Integer aVDegree, const Handle(StepGeom_HArray2OfCartesianPoint)& aControlPointsList, const StepGeom_BSplineSurfaceForm aSurfaceForm, const StepData_Logical aUClosed, const StepData_Logical aVClosed, const StepData_Logical aSelfIntersect) { // --- classe own fields --- uDegree = aUDegree; vDegree = aVDegree; controlPointsList = aControlPointsList; surfaceForm = aSurfaceForm; uClosed = aUClosed; vClosed = aVClosed; selfIntersect = aSelfIntersect; // --- classe inherited fields --- StepRepr_RepresentationItem::Init(aName); } void StepGeom_BSplineSurface::SetUDegree(const Standard_Integer aUDegree) { uDegree = aUDegree; } Standard_Integer StepGeom_BSplineSurface::UDegree() const { return uDegree; } void StepGeom_BSplineSurface::SetVDegree(const Standard_Integer aVDegree) { vDegree = aVDegree; } Standard_Integer StepGeom_BSplineSurface::VDegree() const { return vDegree; } void StepGeom_BSplineSurface::SetControlPointsList(const Handle(StepGeom_HArray2OfCartesianPoint)& aControlPointsList) { controlPointsList = aControlPointsList; } Handle(StepGeom_HArray2OfCartesianPoint) StepGeom_BSplineSurface::ControlPointsList() const { return controlPointsList; } Handle(StepGeom_CartesianPoint) StepGeom_BSplineSurface::ControlPointsListValue(const Standard_Integer num1,const Standard_Integer num2) const { return controlPointsList->Value(num1,num2); } Standard_Integer StepGeom_BSplineSurface::NbControlPointsListI () const { if (controlPointsList.IsNull()) return 0; return controlPointsList->UpperRow() - controlPointsList->LowerRow() + 1; } Standard_Integer StepGeom_BSplineSurface::NbControlPointsListJ () const { if (controlPointsList.IsNull()) return 0; return controlPointsList->UpperCol() - controlPointsList->LowerCol() + 1; } void StepGeom_BSplineSurface::SetSurfaceForm(const StepGeom_BSplineSurfaceForm aSurfaceForm) { surfaceForm = aSurfaceForm; } StepGeom_BSplineSurfaceForm StepGeom_BSplineSurface::SurfaceForm() const { return surfaceForm; } void StepGeom_BSplineSurface::SetUClosed(const StepData_Logical aUClosed) { uClosed = aUClosed; } StepData_Logical StepGeom_BSplineSurface::UClosed() const { return uClosed; } void StepGeom_BSplineSurface::SetVClosed(const StepData_Logical aVClosed) { vClosed = aVClosed; } StepData_Logical StepGeom_BSplineSurface::VClosed() const { return vClosed; } void StepGeom_BSplineSurface::SetSelfIntersect(const StepData_Logical aSelfIntersect) { selfIntersect = aSelfIntersect; } StepData_Logical StepGeom_BSplineSurface::SelfIntersect() const { return selfIntersect; }