blob: 10f55532edda2a9cbc5b36f665cdd5d487eaa27c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// File: StepToGeom_MakeAxis1Placement.cxx
// Created: Tue Jun 15 18:35:17 1993
// Author: Martine LANGLOIS
// sln 22.10.2001. CTS23496: If problems with creation of axis's direction occur default direction is used (StepToGeom_MakeAxis1Placement(...) function)
#include <StepToGeom_MakeAxis1Placement.ixx>
#include <StepGeom_Direction.hxx>
#include <StepGeom_CartesianPoint.hxx>
#include <StepToGeom_MakeDirection.hxx>
#include <StepToGeom_MakeCartesianPoint.hxx>
#include <Geom_CartesianPoint.hxx>
#include <Geom_Direction.hxx>
#include <gp_Dir.hxx>
#include <gp_Pnt.hxx>
#include <Geom_Axis1Placement.hxx>
//=============================================================================
// Creation d' un Ax1Placement de Geom a partir d' un axis1_placement de Step
//=============================================================================
Standard_Boolean StepToGeom_MakeAxis1Placement::Convert (const Handle(StepGeom_Axis1Placement)& SA, Handle(Geom_Axis1Placement)& CA)
{
Handle(Geom_CartesianPoint) P;
if (StepToGeom_MakeCartesianPoint::Convert(SA->Location(),P))
{
// sln 22.10.2001. CTS23496: If problems with creation of axis direction occur default direction is used
gp_Dir D(0.,0.,1.);
if (SA->HasAxis())
{
Handle(Geom_Direction) D1;
if (StepToGeom_MakeDirection::Convert(SA->Axis(),D1))
D = D1->Dir();
}
CA = new Geom_Axis1Placement(P->Pnt(),D);
return Standard_True;
}
return Standard_False;
}
|