mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-10 18:51:21 +03:00
Automatic upgrade of OCCT code by command "occt_upgrade . -nocdl": - WOK-generated header files from inc and sources from drv are moved to src - CDL files removed - All packages are converted to nocdlpack
95 lines
3.1 KiB
C++
95 lines
3.1 KiB
C++
// Created on: 1995-02-20
|
|
// Created by: Jacques GOUSSARD
|
|
// Copyright (c) 1995-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 <BRep_Tool.hxx>
|
|
#include <BRepTools.hxx>
|
|
#include <Draft.hxx>
|
|
#include <ElSLib.hxx>
|
|
#include <Geom_ConicalSurface.hxx>
|
|
#include <Geom_CylindricalSurface.hxx>
|
|
#include <Geom_Plane.hxx>
|
|
#include <Geom_RectangularTrimmedSurface.hxx>
|
|
#include <Geom_Surface.hxx>
|
|
#include <gp_Dir.hxx>
|
|
#include <Precision.hxx>
|
|
#include <Standard_DomainError.hxx>
|
|
#include <TopoDS_Face.hxx>
|
|
|
|
//=======================================================================
|
|
//function : Angle
|
|
//purpose :
|
|
//=======================================================================
|
|
Standard_Real Draft::Angle(const TopoDS_Face& F,
|
|
const gp_Dir& D)
|
|
{
|
|
|
|
TopLoc_Location Lo;
|
|
Handle(Geom_Surface) S = BRep_Tool::Surface(F,Lo);
|
|
Handle(Standard_Type) TypeS = S->DynamicType();
|
|
if (TypeS == STANDARD_TYPE(Geom_RectangularTrimmedSurface)) {
|
|
S = Handle(Geom_RectangularTrimmedSurface)::DownCast(S)->BasisSurface();
|
|
TypeS = S->DynamicType();
|
|
}
|
|
|
|
if (TypeS != STANDARD_TYPE(Geom_Plane) &&
|
|
TypeS != STANDARD_TYPE(Geom_ConicalSurface) &&
|
|
TypeS != STANDARD_TYPE(Geom_CylindricalSurface)) {
|
|
Standard_DomainError::Raise();
|
|
}
|
|
|
|
Standard_Real Angle;
|
|
S = Handle(Geom_Surface)::DownCast(S->Transformed(Lo.Transformation()));
|
|
if (TypeS == STANDARD_TYPE(Geom_Plane)) {
|
|
gp_Ax3 ax3(Handle(Geom_Plane)::DownCast(S)->Pln().Position());
|
|
gp_Vec normale(ax3.Direction());
|
|
if (!ax3.Direct()) {
|
|
normale.Reverse();
|
|
}
|
|
if (F.Orientation() == TopAbs_REVERSED) {
|
|
normale.Reverse();
|
|
}
|
|
Angle = ASin(normale.Dot(D));
|
|
}
|
|
else if (TypeS == STANDARD_TYPE(Geom_CylindricalSurface)) {
|
|
gp_Cylinder Cy(Handle(Geom_CylindricalSurface)::DownCast(S)->Cylinder());
|
|
Standard_Real testdir = D.Dot(Cy.Axis().Direction());
|
|
if (Abs(testdir) <= 1.-Precision::Angular()) {
|
|
Standard_DomainError::Raise();
|
|
}
|
|
Angle = 0.;
|
|
}
|
|
else { // STANDARD_TYPE(Geom_ConicalSurface)
|
|
gp_Cone Co(Handle(Geom_ConicalSurface)::DownCast(S)->Cone());
|
|
Standard_Real testdir = D.Dot(Co.Axis().Direction());
|
|
if (Abs(testdir) <= 1.-Precision::Angular()) {
|
|
Standard_DomainError::Raise();
|
|
}
|
|
Standard_Real umin,umax,vmin,vmax;
|
|
BRepTools::UVBounds(F,umin,umax,vmin,vmax);
|
|
gp_Pnt ptbid;
|
|
gp_Vec d1u,d1v;
|
|
ElSLib::D1(umin+umax/2.,vmin+vmax/2.,Co,ptbid,d1u,d1v);
|
|
d1u.Cross(d1v);
|
|
d1u.Normalize();
|
|
if (F.Orientation() == TopAbs_REVERSED) {
|
|
d1u.Reverse();
|
|
}
|
|
Angle = ASin(d1u.Dot(D));
|
|
}
|
|
return Angle;
|
|
}
|