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