mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
circleSet: Corrected point ordering
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1932
This commit is contained in:
@ -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++;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user