r3-legacy/src/r3-d3-api-geometry-normal-w...

24 lines
564 B
JavaScript

/**
* R3.D3.API.Geometry.Normal.Wireframe
* @param apiComponent
*
* @property geometry
*
* @constructor
*/
R3.D3.API.Geometry.Normal.Wireframe = function(
apiComponent
) {
__API_GEOMETRY_NORMAL__;
if (R3.Utils.UndefinedOrNull(apiComponent.geometry)) {
apiComponent.geometry = null;
}
this.geometry = apiComponent.geometry;
};
R3.D3.API.Geometry.Normal.Wireframe.prototype = Object.create(R3.D3.API.Geometry.Normal.prototype);
R3.D3.API.Geometry.Normal.Wireframe.prototype.constructor = R3.D3.API.Geometry.Normal.Wireframe;