/home/lindsay/xeolabs/xeogl-next/xeogl/src/materials/lambertMaterial.js
API Docs for:

File: /home/lindsay/xeolabs/xeogl-next/xeogl/src/materials/lambertMaterial.js

  1. /**
  2. A **LambertMaterial** is a {{#crossLink "Material"}}{{/crossLink}} that defines the surface appearance of
  3. attached {{#crossLink "Mesh"}}Meshes{{/crossLink}} using
  4. the non-physically based <a href="https://en.wikipedia.org/wiki/Lambertian_reflectance">Lambertian</a> model for calculating reflectance.
  5.  
  6. ## Examples
  7.  
  8. TODO
  9.  
  10. ## Overview
  11.  
  12. * Used for rendering non-realistic objects such as "helpers", wireframe objects, labels etc.
  13. * Use {{#crossLink "PhongMaterial"}}{{/crossLink}} when you need specular highlights.
  14. * Use the physically based {{#crossLink "MetallicMaterial"}}{{/crossLink}} or {{#crossLink "SpecularMaterial"}}{{/crossLink}} when you need more realism.
  15.  
  16. For LambertMaterial, the illumination calculation is performed at each triangle vertex, and the resulting color is
  17. interpolated across the face of the triangle. For {{#crossLink "PhongMaterial"}}{{/crossLink}}, {{#crossLink "MetallicMaterial"}}{{/crossLink}} and
  18. {{#crossLink "SpecularMaterial"}}{{/crossLink}}, vertex normals are interpolated across the surface of the triangle, and
  19. the illumination calculation is performed at each texel.
  20.  
  21. The following table summarizes LambertMaterial properties:
  22.  
  23. | Property | Type | Range | Default Value | Space | Description |
  24. |:--------:|:----:|:-----:|:-------------:|:-----:|:-----------:|
  25. | {{#crossLink "LambertMaterial/ambient:property"}}{{/crossLink}} | Array | [0, 1] for all components | [1,1,1,1] | linear | The RGB components of the ambient light reflected by the material. |
  26. | {{#crossLink "LambertMaterial/color:property"}}{{/crossLink}} | Array | [0, 1] for all components | [1,1,1,1] | linear | The RGB components of the diffuse light reflected by the material. |
  27. | {{#crossLink "LambertMaterial/emissive:property"}}{{/crossLink}} | Array | [0, 1] for all components | [0,0,0] | linear | The RGB components of the light emitted by the material. |
  28. | {{#crossLink "LambertMaterial/alpha:property"}}{{/crossLink}} | Number | [0, 1] | 1 | linear | The transparency of the material surface (0 fully transparent, 1 fully opaque). |
  29. | {{#crossLink "LambertMaterial/lineWidth:property"}}{{/crossLink}} | Number | [0..100] | 1 | | Line width in pixels. |
  30. | {{#crossLink "LambertMaterial/pointSize:property"}}{{/crossLink}} | Number | [0..100] | 1 | | Point size in pixels. |
  31. | {{#crossLink "LambertMaterial/backfaces:property"}}{{/crossLink}} | Boolean | | false | | Whether to render {{#crossLink "Geometry"}}Geometry{{/crossLink}} backfaces. |
  32. | {{#crossLink "LambertMaterial/backfaces:property"}}{{/crossLink}} | String | "ccw", "cw" | "ccw" | | The winding order for {{#crossLink "Geometry"}}Geometry{{/crossLink}} frontfaces - "cw" for clockwise, or "ccw" for counter-clockwise. |
  33.  
  34. ## Usage
  35.  
  36. ```` javascript
  37. var torus = new xeogl.Mesh({
  38. material: new xeogl.LambertMaterial({
  39. ambient: [0.3, 0.3, 0.3],
  40. color: [0.5, 0.5, 0.0],
  41. alpha: 1.0 // Default
  42. }),
  43.  
  44. geometry: new xeogl.TorusGeometry()
  45. });
  46. ````
  47. @class LambertMaterial
  48. @module xeogl
  49. @submodule materials
  50. @constructor
  51. @extends Material
  52. @param [owner] {Component} Owner component. When destroyed, the owner will destroy this component as well. Creates this component within the default {{#crossLink "Scene"}}{{/crossLink}} when omitted.
  53. @param [cfg] {*} The LambertMaterial configuration
  54. @param [cfg.id] {String} Optional ID, unique among all components in the parent {{#crossLink "Scene"}}Scene{{/crossLink}}, generated automatically when omitted.
  55. @param [cfg.meta=null] {String:Object} Metadata to attach to this LambertMaterial.
  56. @param [cfg.ambient=[1.0, 1.0, 1.0 ]] {Array of Number} LambertMaterial ambient color.
  57. @param [cfg.color=[ 1.0, 1.0, 1.0 ]] {Array of Number} LambertMaterial diffuse color.
  58. @param [cfg.emissive=[ 0.0, 0.0, 0.0 ]] {Array of Number} LambertMaterial emissive color.
  59. @param [cfg.alpha=1] {Number} Scalar in range 0-1 that controls alpha, where 0 is completely transparent and 1 is completely opaque.
  60. @param [cfg.reflectivity=1] {Number} Scalar in range 0-1 that controls how much {{#crossLink "CubeMap"}}CubeMap{{/crossLink}} is reflected.
  61. @param [cfg.lineWidth=1] {Number} Scalar that controls the width of lines for {{#crossLink "Geometry"}}{{/crossLink}} with {{#crossLink "Geometry/primitive:property"}}{{/crossLink}} set to "lines".
  62. @param [cfg.pointSize=1] {Number} Scalar that controls the size of points for {{#crossLink "Geometry"}}{{/crossLink}} with {{#crossLink "Geometry/primitive:property"}}{{/crossLink}} set to "points".
  63. @param [cfg.backfaces=false] {Boolean} Whether to render {{#crossLink "Geometry"}}Geometry{{/crossLink}} backfaces.
  64. @param [cfg.frontface="ccw"] {Boolean} The winding order for {{#crossLink "Geometry"}}Geometry{{/crossLink}} front faces - "cw" for clockwise, or "ccw" for counter-clockwise.
  65. */
  66.  
  67. import {core} from "./../core.js";
  68. import {Material} from './material.js';
  69. import {State} from '../renderer/state.js';
  70. import {math} from '../math/math.js';
  71. import {componentClasses} from "./../componentClasses.js";
  72.  
  73. const type = "xeogl.LambertMaterial";
  74.  
  75. class LambertMaterial extends Material {
  76.  
  77. /**
  78. JavaScript class name for this Component.
  79.  
  80. For example: "xeogl.AmbientLight", "xeogl.MetallicMaterial" etc.
  81.  
  82. @property type
  83. @type String
  84. @final
  85. */
  86. get type() {
  87. return type;
  88. }
  89.  
  90. init(cfg) {
  91.  
  92. super.init(cfg);
  93.  
  94. this._state = new State({
  95. type: "LambertMaterial",
  96. ambient: math.vec3([1.0, 1.0, 1.0]),
  97. color: math.vec3([1.0, 1.0, 1.0]),
  98. emissive: math.vec3([0.0, 0.0, 0.0]),
  99. alpha: null,
  100. alphaMode: 0, // 2 ("blend") when transparent, so renderer knows when to add to transparency bin
  101. lineWidth: null,
  102. pointSize: null,
  103. backfaces: null,
  104. frontface: null, // Boolean for speed; true == "ccw", false == "cw"
  105. hash: "/lam;"
  106. });
  107.  
  108. this.ambient = cfg.ambient;
  109. this.color = cfg.color;
  110. this.emissive = cfg.emissive;
  111. this.alpha = cfg.alpha;
  112. this.lineWidth = cfg.lineWidth;
  113. this.pointSize = cfg.pointSize;
  114. this.backfaces = cfg.backfaces;
  115. this.frontface = cfg.frontface;
  116. }
  117.  
  118. /**
  119. The LambertMaterial's ambient color.
  120.  
  121. @property ambient
  122. @default [0.3, 0.3, 0.3]
  123. @type Float32Array
  124. */
  125.  
  126. set ambient(value) {
  127. let ambient = this._state.ambient;
  128. if (!ambient) {
  129. ambient = this._state.ambient = new Float32Array(3);
  130. } else if (value && ambient[0] === value[0] && ambient[1] === value[1] && ambient[2] === value[2]) {
  131. return;
  132. }
  133. if (value) {
  134. ambient[0] = value[0];
  135. ambient[1] = value[1];
  136. ambient[2] = value[2];
  137. } else {
  138. ambient[0] = .2;
  139. ambient[1] = .2;
  140. ambient[2] = .2;
  141. }
  142. this._renderer.imageDirty();
  143. }
  144.  
  145. get ambient() {
  146. return this._state.ambient;
  147. }
  148.  
  149. /**
  150. The LambertMaterial's diffuse color.
  151.  
  152. @property color
  153. @default [1.0, 1.0, 1.0]
  154. @type Float32Array
  155. */
  156. set color(value) {
  157. let color = this._state.color;
  158. if (!color) {
  159. color = this._state.color = new Float32Array(3);
  160. } else if (value && color[0] === value[0] && color[1] === value[1] && color[2] === value[2]) {
  161. return;
  162. }
  163. if (value) {
  164. color[0] = value[0];
  165. color[1] = value[1];
  166. color[2] = value[2];
  167. } else {
  168. color[0] = 1;
  169. color[1] = 1;
  170. color[2] = 1;
  171. }
  172. this._renderer.imageDirty();
  173. }
  174.  
  175. get color() {
  176. return this._state.color;
  177. }
  178.  
  179. /**
  180. The LambertMaterial's emissive color.
  181.  
  182. @property emissive
  183. @default [0.0, 0.0, 0.0]
  184. @type Float32Array
  185. */
  186. set emissive(value) {
  187. let emissive = this._state.emissive;
  188. if (!emissive) {
  189. emissive = this._state.emissive = new Float32Array(3);
  190. } else if (value && emissive[0] === value[0] && emissive[1] === value[1] && emissive[2] === value[2]) {
  191. return;
  192. }
  193. if (value) {
  194. emissive[0] = value[0];
  195. emissive[1] = value[1];
  196. emissive[2] = value[2];
  197. } else {
  198. emissive[0] = 0;
  199. emissive[1] = 0;
  200. emissive[2] = 0;
  201. }
  202. this._renderer.imageDirty();
  203. }
  204.  
  205. get emissive() {
  206. return this._state.emissive;
  207. }
  208.  
  209. /**
  210. Factor in the range [0..1] indicating how transparent the LambertMaterial is.
  211.  
  212. A value of 0.0 indicates fully transparent, 1.0 is fully opaque.
  213.  
  214. @property alpha
  215. @default 1.0
  216. @type Number
  217. */
  218.  
  219. set alpha(value) {
  220. value = (value !== undefined && value !== null) ? value : 1.0;
  221. if (this._state.alpha === value) {
  222. return;
  223. }
  224. this._state.alpha = value;
  225. this._state.alphaMode = value < 1.0 ? 2 /* blend */ : 0
  226. /* opaque */
  227. this._renderer.imageDirty();
  228. }
  229.  
  230. get alpha() {
  231. return this._state.alpha;
  232. }
  233.  
  234. /**
  235. The LambertMaterial's line width.
  236.  
  237. @property lineWidth
  238. @default 1.0
  239. @type Number
  240. */
  241.  
  242. set lineWidth(value) {
  243. this._state.lineWidth = value || 1.0;
  244. this._renderer.imageDirty();
  245. }
  246.  
  247. get lineWidth() {
  248. return this._state.lineWidth;
  249. }
  250.  
  251. /**
  252. The LambertMaterial's point size.
  253.  
  254. @property pointSize
  255. @default 1.0
  256. @type Number
  257. */
  258. set pointSize(value) {
  259. this._state.pointSize = value || 1.0;
  260. this._renderer.imageDirty();
  261. }
  262.  
  263. get pointSize() {
  264. return this._state.pointSize;
  265. }
  266.  
  267. /**
  268. Whether backfaces are visible on attached {{#crossLink "Mesh"}}Meshes{{/crossLink}}.
  269.  
  270. The backfaces will belong to {{#crossLink "Geometry"}}{{/crossLink}} components that are also attached to
  271. the {{#crossLink "Mesh"}}Meshes{{/crossLink}}.
  272.  
  273. @property backfaces
  274. @default false
  275. @type Boolean
  276. */
  277. set backfaces(value) {
  278. value = !!value;
  279. if (this._state.backfaces === value) {
  280. return;
  281. }
  282. this._state.backfaces = value;
  283. this._renderer.imageDirty();
  284. }
  285.  
  286. get backfaces() {
  287. return this._state.backfaces;
  288. }
  289.  
  290. /**
  291. Indicates the winding direction of front faces on attached {{#crossLink "Mesh"}}Meshes{{/crossLink}}.
  292.  
  293. The faces will belong to {{#crossLink "Geometry"}}{{/crossLink}} components that are also attached to
  294. the {{#crossLink "Mesh"}}Meshes{{/crossLink}}.
  295.  
  296. @property frontface
  297. @default "ccw"
  298. @type String
  299. */
  300. set frontface(value) {
  301. value = value !== "cw";
  302. if (this._state.frontface === value) {
  303. return;
  304. }
  305. this._state.frontface = value;
  306. this._renderer.imageDirty();
  307. }
  308.  
  309. get frontface() {
  310. return this._state.frontface ? "ccw" : "cw";
  311. }
  312.  
  313. _getState() {
  314. return this._state;
  315. }
  316.  
  317. destroy() {
  318. super.destroy();
  319. this._state.destroy();
  320. }
  321. }
  322.  
  323. componentClasses[type] = LambertMaterial;
  324.  
  325. export{LambertMaterial};