X-Git-Url: http://git.dev.opencascade.org/gitweb/?p=occt.git;a=blobdiff_plain;f=src%2FBinTools%2FBinTools_ShapeSetBase.cxx;h=dcc9b4268d553281b28d3401f3d9a5b9cf7c30d0;hb=d5c71e2057bfe1cbcadd6564f207841eb9e26355;hpb=9e5e4c0c849d2549afb3ef2b764496562545cb01 diff --git a/src/BinTools/BinTools_ShapeSetBase.cxx b/src/BinTools/BinTools_ShapeSetBase.cxx new file mode 100644 index 0000000000..dcc9b4268d --- /dev/null +++ b/src/BinTools/BinTools_ShapeSetBase.cxx @@ -0,0 +1,69 @@ +// Copyright (c) 2021 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 +#include +#include + +const Standard_CString BinTools_ShapeSetBase::THE_ASCII_VERSIONS[BinTools_FormatVersion_UPPER + 1] = +{ + "", + "Open CASCADE Topology V1 (c)", + "Open CASCADE Topology V2 (c)", + "Open CASCADE Topology V3 (c)", + "Open CASCADE Topology V4, (c) Open Cascade" +}; + +//======================================================================= +//function : operator << (gp_Pnt) +//purpose : +//======================================================================= +Standard_OStream& operator << (Standard_OStream& OS, const gp_Pnt P) +{ + BinTools::PutReal (OS, P.X()); + BinTools::PutReal (OS, P.Y()); + BinTools::PutReal (OS, P.Z()); + return OS; +} + +//======================================================================= +//function : BinTools_ShapeSetBase +//purpose : +//======================================================================= + +BinTools_ShapeSetBase::BinTools_ShapeSetBase() + : myFormatNb (BinTools_FormatVersion_CURRENT), + myWithTriangles (Standard_False), + myWithNormals (Standard_False) +{} + +//======================================================================= +//function : ~BinTools_ShapeSetBase +//purpose : +//======================================================================= + +BinTools_ShapeSetBase::~BinTools_ShapeSetBase() +{} + +//======================================================================= +//function : SetFormatNb +//purpose : +//======================================================================= +void BinTools_ShapeSetBase::SetFormatNb (const Standard_Integer theFormatNb) +{ + Standard_ASSERT_RETURN(theFormatNb >= BinTools_FormatVersion_LOWER && + theFormatNb <= BinTools_FormatVersion_UPPER, + "Error: unsupported BinTools version.", ); + + myFormatNb = theFormatNb; +}