Skip to content

Commit 6022719

Browse files
committed
Version 1.4
1 parent 69ce2b8 commit 6022719

File tree

3 files changed

+53
-11
lines changed

3 files changed

+53
-11
lines changed

README.md

+27
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,33 @@ Examples
143143
History
144144
---------
145145

146+
Version 1.4:
147+
148+
- Fixed camera.js issues (thanks to the user "the-sz" on GitHub)
149+
- Added an _extras_ folder with the following new scripts:
150+
- A CurveTube class for creating tubes from 3D curves
151+
- A parametric evaluator for surfaces of revolution and
152+
3 kinds of curves (_evaluators.js_)
153+
- A frame counter (moved from the demos)
154+
- A JSON converter and loader for 3D meshes (_meshjson.js_)
155+
- Made _objmtl.js_ compatible with more MTL files
156+
- Math.sin/Math.cos pairs were replaced with optimized
157+
versions throughout the code
158+
- Add mat4transformVec3 method to GLMath
159+
- Add BSplineCurve class
160+
- Deprecate vertexBezier, normalBezier, colorBezier, and texCoordBezier
161+
methods of CurveEval and SurfaceEval
162+
- Optimize SurfaceEval's evalSurface method when generating
163+
triangles
164+
- Add primitiveCount and enumPrimitives methods to the Mesh
165+
class
166+
- Add setMaterial and removeShape methods to the ShapeGroup class
167+
- Default shader program now uses `modelViewMatrix` instead of
168+
separate `world` and `view` uniforms
169+
- FIx JSON issues in GLUtil.loadFileFromUrl method
170+
- Many new demos added
171+
- Add graphics filters tutorial and expanded several other tutorials
172+
146173
Version 1.3.1:
147174

148175
- Fixed touch events in some of the interactive demos

glutil.js

+19-5
Original file line numberDiff line numberDiff line change
@@ -1780,7 +1780,7 @@ Scene3D.prototype.setLookAt=function(eye, center, up){
17801780
/**
17811781
* Adds a 3D shape to this scene. Its reference, not a copy,
17821782
* 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.
17841784
* @return {glutil.Scene3D} This object.
17851785
*/
17861786
Scene3D.prototype.addShape=function(shape){
@@ -1802,7 +1802,7 @@ Scene3D.prototype.makeShape=function(mesh){
18021802

18031803
/**
18041804
* 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.
18061806
* @return {glutil.Scene3D} This object.
18071807
*/
18081808
Scene3D.prototype.removeShape=function(shape){
@@ -2062,7 +2062,7 @@ function ShapeGroup(){
20622062
/**
20632063
* Adds a 3D shape to this shape group. Its reference, not a copy,
20642064
* 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.
20662066
* @return {glutil.ShapeGroup} This object.
20672067
*/
20682068
ShapeGroup.prototype.addShape=function(shape){
@@ -2100,16 +2100,30 @@ ShapeGroup.prototype.getMatrix=function(){
21002100
return mat;
21012101
}
21022102
/**
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.
21042107
* @param {glutil.Transform} transform
21052108
*/
21062109
ShapeGroup.prototype.setTransform=function(transform){
21072110
this.transform=transform.copy();
21082111
return this;
21092112
}
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+
}
21102124
/**
21112125
* 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.
21132127
* @return {glutil.ShapeGroup} This object.
21142128
*/
21152129
ShapeGroup.prototype.removeShape=function(shape){

glutil_min.js

+7-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)