1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-06 18:26:22 +03:00
occt/src/TDataXtd/TDataXtd_Geometry.cxx
abv 92efcf78a6 0026936: Drawbacks of inlining in new type system in OCCT 7.0 -- automatic
Automatic restore of IMPLEMENT_STANDARD_RTTIEXT macro (upgrade -rtti)
2015-12-04 14:15:06 +03:00

521 lines
15 KiB
C++

// Created on: 2009-04-06
// Copyright (c) 2009-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 <Geom_CartesianPoint.hxx>
#include <Geom_Circle.hxx>
#include <Geom_Curve.hxx>
#include <Geom_CylindricalSurface.hxx>
#include <Geom_Ellipse.hxx>
#include <Geom_Line.hxx>
#include <Geom_Plane.hxx>
#include <Geom_RectangularTrimmedSurface.hxx>
#include <Geom_TrimmedCurve.hxx>
#include <gp_Ax1.hxx>
#include <gp_Circ.hxx>
#include <gp_Cylinder.hxx>
#include <gp_Elips.hxx>
#include <gp_Lin.hxx>
#include <gp_Pln.hxx>
#include <gp_Pnt.hxx>
#include <Standard_Failure.hxx>
#include <Standard_GUID.hxx>
#include <Standard_Type.hxx>
#include <TDataStd.hxx>
#include <TDataXtd.hxx>
#include <TDataXtd_Geometry.hxx>
#include <TDF_Attribute.hxx>
#include <TDF_Label.hxx>
#include <TDF_RelocationTable.hxx>
#include <TNaming_NamedShape.hxx>
#include <TNaming_Tool.hxx>
#include <TopAbs.hxx>
#include <TopoDS.hxx>
#include <TopoDS_Edge.hxx>
#include <TopoDS_Face.hxx>
#include <TopoDS_Vertex.hxx>
IMPLEMENT_STANDARD_RTTIEXT(TDataXtd_Geometry,TDF_Attribute)
//=======================================================================
//function : GetID
//purpose :
//=======================================================================
const Standard_GUID& TDataXtd_Geometry::GetID ()
{
static Standard_GUID TDataXtd_GeometryID ("2a96b604-ec8b-11d0-bee7-080009dc3333");
return TDataXtd_GeometryID;
}
//=======================================================================
//function : Set
//purpose :
//=======================================================================
Handle(TDataXtd_Geometry) TDataXtd_Geometry::Set (const TDF_Label& L)
{
Handle(TDataXtd_Geometry) A;
if (!L.FindAttribute(TDataXtd_Geometry::GetID(),A)) {
A = new TDataXtd_Geometry ();
// A->SetType(TDataXtd_ANY_GEOM);
L.AddAttribute(A);
}
return A;
}
//=======================================================================
//function : Point
//purpose :
//=======================================================================
Standard_Boolean TDataXtd_Geometry::Point(const TDF_Label& L,gp_Pnt& G)
{
Handle(TNaming_NamedShape) NS;
if (L.FindAttribute(TNaming_NamedShape::GetID(),NS)) {
return Point(NS,G);
}
return Standard_False;
}
//=======================================================================
//function : Point
//purpose :
//=======================================================================
Standard_Boolean TDataXtd_Geometry::Point(const Handle(TNaming_NamedShape)& NS, gp_Pnt& G)
{
const TopoDS_Shape& shape = TNaming_Tool::GetShape(NS);
if (shape.IsNull()) return Standard_False;
if (shape.ShapeType() == TopAbs_VERTEX) {
const TopoDS_Vertex& vertex = TopoDS::Vertex(shape);
G = BRep_Tool::Pnt (TopoDS::Vertex (vertex));
return Standard_True;
}
return Standard_False;
}
//=======================================================================
//function : Axis
//purpose :
//=======================================================================
Standard_Boolean TDataXtd_Geometry::Axis(const TDF_Label& L,gp_Ax1& G)
{
Handle(TNaming_NamedShape) NS;
if (L.FindAttribute(TNaming_NamedShape::GetID(),NS)) {
return Axis(NS,G);
}
return Standard_False;
}
//=======================================================================
//function : Axis
//purpose :
//=======================================================================
Standard_Boolean TDataXtd_Geometry::Axis(const Handle(TNaming_NamedShape)& NS, gp_Ax1& G)
{
gp_Lin lin;
if (Line(NS, lin)) {
G = lin.Position();
return Standard_True;
}
return Standard_False;
}
//=======================================================================
//function : Line
//purpose :
//=======================================================================
Standard_Boolean TDataXtd_Geometry::Line(const TDF_Label& L,gp_Lin& G)
{
Handle(TNaming_NamedShape) NS;
if (L.FindAttribute(TNaming_NamedShape::GetID(),NS)) {
return Line(NS,G);
}
return Standard_False;
}
//=======================================================================
//function : Line
//purpose :
//=======================================================================
Standard_Boolean TDataXtd_Geometry::Line(const Handle(TNaming_NamedShape)& NS,gp_Lin& G)
{
const TopoDS_Shape& shape = TNaming_Tool::GetShape(NS);
if (shape.IsNull()) return Standard_False;
if (shape.ShapeType() == TopAbs_EDGE) {
const TopoDS_Edge& edge = TopoDS::Edge(shape);
Standard_Real first,last;
// TopLoc_Location loc;
Handle(Geom_Curve) curve = BRep_Tool::Curve (edge,first,last);
if (!curve.IsNull()) {
if (curve->IsInstance (STANDARD_TYPE (Geom_TrimmedCurve)))
curve = (Handle(Geom_TrimmedCurve)::DownCast (curve))->BasisCurve ();
Handle(Geom_Line) C = Handle(Geom_Line)::DownCast(curve);
if (!C.IsNull()) {
G = C->Lin();
return Standard_True;
}
}
}
return Standard_False;
}
//=======================================================================
//function : Circle
//purpose :
//=======================================================================
Standard_Boolean TDataXtd_Geometry::Circle(const TDF_Label& L,gp_Circ& G)
{
Handle(TNaming_NamedShape) NS;
if (L.FindAttribute(TNaming_NamedShape::GetID(),NS)) {
return Circle(NS,G);
}
return Standard_False;
}
//=======================================================================
//function : Circle
//purpose :
//=======================================================================
Standard_Boolean TDataXtd_Geometry::Circle(const Handle(TNaming_NamedShape)& NS,gp_Circ& G)
{
const TopoDS_Shape& shape = TNaming_Tool::GetShape(NS);
if (shape.IsNull()) return Standard_False;
if (shape.ShapeType() == TopAbs_EDGE) {
const TopoDS_Edge& edge = TopoDS::Edge(shape);
Standard_Real first,last;
// TopLoc_Location loc;
Handle(Geom_Curve) curve = BRep_Tool::Curve (edge,first,last);
if (!curve.IsNull()) {
if (curve->IsInstance (STANDARD_TYPE (Geom_TrimmedCurve)))
curve = (Handle(Geom_TrimmedCurve)::DownCast (curve))->BasisCurve ();
Handle(Geom_Circle) C = Handle(Geom_Circle)::DownCast(curve);
if (!C.IsNull()) {
G = C->Circ();
return Standard_True;
}
}
}
return Standard_False;
}
//=======================================================================
//function : Ellipse
//purpose :
//=======================================================================
Standard_Boolean TDataXtd_Geometry::Ellipse(const TDF_Label& L,gp_Elips& G)
{
Handle(TNaming_NamedShape) NS;
if (L.FindAttribute(TNaming_NamedShape::GetID(),NS)) {
return Ellipse(NS,G);
}
return Standard_False;
}
//=======================================================================
//function : Ellipse
//purpose :
//=======================================================================
Standard_Boolean TDataXtd_Geometry::Ellipse(const Handle(TNaming_NamedShape)& NS, gp_Elips& G)
{
const TopoDS_Shape& shape = TNaming_Tool::GetShape(NS);
if (shape.IsNull()) return Standard_False;
if (shape.ShapeType() == TopAbs_EDGE) {
const TopoDS_Edge& edge = TopoDS::Edge(shape);
Standard_Real first,last;
Handle(Geom_Curve) curve = BRep_Tool::Curve (edge,first,last);
if (!curve.IsNull()) {
if (curve->IsInstance (STANDARD_TYPE (Geom_TrimmedCurve)))
curve = (Handle(Geom_TrimmedCurve)::DownCast (curve))->BasisCurve ();
Handle(Geom_Ellipse) C = Handle(Geom_Ellipse)::DownCast(curve);
if (!C.IsNull()) {
G = C->Elips();
return Standard_True;
}
}
}
return Standard_False;
}
//=======================================================================
//function : Plane
//purpose :
//=======================================================================
Standard_Boolean TDataXtd_Geometry::Plane(const TDF_Label& L, gp_Pln& G)
{
Handle(TNaming_NamedShape) NS;
if (L.FindAttribute(TNaming_NamedShape::GetID(),NS)) {
return Plane(NS,G);
}
return Standard_False;
}
//=======================================================================
//function : Plane
//purpose :
//=======================================================================
Standard_Boolean TDataXtd_Geometry::Plane(const Handle(TNaming_NamedShape)& NS, gp_Pln& G)
{
const TopoDS_Shape& shape = TNaming_Tool::GetShape(NS);
if (shape.IsNull()) return Standard_False;
if (shape.ShapeType() == TopAbs_FACE) {
const TopoDS_Face& face = TopoDS::Face(shape);
Handle(Geom_Surface) surface = BRep_Tool::Surface (face);
if (!surface.IsNull()) {
if (surface->IsInstance(STANDARD_TYPE(Geom_RectangularTrimmedSurface)))
surface = Handle(Geom_RectangularTrimmedSurface)::DownCast (surface)->BasisSurface();
Handle(Geom_Plane) S = Handle(Geom_Plane)::DownCast(surface);
if (!S.IsNull()) {
G = S->Pln();
return Standard_True;
}
}
}
return Standard_False;
}
//=======================================================================
//function : Cylinder
//purpose :
//=======================================================================
Standard_Boolean TDataXtd_Geometry::Cylinder(const TDF_Label& L, gp_Cylinder& G)
{
Handle(TNaming_NamedShape) NS;
if (L.FindAttribute(TNaming_NamedShape::GetID(),NS)) {
return Cylinder (NS,G);
}
return Standard_False;
}
//=======================================================================
//function : Cylinder
//purpose :
//=======================================================================
Standard_Boolean TDataXtd_Geometry::Cylinder(const Handle(TNaming_NamedShape)& NS, gp_Cylinder& G)
{
const TopoDS_Shape& shape = TNaming_Tool::GetShape(NS);
if (shape.IsNull()) return Standard_False;
if (shape.ShapeType() == TopAbs_FACE) {
const TopoDS_Face& face = TopoDS::Face(shape);
Handle(Geom_Surface) surface = BRep_Tool::Surface (face);
if (!surface.IsNull()) {
if (surface->IsInstance(STANDARD_TYPE(Geom_RectangularTrimmedSurface)))
surface = Handle(Geom_RectangularTrimmedSurface)::DownCast (surface)->BasisSurface();
Handle(Geom_CylindricalSurface) S = Handle(Geom_CylindricalSurface)::DownCast(surface);
if (!S.IsNull()) {
G = S->Cylinder();
return Standard_True;
}
}
}
return Standard_False;
}
//=======================================================================
//function : Type
//purpose :
//=======================================================================
TDataXtd_GeometryEnum TDataXtd_Geometry::Type (const TDF_Label& L)
{
Handle(TNaming_NamedShape) NS;
if (L.FindAttribute(TNaming_NamedShape::GetID(),NS)) {
return Type (NS);
}
return TDataXtd_ANY_GEOM;
}
//=======================================================================
//function : Type
//purpose :
//=======================================================================
TDataXtd_GeometryEnum TDataXtd_Geometry::Type (const Handle(TNaming_NamedShape)& NS)
{
TDataXtd_GeometryEnum type (TDataXtd_ANY_GEOM);
const TopoDS_Shape& shape = TNaming_Tool::GetShape(NS);
switch (shape.ShapeType()) {
case TopAbs_VERTEX :
{
type = TDataXtd_POINT;
break;
}
case TopAbs_EDGE :
{
const TopoDS_Edge& edge = TopoDS::Edge(shape);
Standard_Real first,last;
// TopLoc_Location loc;
Handle(Geom_Curve) curve = BRep_Tool::Curve (edge,first,last);
if (!curve.IsNull()) {
if (curve->IsInstance (STANDARD_TYPE (Geom_TrimmedCurve))) {
curve = (Handle(Geom_TrimmedCurve)::DownCast (curve))->BasisCurve ();
}
if (curve->IsInstance(STANDARD_TYPE(Geom_Line))) {
type = TDataXtd_LINE;
}
else if (curve->IsInstance(STANDARD_TYPE(Geom_Circle))) {
type = TDataXtd_CIRCLE;
}
else if (curve->IsInstance(STANDARD_TYPE(Geom_Ellipse))) {
type = TDataXtd_ELLIPSE;
}
break;
}
#ifdef OCCT_DEBUG
else {
Standard_Failure::Raise("curve Null dans TDataXtd_Geometry");
}
#endif
}
case TopAbs_FACE :
{
const TopoDS_Face& face = TopoDS::Face(shape);
Handle(Geom_Surface) surface = BRep_Tool::Surface (face);
if (!surface.IsNull()) {
if (surface->IsInstance(STANDARD_TYPE(Geom_RectangularTrimmedSurface))) {
surface = Handle(Geom_RectangularTrimmedSurface)::DownCast (surface)->BasisSurface();
}
if (surface->IsInstance(STANDARD_TYPE(Geom_CylindricalSurface))) {
type = TDataXtd_CYLINDER;
}
else if (surface->IsInstance(STANDARD_TYPE(Geom_Plane))) {
type = TDataXtd_PLANE;
}
}
#ifdef OCCT_DEBUG
else {
Standard_Failure::Raise("surface Null dans TDataXtd_Geometry");
}
#endif
break;
}
default :
{
break;
}
}
return type;
}
//=======================================================================
//function : TDataXtd_Geometry
//purpose :
//=======================================================================
TDataXtd_Geometry::TDataXtd_Geometry ()
: myType (TDataXtd_ANY_GEOM)
{ }
//=======================================================================
//function : GetType
//purpose :
//=======================================================================
TDataXtd_GeometryEnum TDataXtd_Geometry::GetType () const
{
return myType;
}
//=======================================================================
//function : SetType
//purpose :
//=======================================================================
void TDataXtd_Geometry::SetType (const TDataXtd_GeometryEnum G)
{
// OCC2932 correction
if(myType == G) return;
Backup();
myType = G;
}
//=======================================================================
//function : ID
//purpose :
//=======================================================================
const Standard_GUID& TDataXtd_Geometry::ID() const { return GetID(); }
//=======================================================================
//function : NewEmpty
//purpose :
//=======================================================================
Handle(TDF_Attribute) TDataXtd_Geometry::NewEmpty () const
{
return new TDataXtd_Geometry();
}
//=======================================================================
//function : Restore
//purpose :
//=======================================================================
void TDataXtd_Geometry::Restore (const Handle(TDF_Attribute)& With)
{
myType = Handle(TDataXtd_Geometry)::DownCast(With)->GetType();
}
//=======================================================================
//function : Paste
//purpose :
//=======================================================================
void TDataXtd_Geometry::Paste (const Handle(TDF_Attribute)& Into, const Handle(TDF_RelocationTable)&) const {
Handle(TDataXtd_Geometry)::DownCast(Into)->SetType(myType);
}
//=======================================================================
//function : Dump
//purpose :
//=======================================================================
Standard_OStream& TDataXtd_Geometry::Dump (Standard_OStream& anOS) const
{
anOS << "Geometry ";
TDataXtd::Print(GetType(),anOS);
return anOS;
}