OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2010, Google Inc. | 2 * Copyright 2010, Google Inc. |
3 * All rights reserved. | 3 * All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 14 matching lines...) Expand all Loading... |
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
30 */ | 30 */ |
31 | 31 |
32 | 32 |
33 /** | 33 /** |
34 * An Element manages DrawElements for classes inherited from Element. | 34 * An Element manages DrawElements for classes inherited from Element. |
35 * | 35 * |
36 * @param {!o3d.Material} opt_material The Material used by this Element. | 36 * @param {!o3d.Material} opt_material The Material used by this Element. |
37 * @param {!o3d.BoundingBox} opt_boundingBox The BoundingBox used by this | 37 * @param {!o3d.BoundingBox} opt_boundingBox The BoundingBox used by this |
38 * Element for culling. | 38 * Element for culling. |
39 * @param {!o3d.Point3} opt_zSortPoint The point to sort by when rendering | 39 * @param {!o3d.Point3} opt_zSortPoint The point to sort by when rendering |
40 * this Element in a z ordered DrawPass. | 40 * this Element in a z ordered DrawPass. |
41 * @param {boolean} opt_cull Whether or not to attempt to cull this | 41 * @param {boolean} opt_cull Whether or not to attempt to cull this |
42 * Element based on whether or not its bounding box is in the view | 42 * Element based on whether or not its bounding box is in the view |
43 * frustum. | 43 * frustum. |
44 * @constructor | 44 * @constructor |
45 */ | 45 */ |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 o3d.Element.prototype.__defineGetter__('owner', | 138 o3d.Element.prototype.__defineGetter__('owner', |
139 function() { | 139 function() { |
140 return this.owner_; | 140 return this.owner_; |
141 } | 141 } |
142 ); | 142 ); |
143 | 143 |
144 /** | 144 /** |
145 * Creates a DrawElement for this Element. Note that unlike | 145 * Creates a DrawElement for this Element. Note that unlike |
146 * Shape.createDrawElements and Transform.createDrawElements this one will | 146 * Shape.createDrawElements and Transform.createDrawElements this one will |
147 * create more than one element for the same material. | 147 * create more than one element for the same material. |
148 * | 148 * |
149 * @param {!o3d.Pack} pack pack used to manage created DrawElement. | 149 * @param {!o3d.Pack} pack pack used to manage created DrawElement. |
150 * @param {!o3d.Material} material material to use for DrawElement. If you | 150 * @param {!o3d.Material} material material to use for DrawElement. If you |
151 * pass null it will use the material on this Element. This allows you | 151 * pass null it will use the material on this Element. This allows you |
152 * to easily setup the default (just draw as is) by passing null or | 152 * to easily setup the default (just draw as is) by passing null or |
153 * setup a shadow pass by passing in a shadow material. | 153 * setup a shadow pass by passing in a shadow material. |
154 * @return {!o3d.DrawElement} The created draw element. | 154 * @return {!o3d.DrawElement} The created draw element. |
155 */ | 155 */ |
156 o3d.Element.prototype.createDrawElement = | 156 o3d.Element.prototype.createDrawElement = |
157 function(pack, material) { | 157 function(pack, material) { |
158 drawElement = new o3d.DrawElement(); | 158 drawElement = pack.createObject('DrawElement'); |
159 drawElement.owner = this; | 159 drawElement.owner = this; |
160 drawElement.material = material || this.material; | 160 drawElement.material = material || this.material; |
161 this.drawElements.push(drawElement); | 161 this.drawElements.push(drawElement); |
162 return drawElement; | 162 return drawElement; |
163 }; | 163 }; |
164 | 164 |
165 | 165 |
166 /** | 166 /** |
167 * Computes the intersection of a ray in the same coordinate system as | 167 * Computes the intersection of a ray in the same coordinate system as |
168 * the specified POSITION stream. | 168 * the specified POSITION stream. |
(...skipping 23 matching lines...) Expand all Loading... |
192 return this.boundingBox; | 192 return this.boundingBox; |
193 }; | 193 }; |
194 | 194 |
195 | 195 |
196 /** | 196 /** |
197 * Virtual function that renders the element. | 197 * Virtual function that renders the element. |
198 */ | 198 */ |
199 o3d.Element.prototype.render = function() { }; | 199 o3d.Element.prototype.render = function() { }; |
200 | 200 |
201 | 201 |
OLD | NEW |