mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-07-13 06:37:18 +08:00
Integration of OCCT 6.5.0 from SVN
This commit is contained in:
23
src/StepShape/StepShape_Shell.cxx
Executable file
23
src/StepShape/StepShape_Shell.cxx
Executable file
@@ -0,0 +1,23 @@
|
||||
|
||||
#include <StepShape_Shell.ixx>
|
||||
#include <Interface_Macros.hxx>
|
||||
|
||||
StepShape_Shell::StepShape_Shell () { }
|
||||
|
||||
Standard_Integer StepShape_Shell::CaseNum(const Handle(Standard_Transient)& ent) const
|
||||
{
|
||||
if (ent.IsNull()) return 0;
|
||||
if (ent->IsKind(STANDARD_TYPE(StepShape_OpenShell))) return 1;
|
||||
if (ent->IsKind(STANDARD_TYPE(StepShape_ClosedShell))) return 2;
|
||||
return 0;
|
||||
}
|
||||
|
||||
Handle(StepShape_OpenShell) StepShape_Shell::OpenShell () const
|
||||
{
|
||||
return GetCasted(StepShape_OpenShell,Value());
|
||||
}
|
||||
|
||||
Handle(StepShape_ClosedShell) StepShape_Shell::ClosedShell () const
|
||||
{
|
||||
return GetCasted(StepShape_ClosedShell,Value());
|
||||
}
|
||||
Reference in New Issue
Block a user