From 159d2bf1cb3de3787486505c5af19944205d4847 Mon Sep 17 00:00:00 2001 From: Marcin Kupilas <77973282+marcin-kupilas@users.noreply.github.com> Date: Fri, 12 Sep 2025 12:19:44 +0100 Subject: [PATCH] changed x_rotate to y_rotate in Create_VRMgrid.cpp Changed the code so that it now reads: 77 CommandLineDouble (MyGridXRotate ,"x_rotate" ,0.0); 78 CommandLineDouble (MyGridYRotate ,"y_rotate" ,0.0); where line 78 had x_rotate --- VRM_tools/VRM_Editor/src/Create_VRMgrid.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VRM_tools/VRM_Editor/src/Create_VRMgrid.cpp b/VRM_tools/VRM_Editor/src/Create_VRMgrid.cpp index 70eb98c..033128f 100644 --- a/VRM_tools/VRM_Editor/src/Create_VRMgrid.cpp +++ b/VRM_tools/VRM_Editor/src/Create_VRMgrid.cpp @@ -75,7 +75,7 @@ try { CommandLineInt (MySmoothIterations ,"smooth_iter" ,0); CommandLineBool (MyReverseOrientation,"reverse_orient" ); CommandLineDouble (MyGridXRotate ,"x_rotate" ,0.0); - CommandLineDouble (MyGridYRotate ,"x_rotate" ,0.0); + CommandLineDouble (MyGridYRotate ,"y_rotate" ,0.0); CommandLineDouble (MyGridLonShift ,"lon_shift" ,0.0); CommandLineString (MyRefineFile ,"refine_file" ,"NULL"); CommandLineString (MyOutputFile ,"output" ,"NULL");