0023948: Wrong intersection between a surface of revolution and a plane.
[occt.git] / src / StepBasic / StepBasic_ProductOrFormationOrDefinition.cxx
CommitLineData
b311480e 1// Created on: 2003-01-28
2// Created by: data exchange team
973c2be1 3// Copyright (c) 2003-2014 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
b311480e 6//
d5f74e42 7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
b311480e 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
b311480e 15
7fd59977 16// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
7fd59977 17
18#include <StepBasic_ProductOrFormationOrDefinition.ixx>
19
20//=======================================================================
21//function : StepBasic_ProductOrFormationOrDefinition
22//purpose :
23//=======================================================================
24
25StepBasic_ProductOrFormationOrDefinition::StepBasic_ProductOrFormationOrDefinition ()
26{
27}
28
29//=======================================================================
30//function : CaseNum
31//purpose :
32//=======================================================================
33
34Standard_Integer StepBasic_ProductOrFormationOrDefinition::CaseNum (const Handle(Standard_Transient)& ent) const
35{
36 if (ent.IsNull()) return 0;
37 if (ent->IsKind(STANDARD_TYPE(StepBasic_Product))) return 1;
38 if (ent->IsKind(STANDARD_TYPE(StepBasic_ProductDefinitionFormation))) return 2;
39 if (ent->IsKind(STANDARD_TYPE(StepBasic_ProductDefinition))) return 3;
40 return 0;
41}
42
43//=======================================================================
44//function : Product
45//purpose :
46//=======================================================================
47
48Handle(StepBasic_Product) StepBasic_ProductOrFormationOrDefinition::Product () const
49{
50 return Handle(StepBasic_Product)::DownCast(Value());
51}
52
53//=======================================================================
54//function : ProductDefinitionFormation
55//purpose :
56//=======================================================================
57
58Handle(StepBasic_ProductDefinitionFormation) StepBasic_ProductOrFormationOrDefinition::ProductDefinitionFormation () const
59{
60 return Handle(StepBasic_ProductDefinitionFormation)::DownCast(Value());
61}
62
63//=======================================================================
64//function : ProductDefinition
65//purpose :
66//=======================================================================
67
68Handle(StepBasic_ProductDefinition) StepBasic_ProductOrFormationOrDefinition::ProductDefinition () const
69{
70 return Handle(StepBasic_ProductDefinition)::DownCast(Value());
71}