mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-15 04:04:07 +08:00
25 lines
429 B
C++
Executable File
25 lines
429 B
C++
Executable File
// File: GccInt_BHyper.cxx
|
|
// Created: Mon Oct 7 15:33:07 1991
|
|
// Author: Remi GILET
|
|
// <reg@phobox>
|
|
|
|
|
|
#include <GccInt_BHyper.ixx>
|
|
#include <Standard_NotImplemented.hxx>
|
|
#include <gp_Hypr2d.hxx>
|
|
|
|
GccInt_BHyper::
|
|
GccInt_BHyper(const gp_Hypr2d& Hyper) {
|
|
hyp = gp_Hypr2d(Hyper);
|
|
}
|
|
|
|
GccInt_IType GccInt_BHyper::
|
|
ArcType() const {
|
|
return GccInt_Hpr;
|
|
}
|
|
|
|
gp_Hypr2d GccInt_BHyper::
|
|
Hyperbola() const { return hyp; }
|
|
|
|
|