/usr/share/makehuman-doc/html/module_geometry3d.html is in makehuman-doc 1.1.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>The Geometry3D Module — MakeHuman 1.0 documentation</title>
<link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '1.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<link rel="shortcut icon" href="_static/favicon.ico"/>
<link rel="top" title="MakeHuman 1.0 documentation" href="index.html" />
<link rel="next" title="The Gui3D Module" href="module_gui3d.html" />
<link rel="prev" title="The Events3D Module" href="module_files3d.html" />
<link rel="stylesheet" href="_static/custom.css" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9" />
</head>
<body role="document">
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<div class="section" id="module-geometry3d">
<span id="the-geometry3d-module"></span><span id="modulegeometry3d"></span><h1>The Geometry3D Module<a class="headerlink" href="#module-geometry3d" title="Permalink to this headline">¶</a></h1>
<p><strong>Project Name:</strong> MakeHuman</p>
<p><strong>Product Home Page:</strong> <a class="reference external" href="http://www.makehuman.org/">http://www.makehuman.org/</a></p>
<p><strong>Code Home Page:</strong> <a class="reference external" href="https://bitbucket.org/MakeHuman/makehuman/">https://bitbucket.org/MakeHuman/makehuman/</a></p>
<p><strong>Authors:</strong> Marc Flerackers</p>
<p><strong>Copyright(c):</strong> MakeHuman Team 2001-2016</p>
<p><strong>Licensing:</strong> AGPL3</p>
<blockquote>
<div><p>This file is part of MakeHuman (www.makehuman.org).</p>
<p>This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.</p>
<p>This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.</p>
<p>You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <<a class="reference external" href="http://www.gnu.org/licenses/">http://www.gnu.org/licenses/</a>>.</p>
</div></blockquote>
<div class="section" id="abstract">
<h2>Abstract<a class="headerlink" href="#abstract" title="Permalink to this headline">¶</a></h2>
<p>This module contains classes for commonly used geometry</p>
<dl class="class">
<dt id="geometry3d.Cube">
<em class="property">class </em><code class="descclassname">geometry3d.</code><code class="descname">Cube</code><span class="sig-paren">(</span><em>width</em>, <em>height=0</em>, <em>depth=0</em>, <em>texture=None</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/geometry3d.html#Cube"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#geometry3d.Cube" title="Permalink to this definition">¶</a></dt>
<dd><p>A cube.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple">
<li><strong>width</strong> (<em>int or float</em>) – The width.</li>
<li><strong>height</strong> (<em>int or float</em>) – The height, if 0 it will be equal to width.</li>
<li><strong>depth</strong> (<em>int or float</em>) – The depth, if 0 it will be equal to width.</li>
<li><strong>texture</strong> (<em>str</em>) – The texture.</li>
</ul>
</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="class">
<dt id="geometry3d.FrameMesh">
<em class="property">class </em><code class="descclassname">geometry3d.</code><code class="descname">FrameMesh</code><span class="sig-paren">(</span><em>width</em>, <em>height</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/geometry3d.html#FrameMesh"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#geometry3d.FrameMesh" title="Permalink to this definition">¶</a></dt>
<dd><p>A wire rectangle.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple">
<li><strong>width</strong> (<em>int or float</em>) – The width.</li>
<li><strong>height</strong> (<em>int or float</em>) – The height.</li>
</ul>
</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="class">
<dt id="geometry3d.RectangleMesh">
<em class="property">class </em><code class="descclassname">geometry3d.</code><code class="descname">RectangleMesh</code><span class="sig-paren">(</span><em>width</em>, <em>height</em>, <em>centered=False</em>, <em>texture=None</em>, <em>rotation=None</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/geometry3d.html#RectangleMesh"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#geometry3d.RectangleMesh" title="Permalink to this definition">¶</a></dt>
<dd><p>A filled rectangle.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple">
<li><strong>width</strong> (<em>int or float</em>) – The width.</li>
<li><strong>height</strong> (<em>int or float</em>) – The height.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<p>:param centered True to center the mesh around its local origin.
:type centered bool
:param texture: The texture.
:type texture: str</p>
</dd></dl>
</div>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<h3><a href="index.html">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">The Geometry3D Module</a><ul>
<li><a class="reference internal" href="#abstract">Abstract</a></li>
</ul>
</li>
</ul>
<div class="relations">
<h3>Related Topics</h3>
<ul>
<li><a href="index.html">Documentation overview</a><ul>
<li>Previous: <a href="module_files3d.html" title="previous chapter">The Events3D Module</a></li>
<li>Next: <a href="module_gui3d.html" title="next chapter">The Gui3D Module</a></li>
</ul></li>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
<div><input type="text" name="q" /></div>
<div><input type="submit" value="Go" /></div>
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="footer">
©2016, MHteam.
|
Powered by <a href="http://sphinx-doc.org/">Sphinx 1.4.5</a>
& <a href="https://github.com/bitprophet/alabaster">Alabaster 0.7.8</a>
</div>
</body>
</html>
|