mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-06-05 11:24:17 +03:00
84 lines
2.7 KiB
C++
84 lines
2.7 KiB
C++
// Created on: 1994-08-05
|
|
// Created by: Remi LEQUETTE
|
|
// Copyright (c) 1994-1999 Matra Datavision
|
|
// Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
|
|
#include <Adaptor3d_CurveOnSurface.hxx>
|
|
#include <Geom2d_Curve.hxx>
|
|
#include <Geom2d_TrimmedCurve.hxx>
|
|
#include <Geom2dAdaptor.hxx>
|
|
#include <Geom2dAdaptor_HCurve.hxx>
|
|
#include <Geom_BezierCurve.hxx>
|
|
#include <Geom_BSplineCurve.hxx>
|
|
#include <Geom_Circle.hxx>
|
|
#include <Geom_Curve.hxx>
|
|
#include <Geom_Ellipse.hxx>
|
|
#include <Geom_Hyperbola.hxx>
|
|
#include <Geom_Line.hxx>
|
|
#include <Geom_Parabola.hxx>
|
|
#include <Geom_Plane.hxx>
|
|
#include <Geom_TrimmedCurve.hxx>
|
|
#include <GeomAdaptor.hxx>
|
|
#include <GeomAdaptor_HCurve.hxx>
|
|
#include <GeomAdaptor_HSurface.hxx>
|
|
#include <GeomAdaptor_Surface.hxx>
|
|
#include <GeomAPI.hxx>
|
|
#include <gp_Pln.hxx>
|
|
#include <ProjLib_ProjectedCurve.hxx>
|
|
#include <TColgp_Array1OfPnt.hxx>
|
|
#include <TColStd_Array1OfInteger.hxx>
|
|
#include <TColStd_Array1OfReal.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_OffsetCurve &&
|
|
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);
|
|
}
|