blob: 0346643358571ac0dc2fca9459f44717320dd3ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
Blend_PointOnRst::Blend_PointOnRst () {}
Blend_PointOnRst::Blend_PointOnRst(const TheArc& A,
const Standard_Real Param,
const IntSurf_Transition& TLine,
const IntSurf_Transition& TArc):
arc(A),traline(TLine),traarc(TArc),prm(Param)
{}
void Blend_PointOnRst::SetArc(const TheArc& A,
const Standard_Real Param,
const IntSurf_Transition& TLine,
const IntSurf_Transition& TArc)
{
arc = A;
prm = Param;
traline = TLine;
traarc = TArc;
}
|