📄 maincog1dtest.html
字号:
<TITLE>COG 2.0: 1D segment</TITLE>
<H1>Intersection with a line segment</H1>
<P>In this variant, instead of the <A HREF="maincogtest.html">3D
cube</A>, the intersection of the
<A HREF="cogtest.html">test cogeometry</A> with a 1D segment (shifted
in y- and z-direction) is computed.
<PRE>
#include "<A HREF="coglib.hxx">cog/coglib.hxx</A>"
cogeometry test_cogeometry();
#include "<A HREF="cogtest.cxx">cogtest.cxx</A>"
int main()
{
cogeometry geom = test_cogeometry();
cogenOctree gen = new <A HREF="cogenoctree.html">CogenOctree</A>();
gen->setBorder(-1.0,1.0);
gen->refinementGlobal(0.4);
</PRE>
<P>The following line defines the positions in y- and z-direction of
the segment. Varying these values we obtain different intersections
of the full 3D cogeometry.
<PRE>
gen->addPlaneY(0.4);
gen->addPlaneZ(0.4);
wzgrid grid = (*gen)(geom);
grid->write("test.sg");
}
</PRE>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -