mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +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
236 lines
7.9 KiB
C++
236 lines
7.9 KiB
C++
// Created on: 1994-03-14
|
|
// Created by: s: Christophe GUYOT & Frederic UNTEREINER
|
|
// 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.
|
|
|
|
#ifndef _IGESToBRep_CurveAndSurface_HeaderFile
|
|
#define _IGESToBRep_CurveAndSurface_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_DefineAlloc.hxx>
|
|
#include <Standard_Handle.hxx>
|
|
|
|
#include <Standard_Real.hxx>
|
|
#include <Standard_Boolean.hxx>
|
|
#include <Standard_Integer.hxx>
|
|
class Geom_Surface;
|
|
class IGESData_IGESModel;
|
|
class Transfer_TransientProcess;
|
|
class TopoDS_Shape;
|
|
class IGESData_IGESEntity;
|
|
class Message_Msg;
|
|
|
|
|
|
//! Provides methods to transfer CurveAndSurface from IGES to CASCADE.
|
|
class IGESToBRep_CurveAndSurface
|
|
{
|
|
public:
|
|
|
|
DEFINE_STANDARD_ALLOC
|
|
|
|
|
|
//! Creates a tool CurveAndSurface ready to run, with
|
|
//! epsilons set to 1.E-04, myModeTopo to True, the
|
|
//! optimization of the continuity to False.
|
|
Standard_EXPORT IGESToBRep_CurveAndSurface();
|
|
|
|
//! Creates a tool CurveAndSurface ready to run and sets its
|
|
//! fields as CS's.
|
|
Standard_EXPORT IGESToBRep_CurveAndSurface(const IGESToBRep_CurveAndSurface& CS);
|
|
|
|
//! Creates a tool CurveAndSurface ready to run.
|
|
Standard_EXPORT IGESToBRep_CurveAndSurface(const Standard_Real eps, const Standard_Real epsGeom, const Standard_Real epsCoeff, const Standard_Boolean mode, const Standard_Boolean modeapprox, const Standard_Boolean optimized);
|
|
|
|
//! Initializes the field of the tool CurveAndSurface with
|
|
//! default creating values.
|
|
Standard_EXPORT void Init();
|
|
|
|
//! Changes the value of "myEps"
|
|
void SetEpsilon (const Standard_Real eps);
|
|
|
|
//! Returns the value of "myEps"
|
|
Standard_Real GetEpsilon() const;
|
|
|
|
//! Changes the value of "myEpsCoeff"
|
|
void SetEpsCoeff (const Standard_Real eps);
|
|
|
|
//! Returns the value of "myEpsCoeff"
|
|
Standard_Real GetEpsCoeff() const;
|
|
|
|
//! Changes the value of "myEpsGeom"
|
|
Standard_EXPORT void SetEpsGeom (const Standard_Real eps);
|
|
|
|
//! Returns the value of "myEpsGeom"
|
|
Standard_Real GetEpsGeom() const;
|
|
|
|
//! Changes the value of "myMinTol"
|
|
void SetMinTol (const Standard_Real mintol);
|
|
|
|
//! Changes the value of "myMaxTol"
|
|
void SetMaxTol (const Standard_Real maxtol);
|
|
|
|
//! Sets values of "myMinTol" and "myMaxTol" as follows
|
|
//! myMaxTol = Max ("read.maxprecision.val", myEpsGeom * myUnitFactor)
|
|
//! myMinTol = Precision::Confusion()
|
|
//! Remark: This method is automatically invoked each time the values
|
|
//! of "myEpsGeom" or "myUnitFactor" are changed
|
|
Standard_EXPORT void UpdateMinMaxTol();
|
|
|
|
//! Returns the value of "myMinTol"
|
|
Standard_Real GetMinTol() const;
|
|
|
|
//! Returns the value of "myMaxTol"
|
|
Standard_Real GetMaxTol() const;
|
|
|
|
//! Changes the value of "myModeApprox"
|
|
void SetModeApprox (const Standard_Boolean mode);
|
|
|
|
//! Returns the value of "myModeApprox"
|
|
Standard_Boolean GetModeApprox() const;
|
|
|
|
//! Changes the value of "myModeIsTopo"
|
|
void SetModeTransfer (const Standard_Boolean mode);
|
|
|
|
//! Returns the value of "myModeIsTopo"
|
|
Standard_Boolean GetModeTransfer() const;
|
|
|
|
//! Changes the value of "myContIsOpti"
|
|
void SetOptimized (const Standard_Boolean optimized);
|
|
|
|
//! Returns the value of "myContIsOpti"
|
|
Standard_Boolean GetOptimized() const;
|
|
|
|
//! Returns the value of " myUnitFactor"
|
|
Standard_Real GetUnitFactor() const;
|
|
|
|
//! Changes the value of "mySurfaceCurve"
|
|
void SetSurfaceCurve (const Standard_Integer ival);
|
|
|
|
//! Returns the value of " mySurfaceCurve" 0 = value in
|
|
//! file , 2 = kepp 2d and compute 3d 3 = keep 3d and
|
|
//! compute 2d
|
|
Standard_Integer GetSurfaceCurve() const;
|
|
|
|
//! Set the value of "myModel"
|
|
Standard_EXPORT void SetModel (const Handle(IGESData_IGESModel)& model);
|
|
|
|
//! Returns the value of "myModel"
|
|
Handle(IGESData_IGESModel) GetModel() const;
|
|
|
|
//! Changes the value of "myContinuity"
|
|
//! if continuity = 0 do nothing else
|
|
//! if continuity = 1 try C1
|
|
//! if continuity = 2 try C2
|
|
void SetContinuity (const Standard_Integer continuity);
|
|
|
|
//! Returns the value of "myContinuity"
|
|
Standard_Integer GetContinuity() const;
|
|
|
|
//! Set the value of "myMsgReg"
|
|
void SetTransferProcess (const Handle(Transfer_TransientProcess)& TP);
|
|
|
|
//! Returns the value of "myMsgReg"
|
|
Handle(Transfer_TransientProcess) GetTransferProcess() const;
|
|
|
|
//! Returns the result of the transfert of any IGES Curve
|
|
//! or Surface Entity. If the transfer has failed, this
|
|
//! member return a NullEntity.
|
|
Standard_EXPORT TopoDS_Shape TransferCurveAndSurface (const Handle(IGESData_IGESEntity)& start);
|
|
|
|
//! Returns the result of the transfert the geometry of
|
|
//! any IGESEntity. If the transfer has failed, this
|
|
//! member return a NullEntity.
|
|
Standard_EXPORT TopoDS_Shape TransferGeometry (const Handle(IGESData_IGESEntity)& start);
|
|
|
|
//! Records a new Fail message
|
|
void SendFail (const Handle(IGESData_IGESEntity)& start, const Message_Msg& amsg);
|
|
|
|
//! Records a new Warning message
|
|
void SendWarning (const Handle(IGESData_IGESEntity)& start, const Message_Msg& amsg);
|
|
|
|
//! Records a new Information message from the definition
|
|
//! of a Msg (Original+Value)
|
|
void SendMsg (const Handle(IGESData_IGESEntity)& start, const Message_Msg& amsg);
|
|
|
|
//! Returns True if start was already treated and has a result in "myMap"
|
|
//! else returns False.
|
|
Standard_EXPORT Standard_Boolean HasShapeResult (const Handle(IGESData_IGESEntity)& start) const;
|
|
|
|
//! Returns the result of the transfer of the IGESEntity "start" contained
|
|
//! in "myMap" . (if HasShapeResult is True).
|
|
Standard_EXPORT TopoDS_Shape GetShapeResult (const Handle(IGESData_IGESEntity)& start) const;
|
|
|
|
//! set in "myMap" the result of the transfer of the IGESEntity "start".
|
|
Standard_EXPORT void SetShapeResult (const Handle(IGESData_IGESEntity)& start, const TopoDS_Shape& result);
|
|
|
|
//! Returns the number of shapes results contained in "myMap" for the
|
|
//! IGESEntity start ( type VertexList or EdgeList).
|
|
Standard_EXPORT Standard_Integer NbShapeResult (const Handle(IGESData_IGESEntity)& start) const;
|
|
|
|
//! Returns the numth result of the IGESEntity start (type VertexList or
|
|
//! EdgeList) in "myMap". (if NbShapeResult is not null).
|
|
Standard_EXPORT TopoDS_Shape GetShapeResult (const Handle(IGESData_IGESEntity)& start, const Standard_Integer num) const;
|
|
|
|
//! set in "myMap" the result of the transfer of the entity of the
|
|
//! IGESEntity start ( type VertexList or EdgeList).
|
|
Standard_EXPORT void AddShapeResult (const Handle(IGESData_IGESEntity)& start, const TopoDS_Shape& result);
|
|
|
|
Standard_EXPORT void SetSurface (const Handle(Geom_Surface)& theSurface);
|
|
|
|
Standard_EXPORT Handle(Geom_Surface) Surface() const;
|
|
|
|
Standard_EXPORT Standard_Real GetUVResolution();
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
Standard_Real myEps;
|
|
Standard_Real myEpsCoeff;
|
|
Standard_Real myEpsGeom;
|
|
Standard_Real myMinTol;
|
|
Standard_Real myMaxTol;
|
|
Standard_Boolean myModeIsTopo;
|
|
Standard_Boolean myModeApprox;
|
|
Standard_Boolean myContIsOpti;
|
|
Standard_Real myUnitFactor;
|
|
Standard_Integer mySurfaceCurve;
|
|
Standard_Integer myContinuity;
|
|
Handle(Geom_Surface) mySurface;
|
|
Standard_Real myUVResolution;
|
|
Standard_Boolean myIsResolCom;
|
|
Handle(IGESData_IGESModel) myModel;
|
|
Handle(Transfer_TransientProcess) myTP;
|
|
|
|
|
|
};
|
|
|
|
|
|
#include <IGESToBRep_CurveAndSurface.lxx>
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _IGESToBRep_CurveAndSurface_HeaderFile
|