Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

View 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());
}