Skip to content
Snippets Groups Projects
Commit 64fbaf65 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

No commit message

No commit message
parent 85e44123
Branches
Tags
No related merge requests found
...@@ -26,7 +26,7 @@ generator with built-in pre- and post-processing facilities</h1> ...@@ -26,7 +26,7 @@ generator with built-in pre- and post-processing facilities</h1>
<h4 align="center">Christophe Geuzaine and Jean-Franois Remacle</h4> <h4 align="center">Christophe Geuzaine and Jean-Franois Remacle</h4>
<h4 align="center">Version 2.6.0, June 19 2012</h4> <h4 align="center">Version 2.6.1, July 15 2012</h4>
<center> <center>
<a href="#Description">Description</a> | <a href="#Description">Description</a> |
...@@ -65,13 +65,13 @@ the <a href="/gmsh/doc/LICENSE.txt">GNU General Public License ...@@ -65,13 +65,13 @@ the <a href="/gmsh/doc/LICENSE.txt">GNU General Public License
<li> <li>
<p class="highlight"> <p class="highlight">
<strong>Current stable release</strong>: <strong>Current stable release</strong>:
<a href="/gmsh/bin/Windows/gmsh-2.6.0-Windows.zip"><strong>Windows</strong></a> <a href="/gmsh/bin/Windows/gmsh-2.6.1-Windows.zip"><strong>Windows</strong></a>
(XP/Vista), (XP/Vista),
<a href="/gmsh/bin/Linux/gmsh-2.6.0-Linux.tgz"><strong>Linux</strong></a>, <a href="/gmsh/bin/Linux/gmsh-2.6.1-Linux.tgz"><strong>Linux</strong></a>,
(Intel glibc 2.3), (Intel glibc 2.3),
<a href="/gmsh/bin/MacOSX/gmsh-2.6.0-MacOSX.dmg"><strong>Mac OS X</strong></a> <a href="/gmsh/bin/MacOSX/gmsh-2.6.1-MacOSX.dmg"><strong>Mac OS X</strong></a>
(Intel 10.5) and (Intel 10.5) and
<a href="/gmsh/src/gmsh-2.6.0-source.tgz"><strong>source code</strong></a> <a href="/gmsh/src/gmsh-2.6.1-source.tgz"><strong>source code</strong></a>
</p> </p>
<p> <p>
<em>A <a href="/gmsh/doc/texinfo/gmsh.html#Tutorial"><strong>tutorial</strong></a> <em>A <a href="/gmsh/doc/texinfo/gmsh.html#Tutorial"><strong>tutorial</strong></a>
...@@ -80,13 +80,13 @@ the <a href="/gmsh/doc/LICENSE.txt">GNU General Public License ...@@ -80,13 +80,13 @@ the <a href="/gmsh/doc/LICENSE.txt">GNU General Public License
these examples before sending questions or bug reports!</em> these examples before sending questions or bug reports!</em>
<li>Development version: <li>Development version:
<ul><li>automated nightly builds: <ul><li>automated nightly builds:
<a href="/gmsh/bin/Windows/gmsh-nightly-Windows.zip">Windows</a> <a href="/gmsh/bin/Windows/gmsh-svn-Windows.zip">Windows</a>
(<a href="/gmsh/bin/Windows/nightly.log">build log</a>), (<a href="/gmsh/bin/Windows/nightly.log">build log</a>),
<a href="/gmsh/bin/Linux/gmsh-nightly-Linux.tgz">Linux</a> <a href="/gmsh/bin/Linux/gmsh-svn-Linux.tgz">Linux</a>
(<a href="/gmsh/bin/Linux/nightly.log">build log</a>), (<a href="/gmsh/bin/Linux/nightly.log">build log</a>),
<a href="/gmsh/bin/MacOSX/gmsh-nightly-MacOSX.dmg">Mac OS X</a> <a href="/gmsh/bin/MacOSX/gmsh-svn-MacOSX.dmg">Mac OS X</a>
(<a href="/gmsh/bin/MacOSX/nightly.log">build log</a>) (<a href="/gmsh/bin/MacOSX/nightly.log">build log</a>)
<li>nightly <a href="/gmsh/src/gmsh-nightly-source.tgz">source <li>nightly <a href="/gmsh/src/gmsh-svn-source.tgz">source
snapshot</a> snapshot</a>
<li>read-only svn access: '<code>svn co https://geuz.org/svn/gmsh/trunk <li>read-only svn access: '<code>svn co https://geuz.org/svn/gmsh/trunk
gmsh</code>' (username: gmsh, password: gmsh) gmsh</code>' (username: gmsh, password: gmsh)
......
...@@ -27,13 +27,13 @@ int main(int argc, char **argv) ...@@ -27,13 +27,13 @@ int main(int argc, char **argv)
} }
PView *p = new PView("f(x,y,z) = x", "NodeData", m, d); PView *p = new PView("f(x,y,z) = x", "NodeData", m, d);
p->getData()->writeMSH("f.msh"); p->getData()->writeMSH("f.msh");
// use a plugin on the dataset // use a plugin on the dataset
PluginManager::instance()->setPluginOption("CutPlane", "A", 0.); PluginManager::instance()->setPluginOption("CutPlane", "A", 0.);
PluginManager::instance()->setPluginOption("CutPlane", "B", 1.); PluginManager::instance()->setPluginOption("CutPlane", "B", 1.);
PluginManager::instance()->setPluginOption("CutPlane", "C", 0.); PluginManager::instance()->setPluginOption("CutPlane", "C", 0.);
PluginManager::instance()->setPluginOption("CutPlane", "D", -0.05); PluginManager::instance()->setPluginOption("CutPlane", "D", -0.05);
PluginManager::instance()->setPluginOption("CutPlane", "iView", 0.); PluginManager::instance()->setPluginOption("CutPlane", "View", 0.);
PluginManager::instance()->action("CutPlane", "Run", 0); PluginManager::instance()->action("CutPlane", "Run", 0);
PView::list.back()->getData()->writeMSH("fcut.msh"); PView::list.back()->getData()->writeMSH("fcut.msh");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment