aee1c7a1fea433a09fa6c8291bcfad025a68ef0f
[occt.git] / src / StepToGeom / StepToGeom_MakeSweptSurface.cxx
1 // Created on: 1993-07-05
2 // Created by: Martine LANGLOIS
3 // Copyright (c) 1993-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 //:p0 abv 19.02.99: management of 'done' flag improved
18
19 #include <Geom_SurfaceOfLinearExtrusion.hxx>
20 #include <Geom_SurfaceOfRevolution.hxx>
21 #include <StepGeom_SurfaceOfLinearExtrusion.hxx>
22 #include <StepGeom_SurfaceOfRevolution.hxx>
23 #include <StepGeom_SweptSurface.hxx>
24 #include <StepToGeom_MakeSurfaceOfLinearExtrusion.hxx>
25 #include <StepToGeom_MakeSurfaceOfRevolution.hxx>
26 #include <StepToGeom_MakeSweptSurface.hxx>
27
28 //=============================================================================
29 // Creation d' une SweptSurface de prostep a partir d' une 
30 // SweptSurface de Geom
31 //=============================================================================
32 Standard_Boolean StepToGeom_MakeSweptSurface::Convert (const Handle(StepGeom_SweptSurface)& SS, Handle(Geom_SweptSurface)& CS)
33 {
34   if (SS->IsKind(STANDARD_TYPE(StepGeom_SurfaceOfLinearExtrusion))) {
35     const Handle(StepGeom_SurfaceOfLinearExtrusion) Sur = Handle(StepGeom_SurfaceOfLinearExtrusion)::DownCast(SS);
36     return StepToGeom_MakeSurfaceOfLinearExtrusion::Convert(Sur,Handle(Geom_SurfaceOfLinearExtrusion)::DownCast (CS));
37   }
38   if (SS->IsKind(STANDARD_TYPE(StepGeom_SurfaceOfRevolution))) {
39     const Handle(StepGeom_SurfaceOfRevolution) Sur = Handle(StepGeom_SurfaceOfRevolution)::DownCast(SS);
40     return StepToGeom_MakeSurfaceOfRevolution::Convert(Sur,Handle(Geom_SurfaceOfRevolution)::DownCast (CS));
41   }
42   return Standard_False;
43 }