Skip to content

Commit

Permalink
working the tesselate far field graind filter
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Groeber committed Nov 27, 2014
1 parent c706862 commit 6719ee3
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -550,7 +550,7 @@ void TesselateFarFieldGrains::execute()
if (getCancel() == true) { return; }

notifyStatusMessage(getHumanLabel(), "Assigning Gaps");
assign_gaps_only();
// assign_gaps_only();
if (getCancel() == true) { return; }

VolumeDataContainer* m = getDataContainerArray()->getDataContainerAs<VolumeDataContainer>(getOutputCellAttributeMatrixName().getDataContainerName());
Expand Down Expand Up @@ -671,7 +671,7 @@ void TesselateFarFieldGrains::load_features()
{
m_Centroids[3* currentFeature + 0] = xC;
m_Centroids[3* currentFeature + 1] = yC;
m_Centroids[3* currentFeature + 2] = zC + globalZPos;
m_Centroids[3* currentFeature + 2] = zC + (globalZPos-beamCenter);

vol = fourThirds * DREAM3D::Constants::k_Pi * eqRad * eqRad * eqRad;
m_Volumes[currentFeature] = vol;
Expand Down

0 comments on commit 6719ee3

Please sign in to comment.