1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-03 14:10:33 +03:00
Files
occt/src/IGESSolid/IGESSolid_ToolCylinder.cxx
abv d5f74e42d6 0024624: Lost word in license statement in source files
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast
Wrong license statements corrected in several files.
Copyright and license statements added in XSD and GLSL files.
Copyright year updated in some files.
Obsolete documentation files removed from DrawResources.
2014-02-20 16:15:17 +04:00

167 lines
5.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 <IGESSolid_ToolCylinder.ixx>
#include <IGESData_ParamCursor.hxx>
#include <gp_XYZ.hxx>
#include <gp_Pnt.hxx>
#include <IGESData_Dump.hxx>
IGESSolid_ToolCylinder::IGESSolid_ToolCylinder () { }
void IGESSolid_ToolCylinder::ReadOwnParams
(const Handle(IGESSolid_Cylinder)& ent,
const Handle(IGESData_IGESReaderData)& /* IR */, IGESData_ParamReader& PR) const
{
Standard_Real tempHeight, tempRadius, tempreal;
gp_XYZ tempCenter, tempAxis;
//Standard_Boolean st; //szv#4:S4163:12Mar99 not needed
PR.ReadReal(PR.Current(), "Height", tempHeight); //szv#4:S4163:12Mar99 `st=` not needed
PR.ReadReal(PR.Current(), "Radius", tempRadius); //szv#4:S4163:12Mar99 `st=` not needed
if (PR.DefinedElseSkip())
{
//st = PR.ReadReal(PR.Current(), "Face center (X)", tempreal); //szv#4:S4163:12Mar99 moved in if
if (PR.ReadReal(PR.Current(), "Face center (X)", tempreal))
tempCenter.SetX(tempreal);
}
else tempCenter.SetX(0.0);
if (PR.DefinedElseSkip())
{
//st = PR.ReadReal(PR.Current(), "Face center (Y)", tempreal); //szv#4:S4163:12Mar99 moved in if
if (PR.ReadReal(PR.Current(), "Face center (Y)", tempreal))
tempCenter.SetY(tempreal);
}
else tempCenter.SetY(0.0);
if (PR.DefinedElseSkip())
{
//st = PR.ReadReal(PR.Current(), "Face center (Z)", tempreal); //szv#4:S4163:12Mar99 moved in if
if (PR.ReadReal(PR.Current(), "Face center (Z)", tempreal))
tempCenter.SetZ(tempreal);
}
else tempCenter.SetZ(0.0);
if (PR.DefinedElseSkip())
{
//st = PR.ReadReal(PR.Current(), "Axis direction (I)", tempreal); //szv#4:S4163:12Mar99 moved in if
if (PR.ReadReal(PR.Current(), "Axis direction (I)", tempreal))
tempAxis.SetX(tempreal);
}
else tempAxis.SetX(0.0);
if (PR.DefinedElseSkip())
{
//st = PR.ReadReal(PR.Current(), "Axis direction (J)", tempreal); //szv#4:S4163:12Mar99 moved in if
if (PR.ReadReal(PR.Current(), "Axis direction (J)", tempreal))
tempAxis.SetY(tempreal);
}
else tempAxis.SetY(0.0);
if (PR.DefinedElseSkip())
{
//st = PR.ReadReal(PR.Current(), "Axis direction (K)", tempreal); //szv#4:S4163:12Mar99 moved in if
if (PR.ReadReal(PR.Current(), "Axis direction (K)", tempreal))
tempAxis.SetZ(tempreal);
}
else tempAxis.SetZ(1.0);
DirChecker(ent).CheckTypeAndForm(PR.CCheck(),ent);
ent->Init
(tempHeight, tempRadius, tempCenter, tempAxis);
Standard_Real eps = 1.E-05;
if (!tempAxis.IsEqual(ent->Axis().XYZ(),eps)) PR.AddWarning
("Axis poorly unitary, normalized");
}
void IGESSolid_ToolCylinder::WriteOwnParams
(const Handle(IGESSolid_Cylinder)& ent, IGESData_IGESWriter& IW) const
{
IW.Send(ent->Height());
IW.Send(ent->Radius());
IW.Send(ent->FaceCenter().X());
IW.Send(ent->FaceCenter().Y());
IW.Send(ent->FaceCenter().Z());
IW.Send(ent->Axis().X());
IW.Send(ent->Axis().Y());
IW.Send(ent->Axis().Z());
}
void IGESSolid_ToolCylinder::OwnShared
(const Handle(IGESSolid_Cylinder)& /* ent */, Interface_EntityIterator& /* iter */) const
{
}
void IGESSolid_ToolCylinder::OwnCopy
(const Handle(IGESSolid_Cylinder)& another,
const Handle(IGESSolid_Cylinder)& ent, Interface_CopyTool& /* TC */) const
{
ent->Init
(another->Height(), another->Radius(), another->FaceCenter().XYZ(),
another->Axis().XYZ());
}
IGESData_DirChecker IGESSolid_ToolCylinder::DirChecker
(const Handle(IGESSolid_Cylinder)& /* ent */ ) const
{
IGESData_DirChecker DC(154, 0);
DC.Structure (IGESData_DefVoid);
DC.LineFont (IGESData_DefAny);
DC.Color (IGESData_DefAny);
DC.UseFlagRequired (0);
DC.HierarchyStatusIgnored ();
return DC;
}
void IGESSolid_ToolCylinder::OwnCheck
(const Handle(IGESSolid_Cylinder)& ent,
const Interface_ShareTool& , Handle(Interface_Check)& ach) const
{
if (ent->Height() <= 0.0)
ach->AddFail("Height : Value < 0");
if (ent->Radius() <= 0.0)
ach->AddFail("Radius : Value < 0");
}
void IGESSolid_ToolCylinder::OwnDump
(const Handle(IGESSolid_Cylinder)& ent, const IGESData_IGESDumper& /* dumper */,
const Handle(Message_Messenger)& S, const Standard_Integer level) const
{
// Standard_Boolean locprint = (ent->HasTransf() && level >=6);
// gp_Pnt TCenter = ent->TransformedFaceCenter();
// gp_Dir TAxis = ent->TransformedAxis();
S << "IGESSolid_Cylinder" << endl;
S << "Height : " << ent->Height() << " ";
S << "Radius : " << ent->Radius() << endl;
S << "Center : ";
IGESData_DumpXYZL(S,level, ent->FaceCenter(), ent->Location());
S << endl << "Axis : ";
IGESData_DumpXYZL(S,level, ent->Axis(), ent->VectorLocation());
S << endl;
}