initial upload

This commit is contained in:
2024-09-10 20:25:18 +08:00
parent b8de03ee4f
commit f1cc876972
377 changed files with 2721267 additions and 34 deletions

10
archive/gmt2msh/main.cpp Normal file
View File

@@ -0,0 +1,10 @@
#include "func.h"
int main(int argc, char* argv[])
{
gmt2msh gm;
gm.getRef("1000/1000");
gm.getNode("test.d",1000,1000);
gm.outMsh("test.msh");
return 0;
}