0023948: Wrong intersection between a surface of revolution and a plane.
[occt.git] / src / StepShape / StepShape_DimensionalCharacteristic.cxx
CommitLineData
b311480e 1// Created on: 2000-04-18
2// Created by: Andrey BETENEV
973c2be1 3// Copyright (c) 2000-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.0
7fd59977 17
18#include <StepShape_DimensionalCharacteristic.ixx>
19
20//=======================================================================
21//function : StepShape_DimensionalCharacteristic
22//purpose :
23//=======================================================================
24
25StepShape_DimensionalCharacteristic::StepShape_DimensionalCharacteristic ()
26{
27}
28
29//=======================================================================
30//function : CaseNum
31//purpose :
32//=======================================================================
33
34Standard_Integer StepShape_DimensionalCharacteristic::CaseNum (const Handle(Standard_Transient)& ent) const
35{
36 if (ent.IsNull()) return 0;
37 if (ent->IsKind(STANDARD_TYPE(StepShape_DimensionalLocation))) return 1;
38 if (ent->IsKind(STANDARD_TYPE(StepShape_DimensionalSize))) return 2;
39 return 0;
40}
41
42//=======================================================================
43//function : DimensionalLocation
44//purpose :
45//=======================================================================
46
47Handle(StepShape_DimensionalLocation) StepShape_DimensionalCharacteristic::DimensionalLocation () const
48{
49 return Handle(StepShape_DimensionalLocation)::DownCast(Value());
50}
51
52//=======================================================================
53//function : DimensionalSize
54//purpose :
55//=======================================================================
56
57Handle(StepShape_DimensionalSize) StepShape_DimensionalCharacteristic::DimensionalSize () const
58{
59 return Handle(StepShape_DimensionalSize)::DownCast(Value());
60}