Removed obsolete code

This commit is contained in:
Jacob Støren 2015-06-16 14:48:51 +02:00
parent 33614b30bc
commit 2cef1b8e3c
2 changed files with 0 additions and 27 deletions

View File

@ -31,7 +31,6 @@ add_library( ${PROJECT_NAME}
RigFemPartGrid.cpp
RigFemResultAddress.h
RigFemResultPosEnum.h
cafTensor3D.h
)
target_link_libraries( ${PROJECT_NAME} LibCore ResultStatisticsCache)

View File

@ -1,26 +0,0 @@
#pragma once
namespace caf
{
template< typename S>
class Tensor3D
{
S v[6];
public:
void setFromAbaqusLayout(S* tensorData)
{
v[0] = tensorData[0];
v[1] = tensorData[1];
v[2] = tensorData[2];
v[3] = tensorData[3];
v[4] = tensorData[4];
v[5] = tensorData[5];
}
};
typedef Tensor3D<float> Ten3Df;
}