//-------------------------------------------------------------------- // // File Name : IGESSolid_Block.cxx // Date : // Author : CKY / Contract Toubro-Larsen // Copyright : MATRA-DATAVISION 1993 // //-------------------------------------------------------------------- #include #include #include #include #include #include IGESSolid_ToolBlock::IGESSolid_ToolBlock () { } void IGESSolid_ToolBlock::ReadOwnParams (const Handle(IGESSolid_Block)& ent, const Handle(IGESData_IGESReaderData)& /* IR */, IGESData_ParamReader& PR) const { gp_XYZ tempSize, tempCorner, tempXAxis, tempZAxis; Standard_Real tempreal; //Standard_Boolean st; //szv#4:S4163:12Mar99 not needed PR.ReadXYZ(PR.CurrentList(1, 3), "Size of Block", tempSize); //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, 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_ToolBlock::WriteOwnParams (const Handle(IGESSolid_Block)& ent, IGESData_IGESWriter& IW) const { IW.Send(ent->Size().X()); IW.Send(ent->Size().Y()); IW.Send(ent->Size().Z()); 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_ToolBlock::OwnShared (const Handle(IGESSolid_Block)& /* ent */, Interface_EntityIterator& /* iter */) const { } void IGESSolid_ToolBlock::OwnCopy (const Handle(IGESSolid_Block)& another, const Handle(IGESSolid_Block)& ent, Interface_CopyTool& /* TC */) const { ent->Init(another->Size(), another->Corner().XYZ(), another->XAxis().XYZ(), another->ZAxis().XYZ()); } IGESData_DirChecker IGESSolid_ToolBlock::DirChecker (const Handle(IGESSolid_Block)& /* ent */ ) const { IGESData_DirChecker DC(150, 0); DC.Structure (IGESData_DefVoid); DC.LineFont (IGESData_DefAny); DC.Color (IGESData_DefAny); DC.UseFlagRequired (0); return DC; } void IGESSolid_ToolBlock::OwnCheck (const Handle(IGESSolid_Block)& 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 : Not positive lengths"); } void IGESSolid_ToolBlock::OwnDump (const Handle(IGESSolid_Block)& ent, const IGESData_IGESDumper& /* dumper */, const Handle(Message_Messenger)& S, const Standard_Integer level) const { S << "IGESSolid_Block" << endl; S << "Size : "; IGESData_DumpXYZ(S, ent->Size()); S << endl << "Corner : "; IGESData_DumpXYZL(S,level, ent->Corner(), ent->Location()); S << endl << "XAxis : "; IGESData_DumpXYZL(S,level, ent->XAxis(), ent->VectorLocation()); S << endl << "ZAxis : "; IGESData_DumpXYZL(S,level, ent->ZAxis(), ent->VectorLocation()); S << endl; }