blob: d466f6370598dbbdf25121347b1e017ebe9c7a6c (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
// File: PGeom_Parabola.cxx
// Created: Thu Mar 4 10:08:42 1993
// Author: Philippe DAUTRY
// <fid@sdsun2>
// Copyright: Matra Datavision 1993
#include <PGeom_Parabola.ixx>
//=======================================================================
//function : PGeom_Parabola
//purpose :
//=======================================================================
PGeom_Parabola::PGeom_Parabola()
{}
//=======================================================================
//function : PGeom_Parabola
//purpose :
//=======================================================================
PGeom_Parabola::PGeom_Parabola
(const gp_Ax2& aPosition,
const Standard_Real aFocalLength) :
PGeom_Conic(aPosition),
focalLength(aFocalLength)
{}
//=======================================================================
//function : FocalLength
//purpose :
//=======================================================================
void PGeom_Parabola::FocalLength(const Standard_Real aFocalLength)
{ focalLength = aFocalLength; }
//=======================================================================
//function : FocalLength
//purpose :
//=======================================================================
Standard_Real PGeom_Parabola::FocalLength() const
{ return focalLength; }
|