Adjusted according to review comments.

This commit is contained in:
Ruben Thoms
2020-09-30 10:47:46 +02:00
committed by Magne Sjaastad
parent ef4894985a
commit b6cca51593
4 changed files with 25 additions and 24 deletions

View File

@@ -54,18 +54,18 @@ public:
private:
struct ElementVectorResultVisualization
{
ElementVectorResultVisualization( cvf::Vec3d faceCenter, cvf::Vec3d faceNormal, double result, double characteristicCellSize )
ElementVectorResultVisualization( cvf::Vec3d faceCenter, cvf::Vec3d faceNormal, double result, double approximateCellLength )
: faceCenter( faceCenter )
, faceNormal( faceNormal )
, result( result )
, characteristicCellSize( characteristicCellSize )
, approximateCellLength( approximateCellLength )
{
}
cvf::Vec3f faceCenter;
cvf::Vec3f faceNormal;
double result;
double characteristicCellSize;
double approximateCellLength;
};
private: