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_Conic.cxx
Executable file
32
src/StepGeom/StepGeom_Conic.cxx
Executable file
@@ -0,0 +1,32 @@
|
||||
#include <StepGeom_Conic.ixx>
|
||||
|
||||
|
||||
StepGeom_Conic::StepGeom_Conic () {}
|
||||
|
||||
void StepGeom_Conic::Init(
|
||||
const Handle(TCollection_HAsciiString)& aName)
|
||||
{
|
||||
|
||||
StepRepr_RepresentationItem::Init(aName);
|
||||
}
|
||||
|
||||
void StepGeom_Conic::Init(
|
||||
const Handle(TCollection_HAsciiString)& aName,
|
||||
const StepGeom_Axis2Placement& aPosition)
|
||||
{
|
||||
// --- classe own fields ---
|
||||
position = aPosition;
|
||||
// --- classe inherited fields ---
|
||||
StepRepr_RepresentationItem::Init(aName);
|
||||
}
|
||||
|
||||
|
||||
void StepGeom_Conic::SetPosition(const StepGeom_Axis2Placement& aPosition)
|
||||
{
|
||||
position = aPosition;
|
||||
}
|
||||
|
||||
StepGeom_Axis2Placement StepGeom_Conic::Position() const
|
||||
{
|
||||
return position;
|
||||
}
|
Reference in New Issue
Block a user