blob: 424c0ec747b5f2a7f427c5e777a1135116079b23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// File: GeomPlate_Aij.cxx
// Created: Wed Nov 25 11:47:25 1998
// Author: Julia GERASIMOVA
// <jgv@redfox.nnov.matra-dtv.fr>
#include <GeomPlate_Aij.ixx>
GeomPlate_Aij::GeomPlate_Aij()
{
}
GeomPlate_Aij::GeomPlate_Aij( const Standard_Integer anInd1,
const Standard_Integer anInd2,
const gp_Vec& aVec )
{
Ind1 = anInd1;
Ind2 = anInd2;
Vec = aVec;
}
|