Hi, Rakesh!

>>Is there a way to generate .geo file pro grammatically..?? i.e. using C++.??

Maybe, I don't really understand your question... but what is the problem?

int main()
{
  std::ofstream geo("test.geo");
  geo << "Point(1) = {0, 0, 0};\n";
  // and so on
  geo.close();
  return 0;
}

Cheers
Mikhail Artemiev
_______________________________________________
gmsh mailing list
[email protected]
http://www.geuz.org/mailman/listinfo/gmsh

Reply via email to