mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0023072: Eliminate compiler warnings (level 3) on Windows / MSVC++
This commit is contained in:
parent
9d091ec153
commit
60be1f9b1d
@ -761,8 +761,8 @@ is
|
|||||||
SetPolygonOffsets ( me : mutable;
|
SetPolygonOffsets ( me : mutable;
|
||||||
anObj : InteractiveObject from AIS;
|
anObj : InteractiveObject from AIS;
|
||||||
aMode : Integer from Standard;
|
aMode : Integer from Standard;
|
||||||
aFactor : Real from Standard = 1.0;
|
aFactor : ShortReal from Standard = 1.0;
|
||||||
aUnits : Real from Standard = 0.0;
|
aUnits : ShortReal from Standard = 0.0;
|
||||||
updateviewer : Boolean from Standard = Standard_True ) is static;
|
updateviewer : Boolean from Standard = Standard_True ) is static;
|
||||||
---Purpose: Sets up polygon offsets for the given AIS_InteractiveObject.
|
---Purpose: Sets up polygon offsets for the given AIS_InteractiveObject.
|
||||||
-- It simply calls anObj->SetPolygonOffsets()
|
-- It simply calls anObj->SetPolygonOffsets()
|
||||||
@ -779,8 +779,8 @@ is
|
|||||||
PolygonOffsets ( me;
|
PolygonOffsets ( me;
|
||||||
anObj : InteractiveObject from AIS;
|
anObj : InteractiveObject from AIS;
|
||||||
aMode : out Integer from Standard;
|
aMode : out Integer from Standard;
|
||||||
aFactor : out Real from Standard;
|
aFactor : out ShortReal from Standard;
|
||||||
aUnits : out Real from Standard ) is static;
|
aUnits : out ShortReal from Standard ) is static;
|
||||||
---Level: Public
|
---Level: Public
|
||||||
---Purpose: Retrieves current polygon offsets settings for <anObj>.
|
---Purpose: Retrieves current polygon offsets settings for <anObj>.
|
||||||
---Category: Inquire methods
|
---Category: Inquire methods
|
||||||
|
@ -56,8 +56,8 @@ void AIS_InteractiveContext::DisplayFromCollector(const Handle(AIS_InteractiveOb
|
|||||||
void AIS_InteractiveContext::SetPolygonOffsets(
|
void AIS_InteractiveContext::SetPolygonOffsets(
|
||||||
const Handle(AIS_InteractiveObject)& anObj,
|
const Handle(AIS_InteractiveObject)& anObj,
|
||||||
const Standard_Integer aMode,
|
const Standard_Integer aMode,
|
||||||
const Standard_Real aFactor,
|
const Standard_ShortReal aFactor,
|
||||||
const Standard_Real aUnits,
|
const Standard_ShortReal aUnits,
|
||||||
const Standard_Boolean updateviewer)
|
const Standard_Boolean updateviewer)
|
||||||
{
|
{
|
||||||
if ( anObj.IsNull() )
|
if ( anObj.IsNull() )
|
||||||
@ -94,8 +94,8 @@ Standard_Boolean AIS_InteractiveContext::HasPolygonOffsets(const Handle(AIS_Inte
|
|||||||
void AIS_InteractiveContext::PolygonOffsets(
|
void AIS_InteractiveContext::PolygonOffsets(
|
||||||
const Handle(AIS_InteractiveObject)& anObj,
|
const Handle(AIS_InteractiveObject)& anObj,
|
||||||
Standard_Integer& aMode,
|
Standard_Integer& aMode,
|
||||||
Standard_Real& aFactor,
|
Standard_ShortReal& aFactor,
|
||||||
Standard_Real& aUnits) const
|
Standard_ShortReal& aUnits) const
|
||||||
{
|
{
|
||||||
if ( HasPolygonOffsets( anObj ) )
|
if ( HasPolygonOffsets( anObj ) )
|
||||||
anObj->PolygonOffsets( aMode, aFactor, aUnits );
|
anObj->PolygonOffsets( aMode, aFactor, aUnits );
|
||||||
|
@ -616,8 +616,8 @@ is
|
|||||||
-- 22-03-04 OCC4895 SAN High-level interface for controlling polygon offsets
|
-- 22-03-04 OCC4895 SAN High-level interface for controlling polygon offsets
|
||||||
SetPolygonOffsets ( me : mutable;
|
SetPolygonOffsets ( me : mutable;
|
||||||
aMode : Integer from Standard;
|
aMode : Integer from Standard;
|
||||||
aFactor : Real from Standard = 1.0;
|
aFactor : ShortReal from Standard = 1.0;
|
||||||
aUnits : Real from Standard = 0.0 ) is virtual;
|
aUnits : ShortReal from Standard = 0.0 ) is virtual;
|
||||||
---Level: Public
|
---Level: Public
|
||||||
---Purpose: Sets up polygon offsets for this object.
|
---Purpose: Sets up polygon offsets for this object.
|
||||||
-- It modifies all existing presentations of <anObj> (if any),
|
-- It modifies all existing presentations of <anObj> (if any),
|
||||||
@ -655,8 +655,8 @@ is
|
|||||||
|
|
||||||
PolygonOffsets ( me;
|
PolygonOffsets ( me;
|
||||||
aMode : out Integer from Standard;
|
aMode : out Integer from Standard;
|
||||||
aFactor : out Real from Standard;
|
aFactor : out ShortReal from Standard;
|
||||||
aUnits : out Real from Standard ) is virtual;
|
aUnits : out ShortReal from Standard ) is virtual;
|
||||||
---Level: Public
|
---Level: Public
|
||||||
---Purpose: Retrieves current polygon offsets settings from <myDrawer>.
|
---Purpose: Retrieves current polygon offsets settings from <myDrawer>.
|
||||||
---Category: Inquire methods
|
---Category: Inquire methods
|
||||||
|
@ -749,9 +749,9 @@ void AIS_InteractiveObject::SetAspect(const Handle(Prs3d_BasicAspect)& anAspect,
|
|||||||
//function : SetPolygonOffsets
|
//function : SetPolygonOffsets
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
void AIS_InteractiveObject::SetPolygonOffsets(const Standard_Integer aMode,
|
void AIS_InteractiveObject::SetPolygonOffsets(const Standard_Integer aMode,
|
||||||
const Standard_Real aFactor,
|
const Standard_ShortReal aFactor,
|
||||||
const Standard_Real aUnits)
|
const Standard_ShortReal aUnits)
|
||||||
{
|
{
|
||||||
if ( !HasPolygonOffsets() )
|
if ( !HasPolygonOffsets() )
|
||||||
myDrawer->SetShadingAspect(new Prs3d_ShadingAspect());
|
myDrawer->SetShadingAspect(new Prs3d_ShadingAspect());
|
||||||
@ -806,9 +806,9 @@ Standard_Boolean AIS_InteractiveObject::HasPolygonOffsets() const
|
|||||||
//function : PolygonOffsets
|
//function : PolygonOffsets
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
void AIS_InteractiveObject::PolygonOffsets(Standard_Integer& aMode,
|
void AIS_InteractiveObject::PolygonOffsets(Standard_Integer& aMode,
|
||||||
Standard_Real& aFactor,
|
Standard_ShortReal& aFactor,
|
||||||
Standard_Real& aUnits) const
|
Standard_ShortReal& aUnits) const
|
||||||
{
|
{
|
||||||
if( HasPolygonOffsets() )
|
if( HasPolygonOffsets() )
|
||||||
myDrawer->ShadingAspect()->Aspect()->PolygonOffsets( aMode, aFactor, aUnits );
|
myDrawer->ShadingAspect()->Aspect()->PolygonOffsets( aMode, aFactor, aUnits );
|
||||||
|
@ -333,7 +333,7 @@ void AIS_TexturedShape::Compute (const Handle(PrsMgr_PresentationManager3d)& /*t
|
|||||||
if (HasPolygonOffsets())
|
if (HasPolygonOffsets())
|
||||||
{
|
{
|
||||||
Standard_Integer aMode;
|
Standard_Integer aMode;
|
||||||
Standard_Real aFactor, aUnits;
|
Standard_ShortReal aFactor, aUnits;
|
||||||
PolygonOffsets(aMode, aFactor, aUnits);
|
PolygonOffsets(aMode, aFactor, aUnits);
|
||||||
myAspect->SetPolygonOffsets(aMode, aFactor, aUnits);
|
myAspect->SetPolygonOffsets(aMode, aFactor, aUnits);
|
||||||
}
|
}
|
||||||
|
@ -210,7 +210,7 @@ void BinLDrivers_DocumentRetrievalDriver::Read
|
|||||||
mySections.Clear();
|
mySections.Clear();
|
||||||
myPAtt.Init();
|
myPAtt.Init();
|
||||||
Handle(TDF_Data) aData = new TDF_Data();
|
Handle(TDF_Data) aData = new TDF_Data();
|
||||||
Standard_Integer aDocumentPos = -1;
|
streampos aDocumentPos = -1;
|
||||||
|
|
||||||
// 2b. Read the TOC of Sections
|
// 2b. Read the TOC of Sections
|
||||||
if (aFileVer >= 3) {
|
if (aFileVer >= 3) {
|
||||||
@ -274,7 +274,7 @@ void BinLDrivers_DocumentRetrievalDriver::Read
|
|||||||
} // end of reading Sections or shape section
|
} // end of reading Sections or shape section
|
||||||
|
|
||||||
// Return to read of the Document structure
|
// Return to read of the Document structure
|
||||||
anIS.seekg((streampos) aDocumentPos);
|
anIS.seekg(aDocumentPos);
|
||||||
|
|
||||||
// read the header (tag) of the root label
|
// read the header (tag) of the root label
|
||||||
Standard_Integer aTag;
|
Standard_Integer aTag;
|
||||||
|
@ -386,7 +386,7 @@ void BinTools_ShapeSet::Read(Standard_IStream& IS)
|
|||||||
IS.getline(vers,100,'\n');
|
IS.getline(vers,100,'\n');
|
||||||
// BUC60769 PTV 18.10.2000: remove possible '\r' at the end of the line
|
// BUC60769 PTV 18.10.2000: remove possible '\r' at the end of the line
|
||||||
|
|
||||||
for (Standard_Integer lv = (strlen(vers)- 1); lv > 1 && (vers[lv] == '\r' || vers[lv] == '\n') ;lv--)
|
for (Standard_Size lv = (strlen(vers)- 1); lv > 1 && (vers[lv] == '\r' || vers[lv] == '\n') ;lv--)
|
||||||
vers[lv] = '\0';
|
vers[lv] = '\0';
|
||||||
|
|
||||||
} while ( ! IS.fail() && strcmp(vers,Version_1) && strcmp(vers,Version_2) &&
|
} while ( ! IS.fail() && strcmp(vers,Version_1) && strcmp(vers,Version_2) &&
|
||||||
@ -805,7 +805,7 @@ void BinTools_ShapeSet::ReadGeometry(const TopAbs_ShapeEnum T,
|
|||||||
if (val > 0 && val <= 3)
|
if (val > 0 && val <= 3)
|
||||||
BinTools::GetReal(IS, p1);
|
BinTools::GetReal(IS, p1);
|
||||||
} else {
|
} else {
|
||||||
Standard_Integer aPos = IS.tellg();
|
streampos aPos = IS.tellg();
|
||||||
BinTools::GetReal(IS, p1);
|
BinTools::GetReal(IS, p1);
|
||||||
val = (Standard_Integer)IS.get();//case {0|1|2|3}
|
val = (Standard_Integer)IS.get();//case {0|1|2|3}
|
||||||
#ifdef MDTV_DEB
|
#ifdef MDTV_DEB
|
||||||
|
@ -196,7 +196,7 @@ CGMObin(FILE *stream, Code c, Long *pi, Float *pr, char *str)
|
|||||||
{
|
{
|
||||||
register Long *pt = pi, i, k;
|
register Long *pt = pi, i, k;
|
||||||
Long red, green, blue, nc, ncol;
|
Long red, green, blue, nc, ncol;
|
||||||
unsigned short run, packed;
|
Long run, packed;
|
||||||
Long last, lastred, lastgreen, lastblue;
|
Long last, lastred, lastgreen, lastblue;
|
||||||
static Long nx, ny;
|
static Long nx, ny;
|
||||||
static Prec lprec;
|
static Prec lprec;
|
||||||
|
@ -635,7 +635,7 @@ Storage_Error DDF_IOStream::BeginReadInfoSection()
|
|||||||
{
|
{
|
||||||
Storage_Error s;
|
Storage_Error s;
|
||||||
TCollection_AsciiString l;
|
TCollection_AsciiString l;
|
||||||
Standard_Integer len = strlen(DDF_IOStream::MagicNumber());
|
Standard_Integer len = (Standard_Integer) strlen(DDF_IOStream::MagicNumber());
|
||||||
|
|
||||||
// Added because of Draw:
|
// Added because of Draw:
|
||||||
// It don't go to next line after reading its own header line information!
|
// It don't go to next line after reading its own header line information!
|
||||||
@ -1336,7 +1336,7 @@ Storage_Error DDF_IOStream::IsGoodFileType(istream* anIStream)
|
|||||||
|
|
||||||
if (s == Storage_VSOk) {
|
if (s == Storage_VSOk) {
|
||||||
TCollection_AsciiString l;
|
TCollection_AsciiString l;
|
||||||
Standard_Integer len = strlen(DDF_IOStream::MagicNumber());
|
Standard_Integer len = (Standard_Integer) strlen(DDF_IOStream::MagicNumber());
|
||||||
|
|
||||||
f.ReadChar(l,len);
|
f.ReadChar(l,len);
|
||||||
|
|
||||||
|
@ -375,7 +375,7 @@ void Draw_Interpretor::Add(const Standard_CString n,
|
|||||||
if (myInterp==NULL) Init();
|
if (myInterp==NULL) Init();
|
||||||
|
|
||||||
CData* C = new CData(f,this);
|
CData* C = new CData(f,this);
|
||||||
Standard_Integer length, num_slashes, ii, jj, kk;
|
Standard_Size length, num_slashes, ii, jj, kk;
|
||||||
Tcl_CreateCommand(myInterp,pN,CommandCmd, (ClientData) C, CommandDelete);
|
Tcl_CreateCommand(myInterp,pN,CommandCmd, (ClientData) C, CommandDelete);
|
||||||
|
|
||||||
// add the help
|
// add the help
|
||||||
|
@ -1769,7 +1769,7 @@ static void pntsave(const Handle(Draw_Drawable3D)&d, ostream& OS)
|
|||||||
OS.precision(15);
|
OS.precision(15);
|
||||||
#else
|
#else
|
||||||
long form = OS.setf(ios::scientific);
|
long form = OS.setf(ios::scientific);
|
||||||
int prec = OS.precision(15);
|
std::streamsize prec = OS.precision(15);
|
||||||
#endif
|
#endif
|
||||||
gp_Pnt P = N->Point();
|
gp_Pnt P = N->Point();
|
||||||
if (N->Is3D()) {
|
if (N->Is3D()) {
|
||||||
@ -1831,7 +1831,7 @@ static void triasave(const Handle(Draw_Drawable3D)&d, ostream& OS)
|
|||||||
OS.precision(15);
|
OS.precision(15);
|
||||||
#else
|
#else
|
||||||
long form = OS.setf(ios::scientific);
|
long form = OS.setf(ios::scientific);
|
||||||
int prec = OS.precision(15);
|
std::streamsize prec = OS.precision(15);
|
||||||
#endif
|
#endif
|
||||||
Poly::Write(T->Triangulation(),OS);
|
Poly::Write(T->Triangulation(),OS);
|
||||||
#if defined(HAVE_IOS) && !defined(__sgi) && !defined(IRIX)
|
#if defined(HAVE_IOS) && !defined(__sgi) && !defined(IRIX)
|
||||||
@ -1872,7 +1872,7 @@ static void poly3dsave(const Handle(Draw_Drawable3D)&d, ostream& OS)
|
|||||||
OS.precision(15);
|
OS.precision(15);
|
||||||
#else
|
#else
|
||||||
long form = OS.setf(ios::scientific);
|
long form = OS.setf(ios::scientific);
|
||||||
int prec = OS.precision(15);
|
std::streamsize prec = OS.precision(15);
|
||||||
#endif
|
#endif
|
||||||
Poly::Write(T->Polygon3D(),OS);
|
Poly::Write(T->Polygon3D(),OS);
|
||||||
#if defined(HAVE_IOS) && !defined(__sgi) && !defined(IRIX)
|
#if defined(HAVE_IOS) && !defined(__sgi) && !defined(IRIX)
|
||||||
@ -1912,7 +1912,7 @@ static void poly2dsave(const Handle(Draw_Drawable3D)&d, ostream& OS)
|
|||||||
OS.precision(15);
|
OS.precision(15);
|
||||||
#else
|
#else
|
||||||
long form = OS.setf(ios::scientific);
|
long form = OS.setf(ios::scientific);
|
||||||
int prec = OS.precision(15);
|
std::streamsize prec = OS.precision(15);
|
||||||
#endif
|
#endif
|
||||||
Poly::Write(T->Polygon2D(),OS);
|
Poly::Write(T->Polygon2D(),OS);
|
||||||
#if defined(HAVE_IOS) && !defined(__sgi) && !defined(IRIX)
|
#if defined(HAVE_IOS) && !defined(__sgi) && !defined(IRIX)
|
||||||
|
@ -197,7 +197,7 @@ void DrawTrSurf_Point::Dump(Standard_OStream& S) const
|
|||||||
S.precision(15);
|
S.precision(15);
|
||||||
#else
|
#else
|
||||||
long form = S.setf(ios::scientific);
|
long form = S.setf(ios::scientific);
|
||||||
int prec = S.precision(15);
|
std::streamsize prec = S.precision(15);
|
||||||
#endif
|
#endif
|
||||||
if (is3D)
|
if (is3D)
|
||||||
S << "Point : " << myPoint.X() << ", " << myPoint.Y() << ", " << myPoint.Z() <<endl;
|
S << "Point : " << myPoint.X() << ", " << myPoint.Y() << ", " << myPoint.Z() <<endl;
|
||||||
|
@ -502,7 +502,7 @@ void GeomTools_Curve2dSet::Dump(Standard_OStream& OS)const
|
|||||||
|
|
||||||
void GeomTools_Curve2dSet::Write(Standard_OStream& OS)const
|
void GeomTools_Curve2dSet::Write(Standard_OStream& OS)const
|
||||||
{
|
{
|
||||||
int prec = OS.precision(17);
|
std::streamsize prec = OS.precision(17);
|
||||||
|
|
||||||
Standard_Integer i, nbsurf = myMap.Extent();
|
Standard_Integer i, nbsurf = myMap.Extent();
|
||||||
OS << "Curve2ds "<< nbsurf << "\n";
|
OS << "Curve2ds "<< nbsurf << "\n";
|
||||||
|
@ -519,7 +519,7 @@ void GeomTools_CurveSet::Dump(Standard_OStream& OS)const
|
|||||||
|
|
||||||
void GeomTools_CurveSet::Write(Standard_OStream& OS)const
|
void GeomTools_CurveSet::Write(Standard_OStream& OS)const
|
||||||
{
|
{
|
||||||
int prec = OS.precision(17);
|
std::streamsize prec = OS.precision(17);
|
||||||
|
|
||||||
Standard_Integer i, nbcurve = myMap.Extent();
|
Standard_Integer i, nbcurve = myMap.Extent();
|
||||||
OS << "Curves "<< nbcurve << "\n";
|
OS << "Curves "<< nbcurve << "\n";
|
||||||
|
@ -639,7 +639,7 @@ void GeomTools_SurfaceSet::Dump(Standard_OStream& OS)const
|
|||||||
|
|
||||||
void GeomTools_SurfaceSet::Write(Standard_OStream& OS)const
|
void GeomTools_SurfaceSet::Write(Standard_OStream& OS)const
|
||||||
{
|
{
|
||||||
int prec = OS.precision(17);
|
std::streamsize prec = OS.precision(17);
|
||||||
|
|
||||||
Standard_Integer i, nbsurf = myMap.Extent();
|
Standard_Integer i, nbsurf = myMap.Extent();
|
||||||
OS << "Surfaces "<< nbsurf << "\n";
|
OS << "Surfaces "<< nbsurf << "\n";
|
||||||
|
@ -203,8 +203,8 @@ is
|
|||||||
-- 22-03-04 OCC4895 SAN High-level interface for controlling polygon offsets
|
-- 22-03-04 OCC4895 SAN High-level interface for controlling polygon offsets
|
||||||
SetPolygonOffsets ( me : mutable;
|
SetPolygonOffsets ( me : mutable;
|
||||||
aMode : Integer from Standard;
|
aMode : Integer from Standard;
|
||||||
aFactor : Real from Standard = 1.0;
|
aFactor : ShortReal from Standard = 1.0;
|
||||||
aUnits : Real from Standard = 0.0 );
|
aUnits : ShortReal from Standard = 0.0 );
|
||||||
---Level: Public
|
---Level: Public
|
||||||
---Purpose: Sets up OpenGL polygon offsets mechanism.
|
---Purpose: Sets up OpenGL polygon offsets mechanism.
|
||||||
-- <aMode> parameter can contain various combinations of
|
-- <aMode> parameter can contain various combinations of
|
||||||
@ -291,8 +291,8 @@ is
|
|||||||
-- 22-03-04 OCC4895 SAN High-level interface for controlling polygon offsets
|
-- 22-03-04 OCC4895 SAN High-level interface for controlling polygon offsets
|
||||||
PolygonOffsets ( me;
|
PolygonOffsets ( me;
|
||||||
aMode : out Integer from Standard;
|
aMode : out Integer from Standard;
|
||||||
aFactor : out Real from Standard;
|
aFactor : out ShortReal from Standard;
|
||||||
aUnits : out Real from Standard );
|
aUnits : out ShortReal from Standard );
|
||||||
---Level: Public
|
---Level: Public
|
||||||
---Purpose: Returns current polygon offsets settings.
|
---Purpose: Returns current polygon offsets settings.
|
||||||
---Category: Inquire methods
|
---Category: Inquire methods
|
||||||
@ -342,7 +342,7 @@ fields
|
|||||||
-- 22-03-04 OCC4895 SAN High-level interface for controlling polygon offsets
|
-- 22-03-04 OCC4895 SAN High-level interface for controlling polygon offsets
|
||||||
-- polygon offsets
|
-- polygon offsets
|
||||||
MyPolygonOffsetMode : Integer from Standard;
|
MyPolygonOffsetMode : Integer from Standard;
|
||||||
MyPolygonOffsetFactor : Real from Standard;
|
MyPolygonOffsetFactor : ShortReal from Standard;
|
||||||
MyPolygonOffsetUnits : Real from Standard;
|
MyPolygonOffsetUnits : ShortReal from Standard;
|
||||||
|
|
||||||
end AspectFillArea3d;
|
end AspectFillArea3d;
|
||||||
|
@ -247,17 +247,17 @@ Aspect_TypeOfDegenerateModel Graphic3d_AspectFillArea3d::DegenerateModel(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// OCC4895 SAN 22/03/04 High-level interface for controlling polygon offsets
|
// OCC4895 SAN 22/03/04 High-level interface for controlling polygon offsets
|
||||||
void Graphic3d_AspectFillArea3d::SetPolygonOffsets(const Standard_Integer aMode,
|
void Graphic3d_AspectFillArea3d::SetPolygonOffsets(const Standard_Integer aMode,
|
||||||
const Standard_Real aFactor,
|
const Standard_ShortReal aFactor,
|
||||||
const Standard_Real aUnits) {
|
const Standard_ShortReal aUnits) {
|
||||||
MyPolygonOffsetMode = ( aMode & Aspect_POM_Mask );
|
MyPolygonOffsetMode = ( aMode & Aspect_POM_Mask );
|
||||||
MyPolygonOffsetFactor = aFactor;
|
MyPolygonOffsetFactor = aFactor;
|
||||||
MyPolygonOffsetUnits = aUnits;
|
MyPolygonOffsetUnits = aUnits;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Graphic3d_AspectFillArea3d::PolygonOffsets(Standard_Integer& aMode,
|
void Graphic3d_AspectFillArea3d::PolygonOffsets(Standard_Integer& aMode,
|
||||||
Standard_Real& aFactor,
|
Standard_ShortReal& aFactor,
|
||||||
Standard_Real& aUnits) const {
|
Standard_ShortReal& aUnits) const {
|
||||||
aMode = MyPolygonOffsetMode;
|
aMode = MyPolygonOffsetMode;
|
||||||
aFactor = MyPolygonOffsetFactor;
|
aFactor = MyPolygonOffsetFactor;
|
||||||
aUnits = MyPolygonOffsetUnits;
|
aUnits = MyPolygonOffsetUnits;
|
||||||
|
@ -278,7 +278,7 @@ void Graphic3d_Group::SetGroupPrimitivesAspect (const Handle(Graphic3d_AspectFil
|
|||||||
|
|
||||||
// OCC4895 SAN 22/03/04 High-level interface for controlling polygon offsets
|
// OCC4895 SAN 22/03/04 High-level interface for controlling polygon offsets
|
||||||
Standard_Integer aPolyMode;
|
Standard_Integer aPolyMode;
|
||||||
Standard_Real aPolyFactor, aPolyUnits;
|
Standard_ShortReal aPolyFactor, aPolyUnits;
|
||||||
CTX->PolygonOffsets(aPolyMode, aPolyFactor, aPolyUnits);
|
CTX->PolygonOffsets(aPolyMode, aPolyFactor, aPolyUnits);
|
||||||
MyCGroup.ContextFillArea.PolygonOffsetMode = aPolyMode;
|
MyCGroup.ContextFillArea.PolygonOffsetMode = aPolyMode;
|
||||||
MyCGroup.ContextFillArea.PolygonOffsetFactor = aPolyFactor;
|
MyCGroup.ContextFillArea.PolygonOffsetFactor = aPolyFactor;
|
||||||
@ -362,7 +362,7 @@ void Graphic3d_Group::SetGroupPrimitivesAspect (const Handle(Graphic3d_AspectTex
|
|||||||
MyCGroup.ContextText.ColorSubTitle.g = float (Gs);
|
MyCGroup.ContextText.ColorSubTitle.g = float (Gs);
|
||||||
MyCGroup.ContextText.ColorSubTitle.b = float (Bs);
|
MyCGroup.ContextText.ColorSubTitle.b = float (Bs);
|
||||||
MyCGroup.ContextText.TextZoomable = ATextZoomable;
|
MyCGroup.ContextText.TextZoomable = ATextZoomable;
|
||||||
MyCGroup.ContextText.TextAngle = ATextAngle;
|
MyCGroup.ContextText.TextAngle = float (ATextAngle);
|
||||||
MyCGroup.ContextText.TextFontAspect = (int)ATextFontAspect;
|
MyCGroup.ContextText.TextFontAspect = (int)ATextFontAspect;
|
||||||
|
|
||||||
MyCGroup.ContextText.IsDef = 1;
|
MyCGroup.ContextText.IsDef = 1;
|
||||||
@ -598,7 +598,7 @@ void Graphic3d_Group::SetPrimitivesAspect (const Handle(Graphic3d_AspectFillArea
|
|||||||
|
|
||||||
// OCC4895 SAN 22/03/04 High-level interface for controlling polygon offsets
|
// OCC4895 SAN 22/03/04 High-level interface for controlling polygon offsets
|
||||||
Standard_Integer aPolyMode;
|
Standard_Integer aPolyMode;
|
||||||
Standard_Real aPolyFactor, aPolyUnits;
|
Standard_ShortReal aPolyFactor, aPolyUnits;
|
||||||
CTX->PolygonOffsets(aPolyMode, aPolyFactor, aPolyUnits);
|
CTX->PolygonOffsets(aPolyMode, aPolyFactor, aPolyUnits);
|
||||||
MyCGroup.ContextFillArea.PolygonOffsetMode = aPolyMode;
|
MyCGroup.ContextFillArea.PolygonOffsetMode = aPolyMode;
|
||||||
MyCGroup.ContextFillArea.PolygonOffsetFactor = aPolyFactor;
|
MyCGroup.ContextFillArea.PolygonOffsetFactor = aPolyFactor;
|
||||||
@ -682,7 +682,7 @@ void Graphic3d_Group::SetPrimitivesAspect (const Handle(Graphic3d_AspectText3d)&
|
|||||||
MyCGroup.ContextText.ColorSubTitle.g = float (Gs);
|
MyCGroup.ContextText.ColorSubTitle.g = float (Gs);
|
||||||
MyCGroup.ContextText.ColorSubTitle.b = float (Bs);
|
MyCGroup.ContextText.ColorSubTitle.b = float (Bs);
|
||||||
MyCGroup.ContextText.TextZoomable = ATextZoomable;
|
MyCGroup.ContextText.TextZoomable = ATextZoomable;
|
||||||
MyCGroup.ContextText.TextAngle = ATextAngle;
|
MyCGroup.ContextText.TextAngle = float (ATextAngle);
|
||||||
MyCGroup.ContextText.TextFontAspect = (int)ATextFontAspect;
|
MyCGroup.ContextText.TextFontAspect = (int)ATextFontAspect;
|
||||||
MyCGroup.ContextText.IsDef = 1;
|
MyCGroup.ContextText.IsDef = 1;
|
||||||
|
|
||||||
|
@ -1262,7 +1262,7 @@ void Graphic3d_Structure::SetPrimitivesAspect (const Handle(Graphic3d_AspectFill
|
|||||||
|
|
||||||
// OCC4895 SAN 22/03/04 High-level interface for controlling polygon offsets
|
// OCC4895 SAN 22/03/04 High-level interface for controlling polygon offsets
|
||||||
Standard_Integer aPolyMode;
|
Standard_Integer aPolyMode;
|
||||||
Standard_Real aPolyFactor, aPolyUnits;
|
Standard_ShortReal aPolyFactor, aPolyUnits;
|
||||||
CTX->PolygonOffsets(aPolyMode, aPolyFactor, aPolyUnits);
|
CTX->PolygonOffsets(aPolyMode, aPolyFactor, aPolyUnits);
|
||||||
MyCStructure.ContextFillArea.PolygonOffsetMode = aPolyMode;
|
MyCStructure.ContextFillArea.PolygonOffsetMode = aPolyMode;
|
||||||
MyCStructure.ContextFillArea.PolygonOffsetFactor = aPolyFactor;
|
MyCStructure.ContextFillArea.PolygonOffsetFactor = aPolyFactor;
|
||||||
@ -1319,7 +1319,7 @@ void Graphic3d_Structure::SetPrimitivesAspect (const Handle(Graphic3d_AspectText
|
|||||||
MyCStructure.ContextText.ColorSubTitle.g = float (Gs);
|
MyCStructure.ContextText.ColorSubTitle.g = float (Gs);
|
||||||
MyCStructure.ContextText.ColorSubTitle.b = float (Bs);
|
MyCStructure.ContextText.ColorSubTitle.b = float (Bs);
|
||||||
MyCStructure.ContextText.TextZoomable = ATextZoomable;
|
MyCStructure.ContextText.TextZoomable = ATextZoomable;
|
||||||
MyCStructure.ContextText.TextAngle = ATextAngle;
|
MyCStructure.ContextText.TextAngle = float (ATextAngle);
|
||||||
MyCStructure.ContextText.TextFontAspect = (int)ATextFontAspect;
|
MyCStructure.ContextText.TextFontAspect = (int)ATextFontAspect;
|
||||||
|
|
||||||
MyCStructure.ContextText.IsDef = 1;
|
MyCStructure.ContextText.IsDef = 1;
|
||||||
@ -1783,9 +1783,9 @@ void Graphic3d_Structure::SetTransformPersistence( const Graphic3d_TransModeFlag
|
|||||||
if (IsDeleted ()) return;
|
if (IsDeleted ()) return;
|
||||||
|
|
||||||
MyCStructure.TransformPersistence.Flag = AFlag;
|
MyCStructure.TransformPersistence.Flag = AFlag;
|
||||||
MyCStructure.TransformPersistence.Point.x = APoint.X();
|
MyCStructure.TransformPersistence.Point.x = float (APoint.X());
|
||||||
MyCStructure.TransformPersistence.Point.y = APoint.Y();
|
MyCStructure.TransformPersistence.Point.y = float (APoint.Y());
|
||||||
MyCStructure.TransformPersistence.Point.z = APoint.Z();
|
MyCStructure.TransformPersistence.Point.z = float (APoint.Z());
|
||||||
//MyStructureManager->Update ();
|
//MyStructureManager->Update ();
|
||||||
//Update();
|
//Update();
|
||||||
MyGraphicDriver->ContextStructure( MyCStructure );
|
MyGraphicDriver->ContextStructure( MyCStructure );
|
||||||
@ -2157,7 +2157,7 @@ void Graphic3d_Structure::UpdateStructure (const Handle(Graphic3d_AspectLine3d)&
|
|||||||
MyCStructure.ContextText.ColorSubTitle.g = float (Gs);
|
MyCStructure.ContextText.ColorSubTitle.g = float (Gs);
|
||||||
MyCStructure.ContextText.ColorSubTitle.b = float (Bs);
|
MyCStructure.ContextText.ColorSubTitle.b = float (Bs);
|
||||||
MyCStructure.ContextText.TextZoomable = ATextZoomable;
|
MyCStructure.ContextText.TextZoomable = ATextZoomable;
|
||||||
MyCStructure.ContextText.TextAngle = ATextAngle;
|
MyCStructure.ContextText.TextAngle = float (ATextAngle);
|
||||||
MyCStructure.ContextText.TextFontAspect = (int)ATextFontAspect;
|
MyCStructure.ContextText.TextFontAspect = (int)ATextFontAspect;
|
||||||
|
|
||||||
|
|
||||||
@ -2339,7 +2339,7 @@ void Graphic3d_Structure::UpdateStructure (const Handle(Graphic3d_AspectLine3d)&
|
|||||||
|
|
||||||
// OCC4895 SAN 22/03/04 High-level interface for controlling polygon offsets
|
// OCC4895 SAN 22/03/04 High-level interface for controlling polygon offsets
|
||||||
Standard_Integer aPolyMode;
|
Standard_Integer aPolyMode;
|
||||||
Standard_Real aPolyFactor, aPolyUnits;
|
Standard_ShortReal aPolyFactor, aPolyUnits;
|
||||||
CTXF->PolygonOffsets(aPolyMode, aPolyFactor, aPolyUnits);
|
CTXF->PolygonOffsets(aPolyMode, aPolyFactor, aPolyUnits);
|
||||||
MyCStructure.ContextFillArea.PolygonOffsetMode = aPolyMode;
|
MyCStructure.ContextFillArea.PolygonOffsetMode = aPolyMode;
|
||||||
MyCStructure.ContextFillArea.PolygonOffsetFactor = aPolyFactor;
|
MyCStructure.ContextFillArea.PolygonOffsetFactor = aPolyFactor;
|
||||||
|
@ -41,9 +41,9 @@ IFSelect_Editor::IFSelect_Editor (const Standard_Integer nbval)
|
|||||||
Standard_Integer lng = shn.Length();
|
Standard_Integer lng = shn.Length();
|
||||||
if (lng > 0) thenames->SetItem (shortname,num);
|
if (lng > 0) thenames->SetItem (shortname,num);
|
||||||
if (lng > themaxsh) themaxsh = lng;
|
if (lng > themaxsh) themaxsh = lng;
|
||||||
lng = strlen (typval->Name());
|
lng = (Standard_Integer) strlen (typval->Name());
|
||||||
if (lng > themaxco) themaxco = lng;
|
if (lng > themaxco) themaxco = lng;
|
||||||
lng = strlen (typval->Label());
|
lng = (Standard_Integer) strlen (typval->Label());
|
||||||
if (lng > themaxla) themaxla = lng;
|
if (lng > themaxla) themaxla = lng;
|
||||||
|
|
||||||
thenames->SetItem (typval->Name(),num);
|
thenames->SetItem (typval->Name(),num);
|
||||||
|
@ -43,7 +43,7 @@ static Standard_Boolean theraise = Standard_False;
|
|||||||
|
|
||||||
static char blank[] =
|
static char blank[] =
|
||||||
" ";
|
" ";
|
||||||
static Standard_Integer maxblank = strlen(blank);
|
static Standard_Integer maxblank = (Standard_Integer) strlen(blank);
|
||||||
|
|
||||||
|
|
||||||
Interface_MSG::Interface_MSG (const Standard_CString key)
|
Interface_MSG::Interface_MSG (const Standard_CString key)
|
||||||
@ -59,7 +59,7 @@ Interface_MSG::Interface_MSG
|
|||||||
{
|
{
|
||||||
char mess[300];
|
char mess[300];
|
||||||
sprintf (mess, Interface_MSG::Translated(thekey), i1);
|
sprintf (mess, Interface_MSG::Translated(thekey), i1);
|
||||||
theval = new char (strlen (mess)+1 );
|
theval = new char[strlen (mess) + 1];
|
||||||
strcpy (theval,mess);
|
strcpy (theval,mess);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -70,7 +70,7 @@ Interface_MSG::Interface_MSG
|
|||||||
{
|
{
|
||||||
char mess[300];
|
char mess[300];
|
||||||
sprintf (mess, Interface_MSG::Translated(thekey), i1,i2);
|
sprintf (mess, Interface_MSG::Translated(thekey), i1,i2);
|
||||||
theval = new char (strlen (mess)+1 );
|
theval = new char[strlen (mess) + 1];
|
||||||
strcpy (theval,mess);
|
strcpy (theval,mess);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -82,7 +82,7 @@ Interface_MSG::Interface_MSG
|
|||||||
char mess[300];
|
char mess[300];
|
||||||
sprintf (mess, Interface_MSG::Translated(thekey),
|
sprintf (mess, Interface_MSG::Translated(thekey),
|
||||||
(intervals < 0 ? r1 : Interface_MSG::Intervalled(r1,intervals)) );
|
(intervals < 0 ? r1 : Interface_MSG::Intervalled(r1,intervals)) );
|
||||||
theval = new char (strlen (mess)+1 );
|
theval = new char[strlen (mess) + 1];
|
||||||
strcpy (theval,mess);
|
strcpy (theval,mess);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -93,7 +93,7 @@ Interface_MSG::Interface_MSG
|
|||||||
{
|
{
|
||||||
char mess[300];
|
char mess[300];
|
||||||
sprintf (mess, Interface_MSG::Translated(thekey), str);
|
sprintf (mess, Interface_MSG::Translated(thekey), str);
|
||||||
theval = new char (strlen (mess)+1 );
|
theval = new char[strlen (mess) + 1];
|
||||||
strcpy (theval,mess);
|
strcpy (theval,mess);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -105,7 +105,7 @@ Interface_MSG::Interface_MSG
|
|||||||
{
|
{
|
||||||
char mess[300];
|
char mess[300];
|
||||||
sprintf (mess, Interface_MSG::Translated(thekey), val, str);
|
sprintf (mess, Interface_MSG::Translated(thekey), val, str);
|
||||||
theval = new char (strlen (mess)+1 );
|
theval = new char[strlen (mess) + 1];
|
||||||
strcpy (theval,mess);
|
strcpy (theval,mess);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -444,7 +444,7 @@ Standard_CString Interface_MSG::Blanks (const Standard_Integer val,
|
|||||||
Standard_CString Interface_MSG::Blanks (const Standard_CString val,
|
Standard_CString Interface_MSG::Blanks (const Standard_CString val,
|
||||||
const Standard_Integer max)
|
const Standard_Integer max)
|
||||||
{
|
{
|
||||||
Standard_Integer lng = strlen(val);
|
Standard_Integer lng = (Standard_Integer) strlen(val);
|
||||||
if (lng > maxblank || lng > max) return "";
|
if (lng > maxblank || lng > max) return "";
|
||||||
return &blank [maxblank - max + lng];
|
return &blank [maxblank - max + lng];
|
||||||
}
|
}
|
||||||
@ -464,7 +464,7 @@ void Interface_MSG::Print (Standard_OStream& S, const Standard_CString val,
|
|||||||
const Standard_Integer just)
|
const Standard_Integer just)
|
||||||
{
|
{
|
||||||
if (max > maxblank) { Print(S,val,maxblank,just); return; }
|
if (max > maxblank) { Print(S,val,maxblank,just); return; }
|
||||||
Standard_Integer lng = strlen (val);
|
Standard_Integer lng = (Standard_Integer) strlen (val);
|
||||||
if (lng > max) { S << val; return; }
|
if (lng > max) { S << val; return; }
|
||||||
Standard_Integer m1 = (max-lng) /2;
|
Standard_Integer m1 = (max-lng) /2;
|
||||||
Standard_Integer m2 = max-lng - m1;
|
Standard_Integer m2 = max-lng - m1;
|
||||||
|
@ -37,7 +37,7 @@ LDOMBasicString::LDOMBasicString (const char * aValue)
|
|||||||
myVal.ptr = NULL;
|
myVal.ptr = NULL;
|
||||||
} else {
|
} else {
|
||||||
myType = LDOM_AsciiFree;
|
myType = LDOM_AsciiFree;
|
||||||
Standard_Integer aLen = strlen (aValue) + 1;
|
Standard_Size aLen = strlen (aValue) + 1;
|
||||||
myVal.ptr = new char [aLen];
|
myVal.ptr = new char [aLen];
|
||||||
memcpy (myVal.ptr, aValue, aLen);
|
memcpy (myVal.ptr, aValue, aLen);
|
||||||
}
|
}
|
||||||
@ -56,7 +56,7 @@ LDOMBasicString::LDOMBasicString (const char * aValue,
|
|||||||
myVal.ptr = NULL;
|
myVal.ptr = NULL;
|
||||||
} else {
|
} else {
|
||||||
myType = LDOM_AsciiDoc;
|
myType = LDOM_AsciiDoc;
|
||||||
Standard_Integer aLen = strlen (aValue) + 1;
|
Standard_Integer aLen = (Standard_Integer) strlen (aValue) + 1;
|
||||||
myVal.ptr = aDoc -> Allocate (aLen);
|
myVal.ptr = aDoc -> Allocate (aLen);
|
||||||
memcpy (myVal.ptr, aValue, aLen);
|
memcpy (myVal.ptr, aValue, aLen);
|
||||||
}
|
}
|
||||||
@ -93,7 +93,7 @@ LDOMBasicString::LDOMBasicString (const LDOMBasicString& anOther)
|
|||||||
switch (myType) {
|
switch (myType) {
|
||||||
case LDOM_AsciiFree:
|
case LDOM_AsciiFree:
|
||||||
if (anOther.myVal.ptr) {
|
if (anOther.myVal.ptr) {
|
||||||
Standard_Integer aLen = strlen ((const char *)anOther.myVal.ptr) + 1;
|
Standard_Size aLen = strlen ((const char *)anOther.myVal.ptr) + 1;
|
||||||
myVal.ptr = new char [aLen];
|
myVal.ptr = new char [aLen];
|
||||||
memcpy (myVal.ptr, anOther.myVal.ptr, aLen);
|
memcpy (myVal.ptr, anOther.myVal.ptr, aLen);
|
||||||
break;
|
break;
|
||||||
@ -149,7 +149,7 @@ LDOMBasicString& LDOMBasicString::operator = (const LDOMBasicString& anOther)
|
|||||||
switch (myType) {
|
switch (myType) {
|
||||||
case LDOM_AsciiFree:
|
case LDOM_AsciiFree:
|
||||||
if (anOther.myVal.ptr) {
|
if (anOther.myVal.ptr) {
|
||||||
Standard_Integer aLen = strlen ((const char *)anOther.myVal.ptr) + 1;
|
Standard_Size aLen = strlen ((const char *)anOther.myVal.ptr) + 1;
|
||||||
myVal.ptr = new char [aLen];
|
myVal.ptr = new char [aLen];
|
||||||
memcpy (myVal.ptr, anOther.myVal.ptr, aLen);
|
memcpy (myVal.ptr, anOther.myVal.ptr, aLen);
|
||||||
break;
|
break;
|
||||||
@ -269,7 +269,7 @@ LDOMBasicString::operator TCollection_ExtendedString () const
|
|||||||
|
|
||||||
// convert Unicode to Extended String
|
// convert Unicode to Extended String
|
||||||
ptr += 2;
|
ptr += 2;
|
||||||
Standard_Integer aLength = (strlen(ptr) / 4), j = 0;
|
Standard_Size aLength = (strlen(ptr) / 4), j = 0;
|
||||||
Standard_ExtCharacter * aResult = new Standard_ExtCharacter[aLength--];
|
Standard_ExtCharacter * aResult = new Standard_ExtCharacter[aLength--];
|
||||||
while (aLength--) {
|
while (aLength--) {
|
||||||
ptr += 4;
|
ptr += 4;
|
||||||
|
@ -138,7 +138,7 @@ LDOM_XmlReader::RecordType LDOM_XmlReader::ReadRecord
|
|||||||
|
|
||||||
// Read the full buffer and reset start and end buffer pointers
|
// Read the full buffer and reset start and end buffer pointers
|
||||||
myPtr = &myBuffer[0];
|
myPtr = &myBuffer[0];
|
||||||
Standard_Integer aNBytes;
|
Standard_Size aNBytes;
|
||||||
if (myFileDes != FILE_NONVALUE)
|
if (myFileDes != FILE_NONVALUE)
|
||||||
aNBytes = read (myFileDes, &myBuffer[aBytesRest],
|
aNBytes = read (myFileDes, &myBuffer[aBytesRest],
|
||||||
XML_BUFFER_SIZE - aBytesRest);
|
XML_BUFFER_SIZE - aBytesRest);
|
||||||
|
@ -232,7 +232,7 @@ inline LDOM_XmlWriter& LDOM_XmlWriter::operator <<
|
|||||||
{
|
{
|
||||||
const char * str = aString.GetString();
|
const char * str = aString.GetString();
|
||||||
if (str) {
|
if (str) {
|
||||||
const Standard_Integer aLen = strlen (str);
|
const Standard_Size aLen = strlen (str);
|
||||||
if (aLen > 0) fwrite (str, aLen, 1, myFile);
|
if (aLen > 0) fwrite (str, aLen, 1, myFile);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -259,7 +259,7 @@ inline LDOM_XmlWriter& LDOM_XmlWriter::operator <<
|
|||||||
//=======================================================================
|
//=======================================================================
|
||||||
inline LDOM_XmlWriter& LDOM_XmlWriter::operator << (const LXMLCh * aString)
|
inline LDOM_XmlWriter& LDOM_XmlWriter::operator << (const LXMLCh * aString)
|
||||||
{
|
{
|
||||||
unsigned int aLength = strlen (aString);
|
Standard_Size aLength = strlen (aString);
|
||||||
if (aLength > 0) fwrite ((void *) aString, aLength, 1, myFile);
|
if (aLength > 0) fwrite ((void *) aString, aLength, 1, myFile);
|
||||||
return * this;
|
return * this;
|
||||||
}
|
}
|
||||||
@ -288,7 +288,7 @@ void LDOM_XmlWriter::WriteAttribute (const LDOM_Node& theAtt)
|
|||||||
if (aValueStr.Type() == LDOMBasicString::LDOM_Integer) {
|
if (aValueStr.Type() == LDOMBasicString::LDOM_Integer) {
|
||||||
Standard_Integer anIntValue;
|
Standard_Integer anIntValue;
|
||||||
aValueStr.GetInteger (anIntValue);
|
aValueStr.GetInteger (anIntValue);
|
||||||
aLength = 20 + strlen (aName);
|
aLength = (Standard_Integer) (20 + strlen (aName));
|
||||||
if (aLength > myABufferLen) {
|
if (aLength > myABufferLen) {
|
||||||
if (myABuffer != NULL) delete [] myABuffer;
|
if (myABuffer != NULL) delete [] myABuffer;
|
||||||
myABuffer = new char [aLength+1];
|
myABuffer = new char [aLength+1];
|
||||||
@ -296,7 +296,7 @@ void LDOM_XmlWriter::WriteAttribute (const LDOM_Node& theAtt)
|
|||||||
}
|
}
|
||||||
sprintf (myABuffer, "%c%s%c%c%d%c", chSpace, aName,
|
sprintf (myABuffer, "%c%s%c%c%d%c", chSpace, aName,
|
||||||
chEqual, chDoubleQuote, anIntValue, chDoubleQuote);
|
chEqual, chDoubleQuote, anIntValue, chDoubleQuote);
|
||||||
aLength = strlen (myABuffer);
|
aLength = (Standard_Integer) strlen (myABuffer);
|
||||||
|
|
||||||
// String attribute value
|
// String attribute value
|
||||||
} else {
|
} else {
|
||||||
@ -304,10 +304,10 @@ void LDOM_XmlWriter::WriteAttribute (const LDOM_Node& theAtt)
|
|||||||
char * encStr;
|
char * encStr;
|
||||||
if (aValueStr.Type() == LDOMBasicString::LDOM_AsciiDocClear) {
|
if (aValueStr.Type() == LDOMBasicString::LDOM_AsciiDocClear) {
|
||||||
encStr = (char *) aValue;
|
encStr = (char *) aValue;
|
||||||
aLength = 4 + strlen (aValue) + strlen (aName);
|
aLength = (Standard_Integer) (4 + strlen (aValue) + strlen (aName));
|
||||||
} else {
|
} else {
|
||||||
encStr = LDOM_CharReference::Encode (aValue, aLength, Standard_True);
|
encStr = LDOM_CharReference::Encode (aValue, aLength, Standard_True);
|
||||||
aLength += 4 + strlen (aName);
|
aLength += (Standard_Integer) (4 + strlen (aName));
|
||||||
}
|
}
|
||||||
if (aLength > myABufferLen) {
|
if (aLength > myABufferLen) {
|
||||||
if (myABuffer != NULL) delete [] myABuffer;
|
if (myABuffer != NULL) delete [] myABuffer;
|
||||||
|
@ -169,7 +169,7 @@ Message_Msg& Message_Msg::Arg (const Standard_CString theString)
|
|||||||
return *this;
|
return *this;
|
||||||
|
|
||||||
// print string according to format
|
// print string according to format
|
||||||
char * sStringBuffer = new char [Max (strlen(theString)+1, 1024)];
|
char * sStringBuffer = new char [Max ((Standard_Integer)strlen(theString)+1, 1024)];
|
||||||
sprintf (sStringBuffer, aFormat.ToCString(), theString);
|
sprintf (sStringBuffer, aFormat.ToCString(), theString);
|
||||||
TCollection_ExtendedString aStr ( sStringBuffer );
|
TCollection_ExtendedString aStr ( sStringBuffer );
|
||||||
delete [] sStringBuffer;
|
delete [] sStringBuffer;
|
||||||
|
@ -34,7 +34,7 @@ Standard_Integer NCollection_BaseVector::MemBlock::GetIndexV
|
|||||||
(void * theItem, const size_t theItemSize) const
|
(void * theItem, const size_t theItemSize) const
|
||||||
{
|
{
|
||||||
const ptrdiff_t anOffset = (char *) theItem - (char *) myData;
|
const ptrdiff_t anOffset = (char *) theItem - (char *) myData;
|
||||||
const Standard_Integer anIndex = anOffset / theItemSize;
|
const Standard_Integer anIndex = (Standard_Integer) (anOffset / theItemSize);
|
||||||
#ifdef DEB
|
#ifdef DEB
|
||||||
if (anOffset < 0 || anOffset != Standard_Integer (anIndex * theItemSize)
|
if (anOffset < 0 || anOffset != Standard_Integer (anIndex * theItemSize)
|
||||||
|| anIndex > Standard_Integer (myLength))
|
|| anIndex > Standard_Integer (myLength))
|
||||||
|
@ -388,7 +388,7 @@ class NIS_InteractiveObject : public Standard_Transient
|
|||||||
// ---------- PRIVATE FIELDS ----------
|
// ---------- PRIVATE FIELDS ----------
|
||||||
|
|
||||||
Handle_NIS_Drawer myDrawer;
|
Handle_NIS_Drawer myDrawer;
|
||||||
Standard_Size myID;
|
Standard_Integer myID;
|
||||||
NIS_Drawer::DrawType myDrawType : 3;
|
NIS_Drawer::DrawType myDrawType : 3;
|
||||||
NIS_Drawer::DrawType myBaseType : 3;
|
NIS_Drawer::DrawType myBaseType : 3;
|
||||||
Standard_Boolean myIsHidden : 1;
|
Standard_Boolean myIsHidden : 1;
|
||||||
|
@ -277,7 +277,7 @@ OSD_Host :: OSD_Host () {
|
|||||||
|
|
||||||
if ( !Failed () ) {
|
if ( !Failed () ) {
|
||||||
|
|
||||||
memSize = ms.dwAvailPageFile;
|
memSize = (Standard_Integer) ms.dwAvailPageFile;
|
||||||
|
|
||||||
if ( WSAStartup ( MAKEWORD( 1, 1 ), &wd ) ) {
|
if ( WSAStartup ( MAKEWORD( 1, 1 ), &wd ) ) {
|
||||||
|
|
||||||
|
@ -71,7 +71,7 @@ MyFontAspect(OSD_FA_Undefined)
|
|||||||
MyFaceSize = -1;
|
MyFaceSize = -1;
|
||||||
else
|
else
|
||||||
//TODO catch exeption
|
//TODO catch exeption
|
||||||
MyFaceSize = str.Token( "-", 7 ).RealValue();
|
MyFaceSize = str.Token( "-", 7 ).IntegerValue();
|
||||||
|
|
||||||
//detect aspect
|
//detect aspect
|
||||||
if ( str.Token("-", 3).IsEqual( "bold" ) )
|
if ( str.Token("-", 3).IsEqual( "bold" ) )
|
||||||
|
@ -259,7 +259,7 @@ class MultilineTextRenderer
|
|||||||
myNewStr (0),
|
myNewStr (0),
|
||||||
myStrPtr (&theStr[0])
|
myStrPtr (&theStr[0])
|
||||||
{
|
{
|
||||||
const Standard_Integer aStrLen = wcslen(theStr); // Length of the original string
|
const Standard_Integer aStrLen = (Standard_Integer) wcslen(theStr); // Length of the original string
|
||||||
Standard_Integer aNextCRChar = 0; // Character after '\r' (Carriage Return) '\x00\x0D'
|
Standard_Integer aNextCRChar = 0; // Character after '\r' (Carriage Return) '\x00\x0D'
|
||||||
Standard_Integer aHTNum = 0; // Number of '\t' (Horizontal Tabulation) '\x00\x09'
|
Standard_Integer aHTNum = 0; // Number of '\t' (Horizontal Tabulation) '\x00\x09'
|
||||||
Standard_Integer aDumpNum = 0; // Number of '\a', '\b', '\v' and '\f'
|
Standard_Integer aDumpNum = 0; // Number of '\a', '\b', '\v' and '\f'
|
||||||
|
@ -69,7 +69,7 @@ static int realstr(Standard_Real V, Standard_CString F)
|
|||||||
// Create : from a CString
|
// Create : from a CString
|
||||||
//-----------------------------------------------------------------------
|
//-----------------------------------------------------------------------
|
||||||
PCollection_HAsciiString::PCollection_HAsciiString(const Standard_CString S)
|
PCollection_HAsciiString::PCollection_HAsciiString(const Standard_CString S)
|
||||||
: Data(strlen(S))
|
: Data((Standard_Integer) strlen(S))
|
||||||
{
|
{
|
||||||
for( Standard_Integer i = 0 ; i < Data.Length() ; i++)
|
for( Standard_Integer i = 0 ; i < Data.Length() ; i++)
|
||||||
Data.SetValue(i, S[i]) ;
|
Data.SetValue(i, S[i]) ;
|
||||||
|
@ -72,7 +72,7 @@ PCollection_HExtendedString::PCollection_HExtendedString
|
|||||||
// Create : from a CString
|
// Create : from a CString
|
||||||
//-----------------------------------------------------------------------
|
//-----------------------------------------------------------------------
|
||||||
PCollection_HExtendedString::PCollection_HExtendedString(const Standard_CString S)
|
PCollection_HExtendedString::PCollection_HExtendedString(const Standard_CString S)
|
||||||
: Data(strlen(S))
|
: Data((Standard_Integer) strlen(S))
|
||||||
{
|
{
|
||||||
for( Standard_Integer i = 0 ; i < Data.Length() ; i++) {
|
for( Standard_Integer i = 0 ; i < Data.Length() ; i++) {
|
||||||
Standard_ExtCharacter val = ToExtCharacter(S[i]);
|
Standard_ExtCharacter val = ToExtCharacter(S[i]);
|
||||||
|
@ -96,9 +96,9 @@ Prs2d_Diameter::Prs2d_Diameter( const Handle(Graphic2d_GraphicObject)& aGO,
|
|||||||
myAppX2 = Standard_ShortReal(X1);
|
myAppX2 = Standard_ShortReal(X1);
|
||||||
myAppY2 = Standard_ShortReal(Y1);
|
myAppY2 = Standard_ShortReal(Y1);
|
||||||
if (myX1>=myX2)
|
if (myX1>=myX2)
|
||||||
myAppX2=myAppX2+(theDist+theRad)/APPENDIXLEN;
|
myAppX2=Standard_ShortReal( myAppX2+(theDist+theRad)/APPENDIXLEN );
|
||||||
else
|
else
|
||||||
myAppX2=myAppX2-(theDist+theRad)/APPENDIXLEN;
|
myAppX2=Standard_ShortReal( myAppX2-(theDist+theRad)/APPENDIXLEN );
|
||||||
|
|
||||||
if ( myAppX2 < myMinX ) myMinX = myAppX2;
|
if ( myAppX2 < myMinX ) myMinX = myAppX2;
|
||||||
if ( myAppY2 < myMinY ) myMinY = myAppY2;
|
if ( myAppY2 < myMinY ) myMinY = myAppY2;
|
||||||
|
@ -159,7 +159,7 @@ Standard_Boolean StepData_StepDumper::Dump
|
|||||||
for (i = 1; i <= nb; i ++) {
|
for (i = 1; i <= nb; i ++) {
|
||||||
if (ids.Value(i) <= 0 || ids.Value(i) == i) continue;
|
if (ids.Value(i) <= 0 || ids.Value(i) == i) continue;
|
||||||
sprintf (unid,"%d:#%d",i,ids.Value(i));
|
sprintf (unid,"%d:#%d",i,ids.Value(i));
|
||||||
nbc = strlen (unid); nbr = ((80-nbc) %4) +2;
|
nbc = (Standard_Integer) strlen (unid); nbr = ((80-nbc) %4) +2;
|
||||||
nbl += nbc;
|
nbl += nbc;
|
||||||
if (nbl+nbr0 > 79) { nbl = nbc; S<<endl; }
|
if (nbl+nbr0 > 79) { nbl = nbc; S<<endl; }
|
||||||
else { nbl += nbr0; for (; nbr0 > 0; nbr0 --) S << " "; }
|
else { nbl += nbr0; for (; nbr0 > 0; nbr0 --) S << " "; }
|
||||||
|
@ -510,7 +510,7 @@ void StepData_StepWriter::SendComment(const Handle(TCollection_HAsciiString)& te
|
|||||||
void StepData_StepWriter::SendComment (const Standard_CString text)
|
void StepData_StepWriter::SendComment (const Standard_CString text)
|
||||||
{
|
{
|
||||||
if (!thecomm) Interface_InterfaceMismatch::Raise("StepWriter : Comment");
|
if (!thecomm) Interface_InterfaceMismatch::Raise("StepWriter : Comment");
|
||||||
AddString(text,strlen(text));
|
AddString(text,(Standard_Integer) strlen(text));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -725,7 +725,7 @@ void StepData_StepWriter::OpenSub ()
|
|||||||
void StepData_StepWriter::OpenTypedSub (const Standard_CString subtype)
|
void StepData_StepWriter::OpenTypedSub (const Standard_CString subtype)
|
||||||
{
|
{
|
||||||
AddParam();
|
AddParam();
|
||||||
if (subtype[0] != '\0') AddString (subtype,strlen(subtype));
|
if (subtype[0] != '\0') AddString (subtype,(Standard_Integer) strlen(subtype));
|
||||||
AddString(textlist);
|
AddString(textlist);
|
||||||
thefirst = Standard_True;
|
thefirst = Standard_True;
|
||||||
thelevel ++;
|
thelevel ++;
|
||||||
@ -767,7 +767,7 @@ void StepData_StepWriter::Send (const Standard_Integer val)
|
|||||||
char lval[12];
|
char lval[12];
|
||||||
AddParam();
|
AddParam();
|
||||||
sprintf(lval,"%d",val);
|
sprintf(lval,"%d",val);
|
||||||
AddString(lval,strlen(lval));
|
AddString(lval,(Standard_Integer) strlen(lval));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -926,7 +926,7 @@ void StepData_StepWriter::Send (const Handle(Standard_Transient)& val)
|
|||||||
if (thelabmode < 2 || idnum == idtrue) sprintf(lident,"#%d",idnum);
|
if (thelabmode < 2 || idnum == idtrue) sprintf(lident,"#%d",idnum);
|
||||||
else sprintf(lident,"%d:#%d",idnum,idtrue);
|
else sprintf(lident,"%d:#%d",idnum,idtrue);
|
||||||
AddParam();
|
AddParam();
|
||||||
AddString(lident,strlen(lident));
|
AddString(lident,(Standard_Integer) strlen(lident));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -979,7 +979,7 @@ void StepData_StepWriter::SendString (const TCollection_AsciiString& val)
|
|||||||
void StepData_StepWriter::SendString (const Standard_CString val)
|
void StepData_StepWriter::SendString (const Standard_CString val)
|
||||||
{
|
{
|
||||||
AddParam();
|
AddParam();
|
||||||
AddString(val,strlen(val));
|
AddString(val,(Standard_Integer) strlen(val));
|
||||||
}
|
}
|
||||||
|
|
||||||
// SendEnum : attention, on envoie un intitule d'Enum ... donc entre . .
|
// SendEnum : attention, on envoie un intitule d'Enum ... donc entre . .
|
||||||
|
@ -208,7 +208,8 @@ Standard_OStream& TopOpeBRepDS_Dumper::Print(const Handle(Geom_BSplineCurve)&
|
|||||||
if (periodic) OS<<"periodic, ";
|
if (periodic) OS<<"periodic, ";
|
||||||
OS<<"degree "<<degree<<", "<<nbpoles<<" poles, "<<nbknots<<" knots"<<endl;
|
OS<<"degree "<<degree<<", "<<nbpoles<<" poles, "<<nbknots<<" knots"<<endl;
|
||||||
|
|
||||||
for (i = 1,OS<<"poles : ",l = strlen("poles : ") + 1,n = nbpoles;
|
//l = strlen("poles : ") + 1
|
||||||
|
for (i = 1,OS<<"poles : ",l = 9,n = nbpoles;
|
||||||
i<=n;
|
i<=n;
|
||||||
i++) {
|
i++) {
|
||||||
if (!compact) { if (i == 1) lb = 0; else lb = l; }
|
if (!compact) { if (i == 1) lb = 0; else lb = l; }
|
||||||
@ -228,7 +229,8 @@ Standard_OStream& TopOpeBRepDS_Dumper::Print(const Handle(Geom_BSplineCurve)&
|
|||||||
OS<<endl;
|
OS<<endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = 1,OS<<"knots : ",l = strlen("knots : ") + 1,n = nbknots;
|
//l = strlen("knots : ") + 1
|
||||||
|
for (i = 1,OS<<"knots : ",l = 9,n = nbknots;
|
||||||
i<=n;
|
i<=n;
|
||||||
i++) {
|
i++) {
|
||||||
if (!compact) { if (i == 1) lb = 0; else lb = l; }
|
if (!compact) { if (i == 1) lb = 0; else lb = l; }
|
||||||
@ -281,7 +283,8 @@ Standard_OStream& TopOpeBRepDS_Dumper::Print(const Handle(Geom2d_BSplineCurve)&
|
|||||||
if (periodic) OS<<"periodic, ";
|
if (periodic) OS<<"periodic, ";
|
||||||
OS<<"degree "<<degree<<", "<<nbpoles<<" poles, "<<nbknots<<" knots"<<endl;
|
OS<<"degree "<<degree<<", "<<nbpoles<<" poles, "<<nbknots<<" knots"<<endl;
|
||||||
|
|
||||||
for (i = 1,OS<<"poles : ",l = strlen("poles : ") + 1,n = nbpoles;
|
//l = strlen("poles : ") + 1
|
||||||
|
for (i = 1,OS<<"poles : ",l = 9,n = nbpoles;
|
||||||
i<=n;
|
i<=n;
|
||||||
i++) {
|
i++) {
|
||||||
if (!compact) { if (i == 1) lb = 0; else lb = l; }
|
if (!compact) { if (i == 1) lb = 0; else lb = l; }
|
||||||
@ -301,7 +304,8 @@ Standard_OStream& TopOpeBRepDS_Dumper::Print(const Handle(Geom2d_BSplineCurve)&
|
|||||||
OS<<endl;
|
OS<<endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = 1,OS<<"knots : ",l = strlen("knots : ") + 1,n = nbknots;
|
//l = strlen("knots : ") + 1
|
||||||
|
for (i = 1,OS<<"knots : ",l = 9,n = nbknots;
|
||||||
i<=n;
|
i<=n;
|
||||||
i++) {
|
i++) {
|
||||||
if (!compact) { if (i == 1) lb = 0; else lb = l; }
|
if (!compact) { if (i == 1) lb = 0; else lb = l; }
|
||||||
|
@ -178,7 +178,7 @@ void TopTools_LocationSet::Dump(Standard_OStream& OS) const
|
|||||||
void TopTools_LocationSet::Write(Standard_OStream& OS) const
|
void TopTools_LocationSet::Write(Standard_OStream& OS) const
|
||||||
{
|
{
|
||||||
|
|
||||||
int prec = OS.precision(15);
|
std::streamsize prec = OS.precision(15);
|
||||||
|
|
||||||
Standard_Integer i, nbLoc = myMap.Extent();
|
Standard_Integer i, nbLoc = myMap.Extent();
|
||||||
OS << "Locations " << nbLoc << "\n";
|
OS << "Locations " << nbLoc << "\n";
|
||||||
|
@ -458,7 +458,7 @@ void TopTools_ShapeSet::Write(Standard_OStream& OS)
|
|||||||
// on positionne LC_NUMERIC a "C" (point decimal)
|
// on positionne LC_NUMERIC a "C" (point decimal)
|
||||||
setlocale(LC_NUMERIC, "C") ;
|
setlocale(LC_NUMERIC, "C") ;
|
||||||
|
|
||||||
int prec = OS.precision(15);
|
std::streamsize prec = OS.precision(15);
|
||||||
|
|
||||||
// write the copyright
|
// write the copyright
|
||||||
if (myFormatNb == 2)
|
if (myFormatNb == 2)
|
||||||
@ -642,7 +642,7 @@ void TopTools_ShapeSet::Read(Standard_IStream& IS)
|
|||||||
//if(pm = strchr(vers,'\r'))
|
//if(pm = strchr(vers,'\r'))
|
||||||
// *pm ='\0';
|
// *pm ='\0';
|
||||||
|
|
||||||
for (Standard_Integer lv = (strlen(vers)- 1); lv > 1 && (vers[lv] == '\r' || vers[lv] == '\n') ;lv--)
|
for (Standard_Size lv = (strlen(vers)- 1); lv > 1 && (vers[lv] == '\r' || vers[lv] == '\n') ;lv--)
|
||||||
vers[lv] = '\0';
|
vers[lv] = '\0';
|
||||||
|
|
||||||
} while ( ! IS.fail() && strcmp(vers,Version) && strcmp(vers,Version2) );
|
} while ( ! IS.fail() && strcmp(vers,Version) && strcmp(vers,Version2) );
|
||||||
|
@ -59,7 +59,8 @@ void Units_Lexicon::Creates(const Standard_CString afilename)
|
|||||||
char *Oper = oper ;
|
char *Oper = oper ;
|
||||||
char *Coeff = coeff ;
|
char *Coeff = coeff ;
|
||||||
#endif
|
#endif
|
||||||
Standard_Integer fr,i;
|
Standard_Integer fr;
|
||||||
|
Standard_Size i;
|
||||||
Standard_Real value;
|
Standard_Real value;
|
||||||
Handle(Units_Token) token;
|
Handle(Units_Token) token;
|
||||||
struct stat buf;
|
struct stat buf;
|
||||||
@ -85,7 +86,7 @@ void Units_Lexicon::Creates(const Standard_CString afilename)
|
|||||||
//for(i=0; i<=255; i++)line[i]=0;
|
//for(i=0; i<=255; i++)line[i]=0;
|
||||||
|
|
||||||
while(file.getline(line,255)) {
|
while(file.getline(line,255)) {
|
||||||
int len = strlen( line ) ;
|
Standard_Size len = strlen( line ) ;
|
||||||
if(len == 1) continue; //skl - ???
|
if(len == 1) continue; //skl - ???
|
||||||
for ( i = 0 ; i < 30 ; i++ ) {
|
for ( i = 0 ; i < 30 ; i++ ) {
|
||||||
if ( i < len )
|
if ( i < len )
|
||||||
|
@ -31,8 +31,8 @@ static Handle(Units_Token) CreateTokenForNumber(const Standard_CString str)
|
|||||||
{
|
{
|
||||||
TCollection_AsciiString tstr = str[0];
|
TCollection_AsciiString tstr = str[0];
|
||||||
Standard_Boolean IsPoint = Standard_False;
|
Standard_Boolean IsPoint = Standard_False;
|
||||||
Standard_Integer len = strlen(str);
|
Standard_Size len = strlen(str);
|
||||||
for(Standard_Integer in=1; in < len; in++) {
|
for(Standard_Size in=1; in < len; in++) {
|
||||||
if( str[in]=='0' || str[in]=='1' || str[in]=='2' || str[in]=='3' ||
|
if( str[in]=='0' || str[in]=='1' || str[in]=='2' || str[in]=='3' ||
|
||||||
str[in]=='4' || str[in]=='5' || str[in]=='6' || str[in]=='7' ||
|
str[in]=='4' || str[in]=='5' || str[in]=='6' || str[in]=='7' ||
|
||||||
str[in]=='8' || str[in]=='9' ) {
|
str[in]=='8' || str[in]=='9' ) {
|
||||||
|
@ -146,7 +146,7 @@ void Units_UnitsDictionary::Creates(const Standard_CString afilename)
|
|||||||
file.getline(line,255);
|
file.getline(line,255);
|
||||||
if (!file)
|
if (!file)
|
||||||
break;
|
break;
|
||||||
fr = strlen(line);
|
fr = (Standard_Integer) strlen(line);
|
||||||
if(fr <= 1)
|
if(fr <= 1)
|
||||||
continue;
|
continue;
|
||||||
//if( !file || line[0] == '.') { //skl
|
//if( !file || line[0] == '.') { //skl
|
||||||
@ -192,7 +192,7 @@ void Units_UnitsDictionary::Creates(const Standard_CString afilename)
|
|||||||
//if(!file) break; //skl
|
//if(!file) break; //skl
|
||||||
file.getline(line,255);
|
file.getline(line,255);
|
||||||
file.getline(line,255);
|
file.getline(line,255);
|
||||||
fr = strlen(line);
|
fr = (Standard_Integer) strlen(line);
|
||||||
|
|
||||||
#if 0 // skl for OCC13438
|
#if 0 // skl for OCC13438
|
||||||
//for(i=0; i<80; i++)name[i] = 0;
|
//for(i=0; i<80; i++)name[i] = 0;
|
||||||
@ -277,7 +277,7 @@ void Units_UnitsDictionary::Creates(const Standard_CString afilename)
|
|||||||
<< "Convert" << Convert << endl
|
<< "Convert" << Convert << endl
|
||||||
<< "Unit2" << Unit2 << endl ;
|
<< "Unit2" << Unit2 << endl ;
|
||||||
#else
|
#else
|
||||||
int len = strlen( line ) ;
|
Standard_Integer len = (Standard_Integer) strlen( line ) ;
|
||||||
for ( i=0 ; i<51 ; i++ ) {
|
for ( i=0 ; i<51 ; i++ ) {
|
||||||
if ( i<len )
|
if ( i<len )
|
||||||
fr = sscanf(&line[i],"%c",&unite[i]);
|
fr = sscanf(&line[i],"%c",&unite[i]);
|
||||||
@ -342,7 +342,7 @@ void Units_UnitsDictionary::Creates(const Standard_CString afilename)
|
|||||||
|
|
||||||
if(convert[0] == '[') {
|
if(convert[0] == '[') {
|
||||||
coeff = 1.;
|
coeff = 1.;
|
||||||
i = strlen(convert);
|
i = (Standard_Integer) strlen(convert);
|
||||||
convert[i-1] = 0;
|
convert[i-1] = 0;
|
||||||
ismove = Standard_True;
|
ismove = Standard_True;
|
||||||
charnumber = 1;
|
charnumber = 1;
|
||||||
@ -371,7 +371,7 @@ void Units_UnitsDictionary::Creates(const Standard_CString afilename)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(convert[charnumber] == '(') {
|
if(convert[charnumber] == '(') {
|
||||||
i = strlen(convert);
|
i = (Standard_Integer) strlen(convert);
|
||||||
convert[i-1] = 0;
|
convert[i-1] = 0;
|
||||||
Units_MathSentence mathsentence(&convert[charnumber+1]);
|
Units_MathSentence mathsentence(&convert[charnumber+1]);
|
||||||
if(ismove)
|
if(ismove)
|
||||||
|
@ -4260,12 +4260,12 @@ static Standard_Integer VPolygonOffset(Draw_Interpretor& di,
|
|||||||
}
|
}
|
||||||
|
|
||||||
Standard_Integer aMode;
|
Standard_Integer aMode;
|
||||||
Standard_Real aFactor, aUnits;
|
Standard_ShortReal aFactor, aUnits;
|
||||||
if (argc == 5)
|
if (argc == 5)
|
||||||
{
|
{
|
||||||
aMode = atoi(argv[2]);
|
aMode = atoi(argv[2]);
|
||||||
aFactor = atof(argv[3]);
|
aFactor = (Standard_ShortReal) atof(argv[3]);
|
||||||
aUnits = atof(argv[4]);
|
aUnits = (Standard_ShortReal) atof(argv[4]);
|
||||||
|
|
||||||
anInterObj->SetPolygonOffsets(aMode, aFactor, aUnits);
|
anInterObj->SetPolygonOffsets(aMode, aFactor, aUnits);
|
||||||
aContext->UpdateCurrentViewer();
|
aContext->UpdateCurrentViewer();
|
||||||
|
@ -640,7 +640,7 @@ VrmlData_ErrorStatus VrmlData_ArrayVec3d::ReadArray
|
|||||||
if (OK(aStatus, VrmlData_Scene::ReadLine(theBuffer))) {
|
if (OK(aStatus, VrmlData_Scene::ReadLine(theBuffer))) {
|
||||||
// Match the name with the current word in the stream
|
// Match the name with the current word in the stream
|
||||||
if (theName) {
|
if (theName) {
|
||||||
const Standard_Integer aNameLen = strlen(theName);
|
const Standard_Size aNameLen = strlen(theName);
|
||||||
if (strncmp (theBuffer.LinePtr, theName, aNameLen))
|
if (strncmp (theBuffer.LinePtr, theName, aNameLen))
|
||||||
aStatus = VrmlData_VrmlFormatError;
|
aStatus = VrmlData_VrmlFormatError;
|
||||||
else
|
else
|
||||||
|
@ -839,7 +839,7 @@ VrmlData_ErrorStatus VrmlData_Scene::ReadArrIndex
|
|||||||
aStatus = VrmlData_UnrecoverableError;
|
aStatus = VrmlData_UnrecoverableError;
|
||||||
else {
|
else {
|
||||||
for (size_t i = 0; i < aNbBlocks; i++)
|
for (size_t i = 0; i < aNbBlocks; i++)
|
||||||
anArray[i] = vecIndice(i);
|
anArray[i] = vecIndice((Standard_Integer)i);
|
||||||
theNBlocks = aNbBlocks;
|
theNBlocks = aNbBlocks;
|
||||||
theArray = anArray;
|
theArray = anArray;
|
||||||
}
|
}
|
||||||
|
@ -391,7 +391,7 @@ Standard_Integer WNT_ImageManager :: StringHashCode (
|
|||||||
|
|
||||||
} u;
|
} u;
|
||||||
|
|
||||||
n = strlen ( aString );
|
n = (Standard_Integer) strlen ( aString );
|
||||||
|
|
||||||
if ( n > 0 ) {
|
if ( n > 0 ) {
|
||||||
|
|
||||||
|
@ -895,7 +895,7 @@ Standard_Integer XSControl_TransferReader::TransferOne
|
|||||||
<<" Ident : "<<lab->ToCString()
|
<<" Ident : "<<lab->ToCString()
|
||||||
<< Interface_MSG::Blanks(14 - lab->Length())<<"******\n";
|
<< Interface_MSG::Blanks(14 - lab->Length())<<"******\n";
|
||||||
sout << "****** Type : "<<theModel->TypeName(ent,Standard_False)
|
sout << "****** Type : "<<theModel->TypeName(ent,Standard_False)
|
||||||
<< Interface_MSG::Blanks(44 - strlen(theModel->TypeName(ent,Standard_False)))
|
<< Interface_MSG::Blanks((Standard_Integer) (44 - strlen(theModel->TypeName(ent,Standard_False))))
|
||||||
<< "******";
|
<< "******";
|
||||||
sout<<"\n*******************************************************************\n";
|
sout<<"\n*******************************************************************\n";
|
||||||
}
|
}
|
||||||
|
@ -241,7 +241,7 @@ void XSDRAW::LoadDraw (Draw_Interpretor& theCommands)
|
|||||||
if (!first || first[0] == '\0') {
|
if (!first || first[0] == '\0') {
|
||||||
char ligne[80]; ligne[0] = '\0'; char truc;
|
char ligne[80]; ligne[0] = '\0'; char truc;
|
||||||
// cin.clear(); cin.get (ligne,79,'\n');
|
// cin.clear(); cin.get (ligne,79,'\n');
|
||||||
cin >> ligne; int ln = strlen(ligne);
|
cin >> ligne; Standard_Size ln = strlen(ligne);
|
||||||
char *ff = &ligne[0], *ss = NULL;
|
char *ff = &ligne[0], *ss = NULL;
|
||||||
cin.get(truc); if (truc != '\n') { cin>>&ligne[ln+1]; ss = &ligne[ln+1]; }
|
cin.get(truc); if (truc != '\n') { cin>>&ligne[ln+1]; ss = &ligne[ln+1]; }
|
||||||
return XSDRAW::GetList (ff,ss);
|
return XSDRAW::GetList (ff,ss);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user