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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<base href="../../../" />
<script src="list.js"></script>
<script src="page.js"></script>
<link type="text/css" rel="stylesheet" href="page.css" />
</head>
<body>
[page:Object3D] →
<h1>[name]</h1>
<p class="desc">
Class representing triangular [link:https://en.wikipedia.org/wiki/Polygon_mesh polygon mesh] based objects.
Also serves as a base for other classes such as [page:SkinnedMesh].
</p>
<h2>Example</h2>
<code>
var geometry = new THREE.BoxBufferGeometry( 1, 1, 1 );
var material = new THREE.MeshBasicMaterial( { color: 0xffff00 } );
var mesh = new THREE.Mesh( geometry, material );
scene.add( mesh );
</code>
<h2>Constructor</h2>
<h3>[name]( [param:Geometry geometry], [param:Material material] )</h3>
<p>
[page:Geometry geometry] — (optional) an instance of [page:Geometry] or [page:BufferGeometry].
Default is a new [page:BufferGeometry].<br />
[page:Material material] — (optional) a single or an array of [page:Material]. Default is a new [page:MeshBasicMaterial]
</p>
<h2>Properties</h2>
<p>See the base [page:Object3D] class for common properties.</p>
<h3>[property:Integer drawMode]</h3>
<p>
Determines how the mesh triangles are constructed from the vertices.
See the draw mode [page:DrawModes constants] for all possible values.
Default is [page:DrawModes TrianglesDrawMode].
</p>
<p>
A sensible usage of this property is only possible when [page:Mesh.geometry] is of type [page:BufferGeometry BufferGeometry]
since the engine always assumes *THREE.TrianglesDrawMode* for [page:Geometry Geometry].
</p>
<h3>[property:Boolean isMesh]</h3>
<p>
Used to check whether this or derived classes are meshes. Default is *true*.<br /><br />
You should not change this, as it is used internally for optimisation.
</p>
<h3>[property:Geometry geometry]</h3>
<p>
An instance of [page:Geometry] or [page:BufferGeometry] (or derived classes),
defining the object's structure.<br /><br />
It's recommended to always use a [page:BufferGeometry] if possible for best performance.
</p>
<h3>[property:Material material]</h3>
<p>
An instance of material derived from the [page:Material] base class or an array of materials, defining the
object's appearance. Default is a [page:MeshBasicMaterial] with a random color.
</p>
<h3>[property:Array morphTargetInfluences]</h3>
<p>
An array of weights typically from 0-1 that specify how much of the morph is applied.
Undefined by default, but reset to a blank array by [page:Mesh.updateMorphTargets updateMorphTargets].
</p>
<h3>[property:Object morphTargetDictionary]</h3>
<p>
A dictionary of morphTargets based on the morphTarget.name property.
Undefined by default, but rebuilt [page:Mesh.updateMorphTargets updateMorphTargets].
</p>
<h2>Methods</h2>
<p>See the base [page:Object3D] class for common methods.</p>
<h3>[method:null setDrawMode]( [param:Integer value] )</h3>
<p>Set the value of [page:.drawMode drawMode].</p>
<h3>[method:Mesh clone]()</h3>
<p>Returns a clone of this [name] object and its descendants.</p>
<h3>[method:null raycast]( [param:Raycaster raycaster], [param:Array intersects] )</h3>
<p>
Get intersections between a casted ray and this mesh.
[page:Raycaster.intersectObject] will call this method, but the results are not ordered.
</p>
<h3>[method:null updateMorphTargets]()</h3>
<p>
Updates the morphTargets to have no influence on the object. Resets the
[page:Mesh.morphTargetInfluences morphTargetInfluences] and
[page:Mesh.morphTargetDictionary morphTargetDictionary] properties.
</p>
<h2>Source</h2>
<p>
[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
</p>
</body>
</html>
|