blob: 71e94a7e3d0599db411bad07a5c99e5931338219 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
// File: StepShape_AngularLocation.cxx
// Created: Tue Apr 18 16:42:57 2000
// Author: Andrey BETENEV
// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.0
// Copyright: Matra Datavision 1999
#include <StepShape_AngularLocation.ixx>
//=======================================================================
//function : StepShape_AngularLocation
//purpose :
//=======================================================================
StepShape_AngularLocation::StepShape_AngularLocation ()
{
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void StepShape_AngularLocation::Init (const Handle(TCollection_HAsciiString) &aShapeAspectRelationship_Name,
const Standard_Boolean hasShapeAspectRelationship_Description,
const Handle(TCollection_HAsciiString) &aShapeAspectRelationship_Description,
const Handle(StepRepr_ShapeAspect) &aShapeAspectRelationship_RelatingShapeAspect,
const Handle(StepRepr_ShapeAspect) &aShapeAspectRelationship_RelatedShapeAspect,
const StepShape_AngleRelator aAngleSelection)
{
StepShape_DimensionalLocation::Init(aShapeAspectRelationship_Name,
hasShapeAspectRelationship_Description,
aShapeAspectRelationship_Description,
aShapeAspectRelationship_RelatingShapeAspect,
aShapeAspectRelationship_RelatedShapeAspect);
theAngleSelection = aAngleSelection;
}
//=======================================================================
//function : AngleSelection
//purpose :
//=======================================================================
StepShape_AngleRelator StepShape_AngularLocation::AngleSelection () const
{
return theAngleSelection;
}
//=======================================================================
//function : SetAngleSelection
//purpose :
//=======================================================================
void StepShape_AngularLocation::SetAngleSelection (const StepShape_AngleRelator aAngleSelection)
{
theAngleSelection = aAngleSelection;
}
|