Skip to content
Snippets Groups Projects
Commit b8ffb82b authored by Henry Weller's avatar Henry Weller
Browse files

circleSet: Corrected point ordering

Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1932
parent d0471074
Branches
Tags
No related merge requests found
......@@ -118,7 +118,10 @@ void Foam::circleSet::calcSamples
samplingCells.append(cellI);
samplingFaces.append(-1);
samplingSegments.append(nPoint);
samplingCurveDist.append(mag(pt - startPoint_));
samplingCurveDist.append
(
radius*constant::mathematical::pi/180.0*theta
);
nPoint++;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment