You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.7 KiB
58 lines
1.7 KiB
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<base href="../../../" />
|
|
<script src="page.js"></script>
|
|
<link type="text/css" rel="stylesheet" href="page.css" />
|
|
</head>
|
|
<body>
|
|
[page:BufferGeometry] → [page:PolyhedronGeometry] →
|
|
<h1>[name]</h1>
|
|
|
|
<p class="desc">Une classe pour générer une géométrie d'icosaèdre.</p>
|
|
|
|
<iframe id="scene" src="scenes/geometry-browser.html#IcosahedronGeometry"></iframe>
|
|
|
|
<script>
|
|
|
|
// iOS iframe auto-resize workaround
|
|
|
|
if ( /(iPad|iPhone|iPod)/g.test( navigator.userAgent ) ) {
|
|
|
|
const scene = document.getElementById( 'scene' );
|
|
|
|
scene.style.width = getComputedStyle( scene ).width;
|
|
scene.style.height = getComputedStyle( scene ).height;
|
|
scene.setAttribute( 'scrolling', 'no' );
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<h2>Constructeur</h2>
|
|
|
|
<h3>[name]([param:Float radius], [param:Integer detail])</h3>
|
|
<p>
|
|
radius — La valeur par défaut est 1. <br />
|
|
detail — La valeur par défaut est 0. Le définir sur une valeur supérieure à 0 ajoute plus de sommets, la géométrie n'est donc plus un icosaèdre. Lorsque le détail est supérieur à 1, la géométrie est une sphère.
|
|
</p>
|
|
|
|
<h2>Propriétés</h2>
|
|
<p>Voir la classe de base [page:PolyhedronGeometry] pour les propriétés communes.</p>
|
|
|
|
<h3>[property:Object parameters]</h3>
|
|
<p>
|
|
Un objet avec une propriété pour chacun des paramètres du constructeur. Toute modification après instanciation ne change pas la géométrie.
|
|
</p>
|
|
|
|
<h2>Méthodes</h2>
|
|
<p>Voir la classe de base [page:PolyhedronGeometry] pour les méthodes communes.</p>
|
|
|
|
<h2>Source</h2>
|
|
|
|
<p>
|
|
[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
|
|
</p>
|
|
</body>
|
|
</html>
|
|
|