Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ autoscan.log
*.ods
*.zip
*.~
*.xlsx
*.csv
*.m4
libtool
globe_mats_cubic.cxx
globe_mats_cubic
jobGenerator.cxx
Expand Down
2 changes: 1 addition & 1 deletion CubicMesh.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ std::unique_ptr<UMesh> CubicMesh::subdivideMesh(const emInt nDivs,
MSOut.nPrisms, MSOut.nHexes);
// Copy length scale data from the other mesh.
auto wrappedData = outMesh.get();
for (emInt vv = 0; vv < numVerts(); vv++) {
for (emInt vv = 0; vv < MSIn.nVerts; vv++) {
wrappedData->setLengthScale(vv, m_lenScale[vv]);
}

Expand Down