Skip to content
Snippets Groups Projects
Commit 5c39c643 authored by Henry's avatar Henry
Browse files
parents 0aee45ba 257495f5
Branches
Tags
No related merge requests found
......@@ -744,7 +744,7 @@ int main(int argc, char *argv[])
// Read
// ~~~~
triSurface surf("constant/triSurface/" + surfFileName);
triSurface surf(runTime.constantPath()/"triSurface"/surfFileName);
Info<< "Statistics:" << endl;
surf.writeStats(Info);
......@@ -1338,7 +1338,7 @@ int main(int argc, char *argv[])
{
vtkSurfaceWriter().write
(
runTime.constant()/"triSurface", // outputDir
runTime.constantPath()/"triSurface",// outputDir
sFeatFileName, // surfaceName
surf.points(),
faces,
......@@ -1350,7 +1350,7 @@ int main(int argc, char *argv[])
vtkSurfaceWriter().write
(
runTime.constant()/"triSurface", // outputDir
runTime.constantPath()/"triSurface",// outputDir
sFeatFileName, // surfaceName
surf.points(),
faces,
......@@ -1403,7 +1403,7 @@ int main(int argc, char *argv[])
{
vtkSurfaceWriter().write
(
runTime.constant()/"triSurface", // outputDir
runTime.constantPath()/"triSurface",// outputDir
sFeatFileName, // surfaceName
surf.points(),
faces,
......@@ -1482,7 +1482,7 @@ int main(int argc, char *argv[])
{
vtkSurfaceWriter().write
(
runTime.constant()/"triSurface", // outputDir
runTime.constantPath()/"triSurface",// outputDir
sFeatFileName, // surfaceName
surf.points(),
faces,
......
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