1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-08 18:40:55 +03:00
occt/src/IGESSolid/IGESSolid_ToolRightAngularWedge.cxx
dpasukhi f91655b0c5 Coding - Isolate long attached comments for clang-format #259
Automatically update code with clang-format disabling for avoiding formatting.
You can check the python script in GitHub PR
2025-01-16 20:15:29 +00:00

212 lines
7.4 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_Dir.hxx>
#include <gp_Pnt.hxx>
#include <gp_XYZ.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 <IGESSolid_RightAngularWedge.hxx>
#include <IGESSolid_ToolRightAngularWedge.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>
IGESSolid_ToolRightAngularWedge::IGESSolid_ToolRightAngularWedge () { }
void IGESSolid_ToolRightAngularWedge::ReadOwnParams
(const Handle(IGESSolid_RightAngularWedge)& ent,
const Handle(IGESData_IGESReaderData)& /* IR */, IGESData_ParamReader& PR) const
{
gp_XYZ tempSize, tempCorner, tempXAxis, tempZAxis;
Standard_Real lowX;
Standard_Real tempreal;
//Standard_Boolean st; //szv#4:S4163:12Mar99 not needed
// clang-format off
PR.ReadXYZ(PR.CurrentList(1, 3), "Size of RightAngularWedge", tempSize); //szv#4:S4163:12Mar99 `st=` not needed
// clang-format on
PR.ReadReal(PR.Current(), "Small X length", lowX); //szv#4:S4163:12Mar99 `st=` not needed
if (PR.DefinedElseSkip())
{
//st = PR.ReadReal(PR.Current(), "Corner Point (X)", tempreal); //szv#4:S4163:12Mar99 moved in if
if (PR.ReadReal(PR.Current(), "Corner Point (X)", tempreal))
tempCorner.SetX(tempreal);
}
else tempCorner.SetX(0.0);
if (PR.DefinedElseSkip())
{
//st = PR.ReadReal(PR.Current(), "Corner Point (Y)", tempreal); //szv#4:S4163:12Mar99 moved in if
if (PR.ReadReal(PR.Current(), "Corner Point (Y)", tempreal))
tempCorner.SetY(tempreal);
}
else tempCorner.SetY(0.0);
if (PR.DefinedElseSkip())
{
//st = PR.ReadReal(PR.Current(), "Corner Point (Z)", tempreal); //szv#4:S4163:12Mar99 moved in if
if (PR.ReadReal(PR.Current(), "Corner Point (Z)", tempreal))
tempCorner.SetZ(tempreal);
}
else tempCorner.SetZ(0.0);
if (PR.DefinedElseSkip())
{
//st = PR.ReadReal(PR.Current(), "Local X axis (I)", tempreal); //szv#4:S4163:12Mar99 moved in if
if (PR.ReadReal(PR.Current(), "Local X axis (I)", tempreal))
tempXAxis.SetX(tempreal);
}
else tempXAxis.SetX(1.0);
if (PR.DefinedElseSkip())
{
//st = PR.ReadReal(PR.Current(), "Local X axis (J)", tempreal); //szv#4:S4163:12Mar99 moved in if
if (PR.ReadReal(PR.Current(), "Local X axis (J)", tempreal))
tempXAxis.SetY(tempreal);
}
else tempXAxis.SetY(0.0);
if (PR.DefinedElseSkip())
{
//st = PR.ReadReal(PR.Current(), "Local X axis (K)", tempreal); //szv#4:S4163:12Mar99 moved in if
if (PR.ReadReal(PR.Current(), "Local X axis (K)", tempreal))
tempXAxis.SetZ(tempreal);
}
else tempXAxis.SetZ(0.0);
if (PR.DefinedElseSkip())
{
//st = PR.ReadReal(PR.Current(), "Local Z axis (I)", tempreal); //szv#4:S4163:12Mar99 moved in if
if (PR.ReadReal(PR.Current(), "Local Z axis (I)", tempreal))
tempZAxis.SetX(tempreal);
}
else tempZAxis.SetX(0.0);
if (PR.DefinedElseSkip())
{
//st = PR.ReadReal(PR.Current(), "Local Z axis (J)", tempreal); //szv#4:S4163:12Mar99 moved in if
if (PR.ReadReal(PR.Current(), "Local Z axis (J)", tempreal))
tempZAxis.SetY(tempreal);
}
else tempZAxis.SetY(0.0);
if (PR.DefinedElseSkip())
{
//st = PR.ReadReal(PR.Current(), "Local Z axis (K)", tempreal); //szv#4:S4163:12Mar99 moved in if
if (PR.ReadReal(PR.Current(), "Local Z axis (K)", tempreal))
tempZAxis.SetZ(tempreal);
}
else tempZAxis.SetZ(1.0);
DirChecker(ent).CheckTypeAndForm(PR.CCheck(),ent);
ent->Init (tempSize, lowX, tempCorner, tempXAxis, tempZAxis);
Standard_Real eps = 1.E-05;
if (!tempXAxis.IsEqual(ent->XAxis().XYZ(),eps)) PR.AddWarning
("XAxis poorly unitary, normalized");
if (!tempZAxis.IsEqual(ent->ZAxis().XYZ(),eps)) PR.AddWarning
("ZAxis poorly unitary, normalized");
}
void IGESSolid_ToolRightAngularWedge::WriteOwnParams
(const Handle(IGESSolid_RightAngularWedge)& ent, IGESData_IGESWriter& IW) const
{
IW.Send(ent->Size().X());
IW.Send(ent->Size().Y());
IW.Send(ent->Size().Z());
IW.Send(ent->XSmallLength());
IW.Send(ent->Corner().X());
IW.Send(ent->Corner().Y());
IW.Send(ent->Corner().Z());
IW.Send(ent->XAxis().X());
IW.Send(ent->XAxis().Y());
IW.Send(ent->XAxis().Z());
IW.Send(ent->ZAxis().X());
IW.Send(ent->ZAxis().Y());
IW.Send(ent->ZAxis().Z());
}
void IGESSolid_ToolRightAngularWedge::OwnShared
(const Handle(IGESSolid_RightAngularWedge)& /* ent */, Interface_EntityIterator& /* iter */) const
{
}
void IGESSolid_ToolRightAngularWedge::OwnCopy
(const Handle(IGESSolid_RightAngularWedge)& another,
const Handle(IGESSolid_RightAngularWedge)& ent, Interface_CopyTool& /* TC */) const
{
ent->Init(another->Size(), another->XSmallLength(), another->Corner().XYZ(),
another->XAxis().XYZ(), another->ZAxis().XYZ());
}
IGESData_DirChecker IGESSolid_ToolRightAngularWedge::DirChecker
(const Handle(IGESSolid_RightAngularWedge)& /* ent */ ) const
{
IGESData_DirChecker DC(152, 0);
DC.Structure (IGESData_DefVoid);
DC.LineFont (IGESData_DefAny);
DC.Color (IGESData_DefAny);
DC.UseFlagRequired (0);
DC.HierarchyStatusIgnored ();
return DC;
}
void IGESSolid_ToolRightAngularWedge::OwnCheck
(const Handle(IGESSolid_RightAngularWedge)& ent,
const Interface_ShareTool& , Handle(Interface_Check)& ach) const
{
Standard_Real eps = 1.E-04;
Standard_Real prosca = ent->XAxis() * ent->ZAxis();
if (prosca < -eps || prosca > eps)
ach->AddFail("Local Z axis : Not orthogonal to X axis");
if (ent->Size().X() <= 0. || ent->Size().Y() <= 0. || ent->Size().Z() <= 0.)
ach->AddFail("Size : Values are not positive");
if (ent->XSmallLength() <= 0.0)
ach->AddFail("Small X Length : Not Positive");
if (ent->XSmallLength() >= ent->Size().X())
ach->AddFail("Small X Length : Value not < LX");
}
void IGESSolid_ToolRightAngularWedge::OwnDump
(const Handle(IGESSolid_RightAngularWedge)& ent, const IGESData_IGESDumper& /* dumper */,
Standard_OStream& S, const Standard_Integer level) const
{
S << "IGESSolid_RightAngularWedge\n"
<< "Size : ";
IGESData_DumpXYZ(S, ent->Size()); S << " ";
S << "XSmall : " << ent->XSmallLength() << "\n"
<< "Corner : ";
IGESData_DumpXYZL(S,level, ent->Corner(), ent->Location());
S << "\nXAxis : ";
IGESData_DumpXYZL(S,level, ent->XAxis(), ent->VectorLocation());
S << "\nZAxis : ";
IGESData_DumpXYZL(S,level, ent->ZAxis(), ent->VectorLocation());
S << std::endl;
}