Skip to content

Commit

Permalink
Snapshot build
Browse files Browse the repository at this point in the history
  • Loading branch information
xeolabs committed Aug 28, 2015
1 parent d8e700f commit 6be9504
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions api/latest/scenejs.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* A WebGL-based 3D scene graph from xeoLabs
* http://scenejs.org/
*
* Built on 2015-08-20
* Built on 2015-08-28
*
* MIT License
* Copyright 2015, Lindsay Kay
Expand Down Expand Up @@ -13818,13 +13818,13 @@ new (function () {
}

this._core.applyTo = params.applyTo;
}

this.setCenterBias(params.centerBias);
this.setEdgeBias(params.edgeBias);
this.setPower(params.power);
this.setCenterColor(params.centerColor);
this.setEdgeColor(params.edgeColor);
this.setCenterBias(params.centerBias);
this.setEdgeBias(params.edgeBias);
this.setPower(params.power);
this.setCenterColor(params.centerColor);
this.setEdgeColor(params.edgeColor);
}
};

SceneJS.Fresnel.prototype.getApplyTo = function () {
Expand Down Expand Up @@ -17094,7 +17094,7 @@ var SceneJS_ProgramSourceFactory = new (function () {

if (diffuseFresnel) {
src.push("float diffuseFresnel = fresnel(viewEyeVec, viewNormalVec, SCENEJS_uDiffuseFresnelEdgeBias, SCENEJS_uDiffuseFresnelCenterBias, SCENEJS_uDiffuseFresnelPower);");
src.push("lightValue *= mix(SCENEJS_uDiffuseFresnelEdgeColor.rgb, SCENEJS_uDiffuseFresnelCenterColor.rgb, diffuseFresnel);");
src.push("color.rgb *= mix(SCENEJS_uDiffuseFresnelEdgeColor.rgb, SCENEJS_uDiffuseFresnelCenterColor.rgb, diffuseFresnel);");
}

if (specularFresnel) {
Expand Down
Loading

0 comments on commit 6be9504

Please sign in to comment.