mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Update empty method guards to new style with regex (see PR). Used clang-format 18.1.8. New actions to validate code formatting is added. Update .clang-format with disabling of include sorting. It is temporary changes, then include will be sorted. Apply formatting for /src and /tools folder. The files with .hxx,.cxx,.lxx,.h,.pxx,.hpp,*.cpp extensions.
142 lines
5.5 KiB
C++
142 lines
5.5 KiB
C++
// Created by: CKY / Contract Toubro-Larsen
|
|
// Copyright (c) 1993-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.
|
|
|
|
//--------------------------------------------------------------------
|
|
//--------------------------------------------------------------------
|
|
|
|
#include <gp_Pnt2d.hxx>
|
|
#include <gp_XY.hxx>
|
|
#include <IGESData_DirChecker.hxx>
|
|
#include <IGESData_Dump.hxx>
|
|
#include <IGESData_IGESDumper.hxx>
|
|
#include <IGESData_IGESReaderData.hxx>
|
|
#include <IGESData_IGESWriter.hxx>
|
|
#include <IGESData_ParamReader.hxx>
|
|
#include <IGESDimen_BasicDimension.hxx>
|
|
#include <IGESDimen_ToolBasicDimension.hxx>
|
|
#include <Interface_Check.hxx>
|
|
#include <Interface_CopyTool.hxx>
|
|
#include <Interface_EntityIterator.hxx>
|
|
#include <Interface_ShareTool.hxx>
|
|
#include <Message_Messenger.hxx>
|
|
#include <Standard_DomainError.hxx>
|
|
|
|
IGESDimen_ToolBasicDimension::IGESDimen_ToolBasicDimension() {}
|
|
|
|
void IGESDimen_ToolBasicDimension::ReadOwnParams(const Handle(IGESDimen_BasicDimension)& ent,
|
|
const Handle(IGESData_IGESReaderData)& /* IR */,
|
|
IGESData_ParamReader& PR) const
|
|
{
|
|
// Standard_Boolean st; //szv#4:S4163:12Mar99 not needed
|
|
Standard_Integer nbPropVal;
|
|
gp_XY templl;
|
|
gp_XY templr;
|
|
gp_XY tempur;
|
|
gp_XY tempul;
|
|
|
|
// clang-format off
|
|
PR.ReadInteger(PR.Current(),"Number of Property Values",nbPropVal); //szv#4:S4163:12Mar99 `st=` not needed
|
|
PR.ReadXY(PR.CurrentList(1, 2),"Lower Left Corner", templl); //szv#4:S4163:12Mar99 `st=` not needed
|
|
PR.ReadXY(PR.CurrentList(1, 2),"Lower Right Corner", templr); //szv#4:S4163:12Mar99 `st=` not needed
|
|
PR.ReadXY(PR.CurrentList(1, 2),"Upper Right Corner", tempur); //szv#4:S4163:12Mar99 `st=` not needed
|
|
PR.ReadXY(PR.CurrentList(1, 2),"Upper Left Corner", tempul); //szv#4:S4163:12Mar99 `st=` not needed
|
|
// clang-format on
|
|
|
|
DirChecker(ent).CheckTypeAndForm(PR.CCheck(), ent);
|
|
ent->Init(nbPropVal, templl, templr, tempur, tempul);
|
|
}
|
|
|
|
void IGESDimen_ToolBasicDimension::WriteOwnParams(const Handle(IGESDimen_BasicDimension)& ent,
|
|
IGESData_IGESWriter& IW) const
|
|
{
|
|
IW.Send(ent->NbPropertyValues());
|
|
IW.Send(ent->LowerLeft().X());
|
|
IW.Send(ent->LowerLeft().Y());
|
|
IW.Send(ent->LowerRight().X());
|
|
IW.Send(ent->LowerRight().Y());
|
|
IW.Send(ent->UpperRight().X());
|
|
IW.Send(ent->UpperRight().Y());
|
|
IW.Send(ent->UpperLeft().X());
|
|
IW.Send(ent->UpperLeft().Y());
|
|
}
|
|
|
|
void IGESDimen_ToolBasicDimension::OwnShared(const Handle(IGESDimen_BasicDimension)& /* ent */,
|
|
Interface_EntityIterator& /* iter */) const
|
|
{
|
|
}
|
|
|
|
void IGESDimen_ToolBasicDimension::OwnCopy(const Handle(IGESDimen_BasicDimension)& another,
|
|
const Handle(IGESDimen_BasicDimension)& ent,
|
|
Interface_CopyTool& /* TC */) const
|
|
{
|
|
ent->Init(8,
|
|
another->LowerLeft().XY(),
|
|
another->LowerRight().XY(),
|
|
another->UpperRight().XY(),
|
|
another->UpperLeft().XY());
|
|
}
|
|
|
|
Standard_Boolean IGESDimen_ToolBasicDimension::OwnCorrect(
|
|
const Handle(IGESDimen_BasicDimension)& ent) const
|
|
{
|
|
Standard_Boolean res = (ent->NbPropertyValues() != 8);
|
|
if (res)
|
|
ent->Init(8,
|
|
ent->LowerLeft().XY(),
|
|
ent->LowerRight().XY(),
|
|
ent->UpperRight().XY(),
|
|
ent->UpperLeft().XY()); // nbpropertyvalues = 8
|
|
return res;
|
|
}
|
|
|
|
IGESData_DirChecker IGESDimen_ToolBasicDimension::DirChecker(
|
|
const Handle(IGESDimen_BasicDimension)& /* ent */) const
|
|
{
|
|
IGESData_DirChecker DC(406, 31); // Type = 406, Form = 31
|
|
DC.Structure(IGESData_DefVoid);
|
|
DC.GraphicsIgnored();
|
|
DC.BlankStatusIgnored();
|
|
DC.SubordinateStatusRequired(01);
|
|
DC.UseFlagRequired(02);
|
|
DC.HierarchyStatusIgnored();
|
|
return DC;
|
|
}
|
|
|
|
void IGESDimen_ToolBasicDimension::OwnCheck(const Handle(IGESDimen_BasicDimension)& ent,
|
|
const Interface_ShareTool&,
|
|
Handle(Interface_Check)& ach) const
|
|
{
|
|
if (ent->NbPropertyValues() != 8)
|
|
ach->AddFail("Num of Property Values != 8");
|
|
}
|
|
|
|
void IGESDimen_ToolBasicDimension::OwnDump(const Handle(IGESDimen_BasicDimension)& ent,
|
|
const IGESData_IGESDumper& /* dumper */,
|
|
Standard_OStream& S,
|
|
const Standard_Integer /* level */) const
|
|
{
|
|
S << "IGESDimen_BasicDimension\n"
|
|
<< "Number of Property Values : " << ent->NbPropertyValues() << "\n\n"
|
|
<< " Lower left corner : ";
|
|
IGESData_DumpXY(S, ent->LowerLeft());
|
|
S << "\n Lower right corner : ";
|
|
IGESData_DumpXY(S, ent->LowerRight());
|
|
S << "\n Upper right corner : ";
|
|
IGESData_DumpXY(S, ent->UpperRight());
|
|
S << "\n Upper left corner : ";
|
|
IGESData_DumpXY(S, ent->UpperLeft());
|
|
S << std::endl;
|
|
}
|