blob: 10d54402339c588aef4123e9028c919780d3bcf3 (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
// File: GeomAPI.cxx
// Created: Fri Aug 5 11:38:25 1994
// Author: Remi LEQUETTE
// <rle@bravox>
#include <GeomAPI.ixx>
#include <ProjLib_ProjectedCurve.hxx>
#include <Adaptor3d_CurveOnSurface.hxx>
#include <Geom2dAdaptor.hxx>
#include <GeomAdaptor_Surface.hxx>
#include <GeomAdaptor_HCurve.hxx>
#include <Geom2dAdaptor_HCurve.hxx>
#include <GeomAdaptor_HSurface.hxx>
#include <GeomAdaptor.hxx>
#include <Geom_Plane.hxx>
#include <Geom_Line.hxx>
#include <Geom_Circle.hxx>
#include <Geom_Ellipse.hxx>
#include <Geom_Parabola.hxx>
#include <Geom_Hyperbola.hxx>
#include <Geom_BezierCurve.hxx>
#include <Geom_BSplineCurve.hxx>
#include <Geom_TrimmedCurve.hxx>
#include <Geom2d_TrimmedCurve.hxx>
#include <TColStd_Array1OfReal.hxx>
#include <TColStd_Array1OfInteger.hxx>
#include <TColgp_Array1OfPnt.hxx>
//=======================================================================
//function : To2d
//purpose :
//=======================================================================
Handle(Geom2d_Curve) GeomAPI::To2d(const Handle(Geom_Curve)& C,
const gp_Pln& P)
{
Handle(Geom2d_Curve) result;
Handle(GeomAdaptor_HCurve) HC = new GeomAdaptor_HCurve(C);
Handle(Geom_Plane) Plane = new Geom_Plane(P);
Handle(GeomAdaptor_HSurface) HS = new GeomAdaptor_HSurface(Plane);
ProjLib_ProjectedCurve Proj(HS,HC);
if (Proj.GetType() != GeomAbs_OtherCurve) {
result = Geom2dAdaptor::MakeCurve(Proj);
}
return result;
}
//=======================================================================
//function : To3d
//purpose :
//=======================================================================
Handle(Geom_Curve) GeomAPI::To3d(const Handle(Geom2d_Curve)& C,
const gp_Pln& P)
{
Handle(Geom2dAdaptor_HCurve) AHC = new Geom2dAdaptor_HCurve(C);
Handle(Geom_Plane) ThePlane = new Geom_Plane(P);
Handle(GeomAdaptor_HSurface) AHS = new GeomAdaptor_HSurface(ThePlane);
Adaptor3d_CurveOnSurface COS(AHC,AHS);
return GeomAdaptor::MakeCurve(COS);
}
|