mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-15 13:39:57 +08:00
Adaptor2d_Curve2d, Adaptor3d_Curve and Adaptor3d_Surface now inherit Standard_Transient. Interfaces Adaptor2d_HCurve2d, Adaptor3d_HCurve, Adaptor3d_HSurface and their subclasses are now aliases to Adaptor2d_Curve2d, Adaptor3d_Curve and Adaptor3d_Surface. Removed numerous unsafe reinterpret casts. Generic classes Adaptor3d_GenHCurve, Adaptor3d_GenHSurface, Adaptor2d_GenHCurve2d have been removed. Several redundant .lxx files have been merged into .hxx. Removed obsolete adaptor classes with H suffix.
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_Curve.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_Curve.hxx>
|
|
#include <GeomAdaptor_Surface.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_Curve) HC = new GeomAdaptor_Curve(C);
|
|
Handle(Geom_Plane) Plane = new Geom_Plane(P);
|
|
Handle(GeomAdaptor_Surface) HS = new GeomAdaptor_Surface(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_Curve) AHC = new Geom2dAdaptor_Curve(C);
|
|
|
|
Handle(Geom_Plane) ThePlane = new Geom_Plane(P);
|
|
Handle(GeomAdaptor_Surface) AHS = new GeomAdaptor_Surface(ThePlane);
|
|
|
|
Adaptor3d_CurveOnSurface COS(AHC,AHS);
|
|
return GeomAdaptor::MakeCurve(COS);
|
|
}
|