blob: 402aff4c165c4de13496b07178c08caef431e35d (
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
|
// File: PGeom_Plane.cxx
// Created: Thu Mar 4 10:11:04 1993
// Author: Philippe DAUTRY
// <fid@sdsun2>
// Copyright: Matra Datavision 1993
#include <PGeom_Plane.ixx>
//=======================================================================
//function : PGeom_Plane
//purpose :
//=======================================================================
PGeom_Plane::PGeom_Plane()
{}
//=======================================================================
//function : PGeom_Plane
//purpose :
//=======================================================================
PGeom_Plane::PGeom_Plane
(const gp_Ax3& aPosition) :
PGeom_ElementarySurface(aPosition)
{}
|