mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
Integration of OCCT 6.5.0 from SVN
This commit is contained in:
32
src/StepGeom/StepGeom_ElementarySurface.cxx
Executable file
32
src/StepGeom/StepGeom_ElementarySurface.cxx
Executable file
@@ -0,0 +1,32 @@
|
||||
#include <StepGeom_ElementarySurface.ixx>
|
||||
|
||||
|
||||
StepGeom_ElementarySurface::StepGeom_ElementarySurface () {}
|
||||
|
||||
void StepGeom_ElementarySurface::Init(
|
||||
const Handle(TCollection_HAsciiString)& aName)
|
||||
{
|
||||
|
||||
StepRepr_RepresentationItem::Init(aName);
|
||||
}
|
||||
|
||||
void StepGeom_ElementarySurface::Init(
|
||||
const Handle(TCollection_HAsciiString)& aName,
|
||||
const Handle(StepGeom_Axis2Placement3d)& aPosition)
|
||||
{
|
||||
// --- classe own fields ---
|
||||
position = aPosition;
|
||||
// --- classe inherited fields ---
|
||||
StepRepr_RepresentationItem::Init(aName);
|
||||
}
|
||||
|
||||
|
||||
void StepGeom_ElementarySurface::SetPosition(const Handle(StepGeom_Axis2Placement3d)& aPosition)
|
||||
{
|
||||
position = aPosition;
|
||||
}
|
||||
|
||||
Handle(StepGeom_Axis2Placement3d) StepGeom_ElementarySurface::Position() const
|
||||
{
|
||||
return position;
|
||||
}
|
Reference in New Issue
Block a user