Skip to content

Commit

Permalink
"CartesianGridUV": uniformise indentation style.
Browse files Browse the repository at this point in the history
ybedfer authored and andresailer committed Dec 9, 2024
1 parent c310db8 commit 7f5c7ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DDCore/src/segmentations/CartesianGridUV.cpp
Original file line number Diff line number Diff line change
@@ -74,8 +74,8 @@ Vector3D CartesianGridUV::position(const CellID& cID) const {
CellID CartesianGridUV::cellID(const Vector3D& localPosition,
const Vector3D& /* globalPosition */,
const VolumeID& vID) const {
CellID cID = vID;
const Vector3D& localUV = RotationZ(_gridAngle)*localPosition;
CellID cID = vID;
const Vector3D& localUV = RotationZ(_gridAngle)*localPosition;
_decoder->set( cID,_uId, positionToBin(localUV.X, _gridSizeU, _offsetU) );
_decoder->set( cID,_vId, positionToBin(localUV.Y, _gridSizeV, _offsetV) );
return cID;

0 comments on commit 7f5c7ec

Please sign in to comment.