mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-04 13:13:25 +03:00
0031939: Coding - correction of spelling errors in comments
Fix various typos Fixed via `codespell v2.0.dev`
This commit is contained in:
@@ -114,7 +114,7 @@ static Handle(IGESToBRep_AlgoContainer) theContainer;
|
||||
|
||||
//=======================================================================
|
||||
//function : IsCurveAndSurface
|
||||
//purpose : Return True if the IgesEntity can be transfered
|
||||
//purpose : Return True if the IgesEntity can be transferred
|
||||
// by TransferCurveAndSurface
|
||||
//=======================================================================
|
||||
Standard_Boolean IGESToBRep::IsCurveAndSurface(const Handle(IGESData_IGESEntity)& start)
|
||||
@@ -130,7 +130,7 @@ Standard_Boolean IGESToBRep::IsCurveAndSurface(const Handle(IGESData_IGESEntity)
|
||||
|
||||
//=======================================================================
|
||||
//function : IsBasicCurve
|
||||
//purpose : Return True if the IgesEntity can be transfered
|
||||
//purpose : Return True if the IgesEntity can be transferred
|
||||
// by TransferBasicCurve
|
||||
//=======================================================================
|
||||
Standard_Boolean IGESToBRep::IsBasicCurve(const Handle(IGESData_IGESEntity)& start)
|
||||
@@ -149,7 +149,7 @@ Standard_Boolean IGESToBRep::IsBasicCurve(const Handle(IGESData_IGESEntity)& sta
|
||||
|
||||
//=======================================================================
|
||||
//function : IsBasicSurface
|
||||
//purpose : Return True if the IgesEntity can be transfered
|
||||
//purpose : Return True if the IgesEntity can be transferred
|
||||
// by TransferBasicSurface
|
||||
//=======================================================================
|
||||
Standard_Boolean IGESToBRep::IsBasicSurface(const Handle(IGESData_IGESEntity)& start)
|
||||
@@ -171,7 +171,7 @@ Standard_Boolean IGESToBRep::IsBasicSurface(const Handle(IGESData_IGESEntity)& s
|
||||
|
||||
//=======================================================================
|
||||
//function : IsTopoCurve
|
||||
//purpose : Return True if the IgesEntity can be transfered
|
||||
//purpose : Return True if the IgesEntity can be transferred
|
||||
// by TransferTopoCurve
|
||||
//=======================================================================
|
||||
Standard_Boolean IGESToBRep::IsTopoCurve(const Handle(IGESData_IGESEntity)& start)
|
||||
@@ -190,7 +190,7 @@ Standard_Boolean IGESToBRep::IsTopoCurve(const Handle(IGESData_IGESEntity)& star
|
||||
|
||||
//=======================================================================
|
||||
//function : IsTopoSurface
|
||||
//purpose : Return True if the IgesEntity can be transfered
|
||||
//purpose : Return True if the IgesEntity can be transferred
|
||||
// by TransferTopoSurface
|
||||
//=======================================================================
|
||||
Standard_Boolean IGESToBRep::IsTopoSurface(const Handle(IGESData_IGESEntity)& start)
|
||||
@@ -223,7 +223,7 @@ Standard_Boolean IGESToBRep::IsTopoSurface(const Handle(IGESData_IGESEntity)& st
|
||||
|
||||
//=======================================================================
|
||||
//function : IsBRepEntity
|
||||
//purpose : Return True if the IgesEntity can be transfered
|
||||
//purpose : Return True if the IgesEntity can be transferred
|
||||
// by TransferBRepEntity
|
||||
//=======================================================================
|
||||
Standard_Boolean IGESToBRep::IsBRepEntity(const Handle(IGESData_IGESEntity)& start)
|
||||
|
@@ -60,37 +60,37 @@ public:
|
||||
//! Returns default AlgoContainer
|
||||
Standard_EXPORT static Handle(IGESToBRep_AlgoContainer) AlgoContainer();
|
||||
|
||||
//! Return True if the IGESEntity can be transfered by
|
||||
//! Return True if the IGESEntity can be transferred by
|
||||
//! TransferCurveAndSurface.
|
||||
//! ex: All IGESEntity from IGESGeom
|
||||
Standard_EXPORT static Standard_Boolean IsCurveAndSurface (const Handle(IGESData_IGESEntity)& start);
|
||||
|
||||
//! Return True if the IGESEntity can be transfered by
|
||||
//! Return True if the IGESEntity can be transferred by
|
||||
//! TransferBasicCurve.
|
||||
//! ex: CircularArc, ConicArc, Line, CopiousData,
|
||||
//! BSplineCurve, SplineCurve... from IGESGeom :
|
||||
//! 104,110,112,126
|
||||
Standard_EXPORT static Standard_Boolean IsBasicCurve (const Handle(IGESData_IGESEntity)& start);
|
||||
|
||||
//! Return True if the IGESEntity can be transfered by
|
||||
//! Return True if the IGESEntity can be transferred by
|
||||
//! TransferBasicSurface.
|
||||
//! ex: BSplineSurface, SplineSurface... from IGESGeom :
|
||||
//! 114,128
|
||||
Standard_EXPORT static Standard_Boolean IsBasicSurface (const Handle(IGESData_IGESEntity)& start);
|
||||
|
||||
//! Return True if the IGESEntity can be transfered by
|
||||
//! Return True if the IGESEntity can be transferred by
|
||||
//! TransferTopoCurve.
|
||||
//! ex: all Curves from IGESGeom :
|
||||
//! all basic curves,102,130,142,144
|
||||
Standard_EXPORT static Standard_Boolean IsTopoCurve (const Handle(IGESData_IGESEntity)& start);
|
||||
|
||||
//! Return True if the IGESEntity can be transfered by
|
||||
//! Return True if the IGESEntity can be transferred by
|
||||
//! TransferTopoSurface.
|
||||
//! ex: All Surfaces from IGESGeom :
|
||||
//! all basic surfaces,108,118,120,122,141,143
|
||||
Standard_EXPORT static Standard_Boolean IsTopoSurface (const Handle(IGESData_IGESEntity)& start);
|
||||
|
||||
//! Return True if the IGESEntity can be transfered by
|
||||
//! Return True if the IGESEntity can be transferred by
|
||||
//! TransferBRepEntity.
|
||||
//! ex: VertexList, EdgeList, Loop, Face, Shell,
|
||||
//! Manifold Solid BRep Object from IGESSolid :
|
||||
|
@@ -225,7 +225,7 @@ Handle(Geom_Curve) IGESToBRep_BasicCurve::TransferBasicCurve
|
||||
(void)anException;
|
||||
}
|
||||
if (res.IsNull()) {
|
||||
// AddFail(start, "The IGESEntity cannot be transfered.");
|
||||
// AddFail(start, "The IGESEntity cannot be transferred.");
|
||||
// The more specific function have ever add a fail message for this entity
|
||||
}
|
||||
else
|
||||
|
@@ -230,7 +230,7 @@ Handle(Geom_Surface) IGESToBRep_BasicSurface::TransferBasicSurface
|
||||
}
|
||||
|
||||
if (resurf.IsNull()) {
|
||||
// AddFail(start,"The IGESEntity cannot be transfered");
|
||||
// AddFail(start,"The IGESEntity cannot be transferred");
|
||||
}
|
||||
else
|
||||
resurf->Scale(gp_Pnt(0,0,0),GetUnitFactor());
|
||||
|
@@ -440,7 +440,7 @@ TopoDS_Shape IGESToBRep_TopoSurface::TransferRuledSurface
|
||||
//added by rln on 03/12/97
|
||||
//if shape1 is a wire it means that the curve1 in file was of continuity C0
|
||||
//in order to get a face instead of shell when to BRepFill shape1
|
||||
//should be retransfered with contionuity C0 (to get an edge). Once shape1
|
||||
//should be retransferred with contionuity C0 (to get an edge). Once shape1
|
||||
//has been built with C0, it is useless to require C1 from shape2 because
|
||||
//anyway resulting surface was of continuity C0. Thus shape2 is built with C0
|
||||
// if (shape1.ShapeType() != TopAbs_EDGE) {
|
||||
@@ -1023,7 +1023,7 @@ TopoDS_Shape IGESToBRep_TopoSurface::TransferOffsetSurface
|
||||
{
|
||||
TopoDS_Iterator dabovil(igesShape);
|
||||
if (dabovil.More()) {
|
||||
SendWarning(st, "The First Surface only will be transfered.");
|
||||
SendWarning(st, "The First Surface only will be transferred.");
|
||||
face = TopoDS::Face(dabovil.Value());
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user