outfulltest.html
来自「有限元学习研究用源代码(老外的),供科研人员参考」· HTML 代码 · 共 20 行
HTML
20 行
<TITLE>IBG 2.0 - View and Write</TITLE>
<H1>View Geometry And Write</H1>
<P>The following code starts the geometry viewer for the original
geometry as well as for the geometry defined by the grid. It also
writes the grid into the file "test.sg" in format Simplex 2.0.
<PRE>
void test_output(cogeometry geom, wzgrid grid)
{
if(grid->gridDim>1){ // implementation restriction;
CogeometryGrid gg(grid); cogOutput(&gg, geom);
}else{
cogOutput(geom);
}
grid->write("test");
}
</PRE>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?