mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-14 13:30:48 +03:00
"endl" manipulator for Message_Messenger is renamed to "Message_EndLine". The following entities from std namespace are now used with std:: explicitly specified (from Standard_Stream.hxx): std::istream,std::ostream,std::ofstream,std::ifstream,std::fstream, std::filebuf,std::streambuf,std::streampos,std::ios,std::cout,std::cerr, std::cin,std::endl,std::ends,std::flush,std::setw,std::setprecision, std::hex,std::dec.
81 lines
2.5 KiB
C++
81 lines
2.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_GTrsf.hxx>
|
|
#include <IGESGeom_TransformationMatrix.hxx>
|
|
#include <Standard_DimensionMismatch.hxx>
|
|
#include <Standard_OutOfRange.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
IMPLEMENT_STANDARD_RTTIEXT(IGESGeom_TransformationMatrix,IGESData_TransfEntity)
|
|
|
|
IGESGeom_TransformationMatrix::IGESGeom_TransformationMatrix () { }
|
|
|
|
|
|
void IGESGeom_TransformationMatrix::Init
|
|
(const Handle(TColStd_HArray2OfReal)& aMatrix)
|
|
{
|
|
if(aMatrix.IsNull()) {
|
|
theData = new TColStd_HArray2OfReal(1,3,1,4);
|
|
theData->Init(0.0);
|
|
Standard_Integer i =1;
|
|
for( ;i <=3; i++)
|
|
theData->SetValue(i,i,1.0);
|
|
|
|
}
|
|
if ((aMatrix->RowLength() != 4) || (aMatrix->ColLength() != 3))
|
|
throw Standard_DimensionMismatch("IGESGeom_TransformationMatrix : Init");
|
|
|
|
|
|
|
|
theData = aMatrix;
|
|
if(theData.IsNull()) {
|
|
return;
|
|
}
|
|
InitTypeAndForm(124,FormNumber());
|
|
}
|
|
|
|
void IGESGeom_TransformationMatrix::SetFormNumber (const Standard_Integer fm)
|
|
{
|
|
if(theData.IsNull())
|
|
std::cout<<"Inavalid Transformation Data"<<std::endl;
|
|
if ((fm < 0 || fm > 1) && (fm < 10 || fm > 12)) throw Standard_OutOfRange("IGESGeom_TransformationMatrix : SetFormNumber");
|
|
InitTypeAndForm(124,fm);
|
|
}
|
|
|
|
|
|
Standard_Real IGESGeom_TransformationMatrix::Data
|
|
(const Standard_Integer I, const Standard_Integer J) const
|
|
{
|
|
return theData->Value(I,J);
|
|
}
|
|
|
|
gp_GTrsf IGESGeom_TransformationMatrix::Value () const
|
|
{
|
|
gp_GTrsf Matrix;
|
|
if(!theData.IsNull()) {
|
|
for (Standard_Integer I = 1; I <= 3; I++) {
|
|
for (Standard_Integer J = 1; J <= 4; J++) {
|
|
Matrix.SetValue(I, J, theData->Value(I, J));
|
|
}
|
|
}
|
|
}
|
|
|
|
return Matrix;
|
|
}
|