blob: 2c1b54ddd747b99c56de73e9b3dbc1e774a2c7ac (
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
|
// File: Plate_PinpointConstraint.cxx
// Created: Fri Oct 20 19:39:17 1995
// Author: Andre LIEUTIER
// <ds@sgi63>
#include <Plate_PinpointConstraint.ixx>
Plate_PinpointConstraint::Plate_PinpointConstraint()
{
pnt2d = gp_XY(0,0);
value = gp_XYZ(0,0,0);
idu = 0;
idv = 0;
}
Plate_PinpointConstraint::Plate_PinpointConstraint(const gp_XY& point2d, const gp_XYZ& ImposedValue,
const Standard_Integer iu, const Standard_Integer iv)
{
pnt2d = point2d;
value = ImposedValue;
idu = iu;
idv = iv;
}
|