/home/lindsay/xeolabs/xeogl-next/xeogl/src/camera/ortho.js
API Docs for:

File: /home/lindsay/xeolabs/xeogl-next/xeogl/src/camera/ortho.js

  1. /**
  2. An **Ortho** defines an orthographic projection transform for a {{#crossLink "Camera"}}Camera{{/crossLink}}.
  3.  
  4. ## Overview
  5.  
  6. * A {{#crossLink "Camera"}}Camera{{/crossLink}} has an Ortho to configure its orthographic projection mode.
  7. * An Ortho works like Blender's orthographic projection, where the positions of the left, right, top and bottom planes are
  8. implicitly specified with a single {{#crossLink "Ortho/scale:property"}}{{/crossLink}} property, which causes the frustum to be symmetrical on X and Y axis, large enough to
  9. contain the number of units given by {{#crossLink "Ortho/scale:property"}}{{/crossLink}}.
  10. * An Ortho's {{#crossLink "Ortho/near:property"}}{{/crossLink}} and {{#crossLink "Ortho/far:property"}}{{/crossLink}} properties
  11. specify the distances to the WebGL clipping planes.
  12.  
  13.  
  14. ## Examples
  15.  
  16. * [Camera with orthographic projection](../../examples/#camera_orthographic)
  17.  
  18. ## Usage
  19.  
  20. * See {{#crossLink "Camera"}}{{/crossLink}}
  21.  
  22. @class Ortho
  23. @module xeogl
  24. @submodule camera
  25. @constructor
  26. @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.
  27. @param [cfg] {*} Configs
  28. @param [cfg.id] {String} Optional ID, unique among all components in the parent scene, generated automatically when omitted.
  29. @param [cfg.meta] {String:Object} Optional map of user-defined metadata to attach to this Ortho.
  30. @param [cfg.parent] {String|Transform} ID or instance of a parent {{#crossLink "Transform"}}{{/crossLink}} within the same {{#crossLink "Scene"}}Scene{{/crossLink}}.
  31. @param [cfg.scale=1.0] {Number} Scale factor for this Ortho's extents on X and Y axis.
  32. @param [cfg.near=0.1] {Number} Position of the near plane on the View-space Z-axis.
  33. @param [cfg.far=10000] {Number} Position of the far plane on the positive View-space Z-axis.
  34. @author xeolabs / http://xeolabs.com
  35. @author Artur-Sampaio / https://github.com/Artur-Sampaio
  36. @extends Component
  37. */
  38. import {Component} from '../component.js';
  39. import {State} from '../renderer/state.js';
  40. import {math} from '../math/math.js';
  41. import {componentClasses} from "./../componentClasses.js";
  42.  
  43. const type = "xeogl.Ortho";
  44.  
  45. class Ortho extends Component {
  46.  
  47. /**
  48. JavaScript class name for this Component.
  49.  
  50. For example: "xeogl.AmbientLight", "xeogl.MetallicMaterial" etc.
  51.  
  52. @property type
  53. @type String
  54. @final
  55. */
  56. get type() {
  57. return type;
  58. }
  59.  
  60. init(cfg) {
  61.  
  62. super.init(cfg);
  63.  
  64. this._state = new State({
  65. matrix: math.mat4()
  66. });
  67.  
  68. this.scale = cfg.scale;
  69. this.near = cfg.near;
  70. this.far = cfg.far;
  71.  
  72. this._onCanvasBoundary = this.scene.canvas.on("boundary", this._needUpdate, this);
  73. }
  74.  
  75. _update() {
  76.  
  77. const WIDTH_INDEX = 2;
  78. const HEIGHT_INDEX = 3;
  79.  
  80. const scene = this.scene;
  81. const scale = this._scale;
  82. const halfSize = 0.5 * scale;
  83.  
  84. const boundary = scene.viewport.boundary;
  85. const boundaryWidth = boundary[WIDTH_INDEX];
  86. const boundaryHeight = boundary[HEIGHT_INDEX];
  87. const aspect = boundaryWidth / boundaryHeight;
  88.  
  89. let left;
  90. let right;
  91. let top;
  92. let bottom;
  93.  
  94. if (boundaryWidth > boundaryHeight) {
  95. left = -halfSize;
  96. right = halfSize;
  97. top = halfSize / aspect;
  98. bottom = -halfSize / aspect;
  99.  
  100. } else {
  101. left = -halfSize * aspect;
  102. right = halfSize * aspect;
  103. top = halfSize;
  104. bottom = -halfSize;
  105. }
  106.  
  107. math.orthoMat4c(left, right, bottom, top, this._near, this._far, this._state.matrix);
  108.  
  109. this._renderer.imageDirty();
  110.  
  111. this.fire("matrix", this._state.matrix);
  112. }
  113.  
  114.  
  115. /**
  116. Scale factor for this Ortho's extents on X and Y axis.
  117.  
  118. Clamps to minimum value of ````0.01```.
  119.  
  120. Fires a {{#crossLink "Ortho/scale:event"}}{{/crossLink}} event on change.
  121.  
  122. @property scale
  123. @default 1.0
  124. @type Number
  125. */
  126.  
  127. set scale(value) {
  128. if (value === undefined || value === null) {
  129. value = 1.0;
  130. }
  131. if (value <= 0) {
  132. value = 0.01;
  133. }
  134. this._scale = value;
  135. this._needUpdate();
  136. /**
  137. Fired whenever this Ortho's {{#crossLink "Ortho/scale:property"}}{{/crossLink}} property changes.
  138.  
  139. @event scale
  140. @param value The property's new value
  141. */
  142. this.fire("scale", this._scale);
  143. }
  144.  
  145. get scale() {
  146. return this._scale;
  147. }
  148.  
  149. /**
  150. Position of this Ortho's near plane on the positive View-space Z-axis.
  151.  
  152. Fires a {{#crossLink "Ortho/near:event"}}{{/crossLink}} event on change.
  153.  
  154. @property near
  155. @default 0.1
  156. @type Number
  157. */
  158. set near(value) {
  159. this._near = (value !== undefined && value !== null) ? value : 0.1;
  160. this._needUpdate();
  161. /**
  162. Fired whenever this Ortho's {{#crossLink "Ortho/near:property"}}{{/crossLink}} property changes.
  163.  
  164. @event near
  165. @param value The property's new value
  166. */
  167. this.fire("near", this._near);
  168. }
  169.  
  170. get near() {
  171. return this._near;
  172. }
  173.  
  174. /**
  175. Position of this Ortho's far plane on the positive View-space Z-axis.
  176.  
  177. Fires a {{#crossLink "Ortho/far:event"}}{{/crossLink}} event on change.
  178.  
  179. @property far
  180. @default 10000.0
  181. @type Number
  182. */
  183. set far(value) {
  184. this._far = (value !== undefined && value !== null) ? value : 10000.0;
  185. this._needUpdate();
  186. /**
  187. Fired whenever this Ortho's {{#crossLink "Ortho/far:property"}}{{/crossLink}} property changes.
  188.  
  189. @event far
  190. @param value The property's new value
  191. */
  192. this.fire("far", this._far);
  193. }
  194.  
  195. get far() {
  196. return this._far;
  197. }
  198.  
  199. /**
  200. The Ortho's projection transform matrix.
  201.  
  202. Fires a {{#crossLink "Ortho/matrix:event"}}{{/crossLink}} event on change.
  203.  
  204. @property matrix
  205. @default [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]
  206. @type {Float32Array}
  207. */
  208. get matrix() {
  209. if (this._updateScheduled) {
  210. this._doUpdate();
  211. }
  212. return this._state.matrix;
  213. }
  214.  
  215. destroy() {
  216. super.destroy();
  217. this._state.destroy();
  218. this.scene.canvas.off(this._onCanvasBoundary);
  219. }
  220. }
  221.  
  222. componentClasses[type] = Ortho;
  223.  
  224. export{Ortho};