@@ -1780,7 +1780,7 @@ Scene3D.prototype.setLookAt=function(eye, center, up){
1780
1780
/**
1781
1781
* Adds a 3D shape to this scene. Its reference, not a copy,
1782
1782
* will be stored in the 3D scene's list of shapes.
1783
- * @param {Shape|glutil.ShapeGroup } shape A 3D shape.
1783
+ * @param {glutil. Shape|glutil.ShapeGroup } shape A 3D shape.
1784
1784
* @return {glutil.Scene3D } This object.
1785
1785
*/
1786
1786
Scene3D . prototype . addShape = function ( shape ) {
@@ -1802,7 +1802,7 @@ Scene3D.prototype.makeShape=function(mesh){
1802
1802
1803
1803
/**
1804
1804
* Removes all instances of a 3D shape from this scene.
1805
- * @param {Shape|glutil.ShapeGroup } shape The 3D shape to remove.
1805
+ * @param {glutil. Shape|glutil.ShapeGroup } shape The 3D shape to remove.
1806
1806
* @return {glutil.Scene3D } This object.
1807
1807
*/
1808
1808
Scene3D . prototype . removeShape = function ( shape ) {
@@ -2062,7 +2062,7 @@ function ShapeGroup(){
2062
2062
/**
2063
2063
* Adds a 3D shape to this shape group. Its reference, not a copy,
2064
2064
* will be stored in the list of shapes.
2065
- * @param {Shape|glutil.ShapeGroup } shape A 3D shape.
2065
+ * @param {glutil. Shape|glutil.ShapeGroup } shape A 3D shape.
2066
2066
* @return {glutil.ShapeGroup } This object.
2067
2067
*/
2068
2068
ShapeGroup . prototype . addShape = function ( shape ) {
@@ -2100,16 +2100,30 @@ ShapeGroup.prototype.getMatrix=function(){
2100
2100
return mat ;
2101
2101
}
2102
2102
/**
2103
- * Not documented yet.
2103
+ * Sets the transform used by this shape group. Child
2104
+ * shapes can set their own transforms, in which case, the
2105
+ * rendering process will multiply this shape group's transform
2106
+ * with the child shape's transform as it renders the child shape.
2104
2107
* @param {glutil.Transform } transform
2105
2108
*/
2106
2109
ShapeGroup . prototype . setTransform = function ( transform ) {
2107
2110
this . transform = transform . copy ( ) ;
2108
2111
return this ;
2109
2112
}
2113
+
2114
+ /**
2115
+ * Sets the material used by all shapes in this shape group.
2116
+ * @param {glutil.Material } material
2117
+ */
2118
+ ShapeGroup . prototype . setMaterial = function ( material ) {
2119
+ for ( var i = 0 ; i < this . shapes . length ; i ++ ) {
2120
+ this . shapes [ i ] . setMaterial ( material ) ;
2121
+ }
2122
+ return this ;
2123
+ }
2110
2124
/**
2111
2125
* Removes all instances of a 3D shape from this shape group
2112
- * @param {Shape|glutil.ShapeGroup } shape The 3D shape to remove.
2126
+ * @param {glutil. Shape|glutil.ShapeGroup } shape The 3D shape to remove.
2113
2127
* @return {glutil.ShapeGroup } This object.
2114
2128
*/
2115
2129
ShapeGroup . prototype . removeShape = function ( shape ) {
0 commit comments