/home/lindsay/xeolabs/xeogl-next/xeogl/src/clipping/clip.js
API Docs for:

File: /home/lindsay/xeolabs/xeogl-next/xeogl/src/clipping/clip.js

  1. /**
  2. A **Clip** is an arbitrarily-aligned World-space clipping plane.
  3.  
  4. <a href="../../examples/#effects_clipping"><img src="../../../assets/images/screenshots/Clips.png"></img></a>
  5.  
  6. ## Overview
  7.  
  8. * Used to slice portions off objects, to create cross-section views or reveal interiors.
  9. * Is contained within a {{#crossLink "Clips"}}{{/crossLink}} belonging to its {{#crossLink "Scene"}}{{/crossLink}}.
  10. * Has a World-space position in {{#crossLink "Clip/pos:property"}}{{/crossLink}} and orientation in {{#crossLink "Clip/dir:property"}}{{/crossLink}}.
  11. * Discards elements from the half-space in the direction of {{#crossLink "Clip/dir:property"}}{{/crossLink}}.
  12. * Can be be enabled or disabled via its {{#crossLink "Clip/active:property"}}{{/crossLink}} property.
  13.  
  14. ## Usage
  15.  
  16. In the example below, we have an {{#crossLink "Mesh"}}{{/crossLink}} that's attached by a {{#crossLink "Clips"}}{{/crossLink}}
  17. that contains two {{#crossLink "Clip"}}{{/crossLink}} components. The first {{#crossLink "Clip"}}{{/crossLink}} is on the
  18. positive diagonal, while the second is on the negative diagonal. The {{#crossLink "Mesh"}}Mesh's{{/crossLink}} {{#crossLink "Geometry"}}{{/crossLink}}
  19. is a box, which will get two of its corners clipped off.
  20.  
  21. ````javascript
  22. // Create a set of Clip planes in the default Scene
  23. scene.clips.clips = [
  24.  
  25. // Clip plane on negative diagonal
  26. new xeogl.Clip({
  27. pos: [1.0, 1.0, 1.0],
  28. dir: [-1.0, -1.0, -1.0],
  29. active: true
  30. }),
  31.  
  32. // Clip plane on positive diagonal
  33. new xeogl.Clip({
  34. pos: [-1.0, -1.0, -1.0],
  35. dir: [1.0, 1.0, 1.0],
  36. active: true
  37. })
  38. ];
  39.  
  40. // Create a Mesh in the default Scene, that will be clipped by our Clip planes
  41. var mesh = new xeogl.Mesh({
  42. geometry: new xeogl.SphereGeometry(),
  43. clippable: true // Enable clipping (default)
  44. });
  45. ````
  46.  
  47. ### Switching clipping on and off for a Mesh
  48.  
  49. An {{#crossLink "Mesh"}}{{/crossLink}}'s {{#crossLink "Mesh/clippable:property"}}{{/crossLink}} property indicates
  50. whether or not it is affected by Clip components.
  51.  
  52. You can switch it at any time, like this:
  53.  
  54. ```` javascript
  55. // Disable clipping for the Mesh
  56. mesh.clippable = false;
  57.  
  58. // Enable clipping for the Mesh
  59. mesh.clippable = true;
  60. ````
  61.  
  62. @class Clip
  63. @module xeogl
  64. @submodule clipping
  65. @constructor
  66. @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.
  67. @param [cfg] {*} Clip configuration
  68. @param [cfg.id] {String} Optional ID, unique among all components in the parent {{#crossLink "Scene"}}Scene{{/crossLink}}, generated automatically when omitted.
  69. You only need to supply an ID if you need to be able to find the Clip by ID within the {{#crossLink "Scene"}}Scene{{/crossLink}}.
  70. @param [cfg.meta] {String:Object} Optional map of user-defined metadata to attach to this Clip.
  71. @param [cfg.active=true] {Boolean} Indicates whether or not this Clip is active.
  72. @param [cfg.pos=[0,0,0]] {Array of Number} World-space position of the clipping plane.
  73. @param [cfg.dir=[0,0 -1]] {Array of Number} Vector perpendicular to the plane surface, indicating its orientation.
  74. @extends Component
  75. */
  76. import {Component} from '../component.js';
  77. import {State} from '../renderer/state.js';
  78. import {componentClasses} from "./../componentClasses.js";
  79.  
  80. const type = "xeogl.Clip";
  81.  
  82. class Clip extends Component {
  83.  
  84. /**
  85. JavaScript class name for this Component.
  86.  
  87. For example: "xeogl.AmbientLight", "xeogl.MetallicMaterial" etc.
  88.  
  89. @property type
  90. @type String
  91. @final
  92. */
  93. get type() {
  94. return type;
  95. }
  96.  
  97. init(cfg) {
  98.  
  99. super.init(cfg);
  100.  
  101. this._state = new State({
  102. active: true,
  103. pos: new Float32Array(3),
  104. dir: new Float32Array(3)
  105. });
  106.  
  107. this.active = cfg.active;
  108. this.pos = cfg.pos;
  109. this.dir = cfg.dir;
  110.  
  111. this.scene._clipCreated(this);
  112. }
  113.  
  114. /**
  115. Indicates whether this Clip is active or not.
  116.  
  117. @property active
  118. @default true
  119. @type Boolean
  120. */
  121. set active(value) {
  122. this._state.active = value !== false;
  123. this._renderer.imageDirty();
  124. /**
  125. Fired whenever this Clip's {{#crossLink "Clip/active:property"}}{{/crossLink}} property changes.
  126.  
  127. @event active
  128. @param value {Boolean} The property's new value
  129. */
  130. this.fire("active", this._state.active);
  131. }
  132.  
  133. get active() {
  134. return this._state.active;
  135. }
  136.  
  137. /**
  138. The World-space position of this Clip's plane.
  139.  
  140. @property pos
  141. @default [0, 0, 0]
  142. @type Float32Array
  143. */
  144. set pos(value) {
  145. this._state.pos.set(value || [0, 0, 0]);
  146. this._renderer.imageDirty();
  147. /**
  148. Fired whenever this Clip's {{#crossLink "Clip/pos:property"}}{{/crossLink}} property changes.
  149.  
  150. @event pos
  151. @param value Float32Array The property's new value
  152. */
  153. this.fire("pos", this._state.pos);
  154. }
  155.  
  156. get pos() {
  157. return this._state.pos;
  158. }
  159.  
  160. /**
  161. Vector indicating the orientation of this Clip plane.
  162.  
  163. The vector originates at {{#crossLink "Clip/pos:property"}}{{/crossLink}}. Elements on the
  164. same side of the vector are clipped.
  165.  
  166. @property dir
  167. @default [0, 0, -1]
  168. @type Float32Array
  169. */
  170. set dir(value) {
  171. this._state.dir.set(value || [0, 0, -1]);
  172. this._renderer.imageDirty();
  173. /**
  174. Fired whenever this Clip's {{#crossLink "Clip/dir:property"}}{{/crossLink}} property changes.
  175.  
  176. @event dir
  177. @param value {Float32Array} The property's new value
  178. */
  179. this.fire("dir", this._state.dir);
  180. }
  181.  
  182. get dir() {
  183. return this._state.dir;
  184. }
  185.  
  186. destroy() {
  187. this._state.destroy();
  188. this.scene._clipDestroyed(this);
  189. super.destroy();
  190. }
  191. }
  192.  
  193. componentClasses[type] = Clip;
  194.  
  195. export{Clip};
  196.