blob: 2f84bf7535da2914a627a73fb13f86965f7eb77a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// File: Plate_D1.cxx
// Created: Fri Oct 20 20:00:09 1995
// Author: Andre LIEUTIER
// <ds@sgi63>
#include <Plate_D1.ixx>
Plate_D1::Plate_D1(const gp_XYZ& du, const gp_XYZ& dv)
:Du(du),Dv(dv)
{
}
Plate_D1::Plate_D1(const Plate_D1& ref)
:Du(ref.Du),Dv(ref.Dv)
{
}
|