1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/src/GeomFill/GeomFill_Generator.cxx
abv 42cf5bc1ca 0024002: Overall code and build procedure refactoring -- automatic
Automatic upgrade of OCCT code by command "occt_upgrade . -nocdl":
- WOK-generated header files from inc and sources from drv are moved to src
- CDL files removed
- All packages are converted to nocdlpack
2015-07-12 07:42:38 +03:00

89 lines
2.9 KiB
C++

// Created on: 1994-02-25
// Created by: Bruno DUMORTIER
// Copyright (c) 1994-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 <Geom_BSplineCurve.hxx>
#include <Geom_BSplineSurface.hxx>
#include <Geom_Surface.hxx>
#include <GeomFill_Generator.hxx>
#include <Standard_DomainError.hxx>
#include <StdFail_NotDone.hxx>
#include <TColgp_Array1OfPnt.hxx>
#include <TColgp_Array2OfPnt.hxx>
#include <TColStd_Array1OfInteger.hxx>
#include <TColStd_Array1OfReal.hxx>
#include <TColStd_Array2OfReal.hxx>
//=======================================================================
//function : GeomFill_Generator
//purpose :
//=======================================================================
GeomFill_Generator::GeomFill_Generator()
{
}
//=======================================================================
//function : Perform
//purpose :
//=======================================================================
void GeomFill_Generator::Perform(const Standard_Real PTol)
{
// Perform the profile of the sections.
GeomFill_Profiler::Perform( PTol);
// Create the surface.
Standard_Integer i,j;
Standard_Integer NbUPoles = NbPoles();
Standard_Integer NbVPoles = mySequence.Length();
Standard_Integer NbUKnots = NbKnots();
Standard_Integer NbVKnots = NbVPoles;
Standard_Boolean isUPeriodic = IsPeriodic();
Standard_Boolean isVPeriodic = Standard_False;
TColgp_Array2OfPnt Poles ( 1, NbUPoles, 1, NbVPoles);
TColStd_Array2OfReal Weights( 1, NbUPoles, 1, NbVPoles);
TColStd_Array1OfReal UKnots ( 1, NbUKnots);
TColStd_Array1OfReal VKnots ( 1, NbVKnots);
TColStd_Array1OfInteger UMults ( 1, NbUKnots);
TColStd_Array1OfInteger VMults ( 1, NbVKnots);
VMults.Init(1);
VMults(1) = VMults(NbVKnots) = 2;
KnotsAndMults( UKnots, UMults);
TColgp_Array1OfPnt Pole ( 1, NbUPoles);
TColStd_Array1OfReal Weight( 1, NbUPoles);
for ( j = 1; j <= NbVPoles; j++) {
Handle(Geom_BSplineCurve) Cj =
Handle(Geom_BSplineCurve)::DownCast(mySequence(j));
Cj->Poles(Pole);
Cj->Weights(Weight);
VKnots(j) = (Standard_Real)(j-1);
for ( i = 1; i <= NbUPoles; i++) {
Poles(i,j) = Pole (i);
Weights(i,j) = Weight(i);
}
}
mySurface = new Geom_BSplineSurface( Poles, Weights, UKnots, VKnots,
UMults, VMults, Degree(), 1,
isUPeriodic, isVPeriodic);
}