blob: 69f145fda5b5175acf3fea2e414c58a43f4b8b21 (
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
|
// File: StepShape_DimensionalSizeWithPath.cxx
// Created: Tue Apr 18 16:42:58 2000
// Author: Andrey BETENEV
// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.0
// Copyright: Matra Datavision 1999
#include <StepShape_DimensionalSizeWithPath.ixx>
//=======================================================================
//function : StepShape_DimensionalSizeWithPath
//purpose :
//=======================================================================
StepShape_DimensionalSizeWithPath::StepShape_DimensionalSizeWithPath ()
{
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void StepShape_DimensionalSizeWithPath::Init (const Handle(StepRepr_ShapeAspect) &aDimensionalSize_AppliesTo,
const Handle(TCollection_HAsciiString) &aDimensionalSize_Name,
const Handle(StepRepr_ShapeAspect) &aPath)
{
StepShape_DimensionalSize::Init(aDimensionalSize_AppliesTo,
aDimensionalSize_Name);
thePath = aPath;
}
//=======================================================================
//function : Path
//purpose :
//=======================================================================
Handle(StepRepr_ShapeAspect) StepShape_DimensionalSizeWithPath::Path () const
{
return thePath;
}
//=======================================================================
//function : SetPath
//purpose :
//=======================================================================
void StepShape_DimensionalSizeWithPath::SetPath (const Handle(StepRepr_ShapeAspect) &aPath)
{
thePath = aPath;
}
|