The X Toolkit API

X.mesh

/**
* Create a mesh. Meshes are displayable objects and can be loaded from a file.
*
* @constructor
* @extends X.object
* @mixin X.loadable
*/
var m = new X.mesh();
/**
* The caption of this object.
*
* @type {?string}
* @protected
*/
m._caption = $_CAPTION;
/**
* The children of this object.
*
* @type {!Array}
* @protected
*/
m._children = $_CHILDREN;
/**
* The className of this class.
*
* @type {string}
* @protected
*/
m._classname = $_CLASSNAME;
/**
* The object color. By default, this is white.
*
* @type {!Array}
* @public
*/
m._color = $_COLOR;
/**
* The point colors of this object.
*
* @type {?X.triplets}
* @protected
*/
m._colors = $_COLORS;
/**
* The color table of this object.
*
* @type {?X.colortable}
* @protected
*/
m._colortable = $_COLORTABLE;
/**
* The 'dirty' flag of this object.
*
* @type {boolean}
* @protected
*/
m._dirty = $_DIRTY;
/**
* This distance of this object to the viewer's eye.
*
* @type {number}
* @protected
*/
m._distance = $_DISTANCE;
/**
* The file of this loadable object.
*
* @type {?X.file}
* @protected
*/
m._file = $_FILE;
/**
* The file data.
*
* @type {?ArrayBuffer}
* @protected
*/
m._filedata = $_FILEDATA;
/**
* The uniqueId of this instance. Each class instance in XTK has a uniqueId.
*
* @type {number}
* @protected
*/
m._id = $_ID;
/**
* The line width, only used in X.displayable.types.LINES mode.
*
* @type {number}
* @protected
*/
m._linewidth = $_LINEWIDTH;
/**
* The flag for the magic mode.
*
* @type {!boolean}
* @protected
*/
m._magicmode = $_MAGICMODE;
/**
* The normals of this object.
*
* @type {?X.triplets}
* @protected
*/
m._normals = $_NORMALS;
/**
* The opacity of this object.
*
* @type {number}
* @protected
*/
m._opacity = $_OPACITY;
/**
* An array reflecting the point or vertex indices.
*
* @type {!Array}
* @protected
*/
m._pointIndices = $_POINTINDICES;
/**
* The points of this object.
*
* @type {?X.triplets}
* @protected
*/
m._points = $_POINTS;
/**
* The point size, only used in X.displayable.types.POINTS mode.
*
* @type {number}
* @protected
*/
m._pointsize = $_POINTSIZE;
/**
* The scalars of this object.
*
* @type {?X.scalars}
* @protected
*/
m._scalars = $_SCALARS;
/**
* The texture of this object.
*
* @type {?X.texture}
* @protected
*/
m._texture = $_TEXTURE;
/**
* The mapping between object and texture coordinates.
*
* @type {?Array}
* @protected
*/
m._textureCoordinateMap = $_TEXTURECOORDINATEMAP;
/**
* The transform of this object.
*
* @type {!X.transform}
* @protected
*/
m._transform = $_TRANSFORM;
/**
* The rendering type of this object, default is
* {X.displayable.types.TRIANGLES}.
*
* @type {X.displayable.types}
* @protected
*/
m._type = $_TYPE;
/**
* The visibility of this object.
*
* @type {boolean}
* @public
*/
m._visible = $_VISIBLE;
/**
* Get the caption of this object.
*
* @return {?string} The caption of this object.
* @public
*/
var _caption = m.caption;
/**
* Set the caption for this object.
*
* @param {?string} caption The caption for this object.
* @public
*/
m.caption = $CAPTION;
/**
* Get the children of this object. Each object can have N children which get
* automatically rendered when the top level object gets rendered.
*
* @return {!Array} The children of this object which are again objects.
*/
var _children = m.children;
/**
* Get the className of this object.
*
* @return {string} The className of this object.
* @public
*/
var _classname = m.classname;
/**
* Get the object color.
*
* @return {!Array} The object color.
*/
var _color = m.color;
/**
* Set the object color. This overrides any point colors.
*
* @param {!Array} color The object color as an array with length 3 and values
*          between 0..1.
* @throws {Error} An exception if the given color is invalid.
*/
m.color = $COLOR;
/**
* Get the point colors of this object.
*
* @return {!X.triplets} The point colors.
*/
var _colors = m.colors;
/**
* Set the colors of this object.
*
* @param {!X.triplets} colors The colors.
*/
m.colors = $COLORS;
/**
* The color table associated with this object.
*
* @return {?X.colortable} The color table.
*/
var _colortable = m.colortable;
/**
* Get the associated X.file for this object.
*
* @return {string} The associated file path or null if no file is associated.
*/
var _file = m.file;
/**
* Load this object from a file path or reset the associated file path.
*
* @param {?string|Array} filepath The file path/URL to load. If null, reset the
*          associated file. If an array is given, load multiple files (this
*          only works for DICOM so far).
*/
m.file = $FILEPATH;
/**
* Get the possibly attached file data for this object.
*
* @return {?string} The associated file data or null if none is attached.
*/
var _filedata = m.filedata;
/**
* Set raw file data for this object. Doing so, skips any additional loading and
* just parses this raw data.
*
* @param {?string|Array} filedata The raw file data to parse.
*/
m.filedata = $FILEDATA;
/**
* Get the id of this instance.
*
* @return {string} The className of this object.
* @public
*/
var _id = m.id;
/**
* Get the line width of this object. The line width is only used in
* X.displayable.types.LINES rendering mode.
*
* @return {!number} The line width.
*/
var _linewidth = m.linewidth;
/**
* Set the line width for this object. The line width is only used in
* X.displayable.types.LINES rendering mode.
*
* @param {!number} width The line width.
* @throws {Error} An exception if the given width is invalid.
*/
m.linewidth = $WIDTH;
/**
* Get the magic mode flag.
*
* @return {!boolean} The magic mode flag.
*/
var _magicmode = m.magicmode;
/**
* Set the magic mode flag.
*
* @param {!boolean} magicmode The magic mode flag.
*/
m.magicmode = $MAGICMODE;
/**
* Get the normals of this object.
*
* @return {!X.triplets} The normals.
*/
var _normals = m.normals;
/**
* Set the normals of this object.
*
* @param {!X.triplets} normals The normals.
*/
m.normals = $NORMALS;
/**
* Get the opacity of this object. If the object is fully opaque, this returns
* 1.
*
* @return {number} The opacity in the range 0..1.
*/
var _opacity = m.opacity;
/**
* Set the opacity of this object.
*
* @param {number} opacity The opacity value in the range 0..1.
*/
m.opacity = $OPACITY;
/**
* Get the points of this object.
*
* @return {!X.triplets} The points.
*/
var _points = m.points;
/**
* Set the points of this object.
*
* @param {!X.triplets} points The points.
*/
m.points = $POINTS;
/**
* Get the point size of this object. The point size is only used in
* X.displayable.types.POINTS rendering mode.
*
* @return {!number} The point size.
*/
var _pointsize = m.pointsize;
/**
* Set the point size for this object. The point size is only used in
* X.displayable.types.POINTS rendering mode.
*
* @param {!number} size The point size.
* @throws {Error} An exception if the given size is invalid.
*/
m.pointsize = $SIZE;
/**
* The scalars associated with this object.
*
* @return {?X.scalars} The scalars.
*/
var _scalars = m.scalars;
/**
* Get the texture of this object.
*
* @return {!X.texture} The texture.
*/
var _texture = m.texture;
/**
* Get the transform of this object.
*
* @return {!X.transform} The transform.
*/
var _transform = m.transform;
/**
* Get the render type of this object.
*
* @return {!string} The render type.
*/
var _type = m.type;
/**
* Set the render type of this object. Valid types are: TRIANGLES,
* TRIANGLE_STRIPS, LINES, POINTS, POLYGONS
*
* @param {!string} type The render type.
*/
m.type = $TYPE;
/**
* Get the visibility of this object.
*
* @return {boolean} TRUE if the object is visible, FALSE otherwise.
* @public
*/
var _visible = m.visible;
/**
* Set the visibility of this object.
*
* @param {boolean} visible The object's new visibility.
* @public
*/
m.visible = $VISIBLE;
/**
* Copies the properties from a given object to this object. The texture,
* textureCoordinateMap and the children are not copied but linked.
*
* @param {*} object The given object.
* @protected
*/
m.copy_($OBJECT);
/**
* Fire a modified event for this object.
*
* @param {?boolean=} propagateEvent An optional flag to stop propagating down to child classes.
*/
m.modified($PROPAGATEEVENT);
/**
* Compare two X.objects by their opacity values and their distance to the
* viewer's eye. Fully opaque objects should be always ordered before
* transparent ones, and the transparent ones should be ordered back-to-front in
* terms of the distance to the viewer's eye.
*
* @param {X.object} object1 Object1 to compare against Object2.
* @param {X.object} object2 Object2 to compare against Object1.
* @return {!number} 1, if Object1 should be ordered after Object2. -1, if
*         Object1 should be ordered before Object2
*/
var OPACITY_COMPARATOR = X.mesh.OPACITY_COMPARATOR($OBJECT1, $OBJECT2);
/**
* Different render types for any displayable objects.
*
* @enum {string}
*/
X.mesh.types();


CONSTRUCTORS
X.mesh

PROPERTIES
_caption
_children
_classname
_color
_colors
_colortable
_dirty
_distance
_file
_filedata
_id
_linewidth
_magicmode
_normals
_opacity
_pointIndices
_points
_pointsize
_scalars
_texture
_textureCoordinateMap
_transform
_type
_visible

GETTERS/SETTERS
caption
children
classname
color
colors
colortable
file
filedata
id
linewidth
magicmode
normals
opacity
points
pointsize
scalars
texture
transform
type
visible

FUNCTIONS
copy_
modified

STATIC
OPACITY_COMPARATOR
types



SOURCECODE