Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
protected generateSphere2Node(parent: SceneNode): SceneNode {
/* Create node and transform */
const node = parent.addNode(new SceneNode('mesh'));
const translate = mat4.fromTranslation(mat4.create(), vec3.fromValues(1.0, 0.0, 0.0));
const scale = mat4.fromScaling(mat4.create(), vec3.fromValues(0.4, 0.4, 0.4));
const transformMatrix = mat4.multiply(mat4.create(), translate, scale);
const transform = new TransformComponent(transformMatrix);
node.addComponent(transform);
/* Create material */
const material = new SceneExampleMaterial(this._context, 'ExampleMaterial2');
material.textured = false;
/* Create geometry. */
const geometry = new GeosphereGeometry(
this._context,
'mesh',
1.0,
true);
geometry.initialize(this._aMeshVertex, this._aMeshTexCoord);
const sphere = new GeometryComponent();
protected generateSphere1Node(parent: SceneNode): SceneNode {
const gl = this._context.gl;
/* Create node and transform */
const node = parent.addNode(new SceneNode('mesh'));
const translate = mat4.fromTranslation(mat4.create(), vec3.fromValues(0.0, 0.0, 0.0));
const scale = mat4.fromScaling(mat4.create(), vec3.fromValues(0.4, 0.4, 0.4));
const transformMatrix = mat4.multiply(mat4.create(), translate, scale);
const transform = new TransformComponent(transformMatrix);
node.addComponent(transform);
/* Create and load texture. */
const texture = new Texture2D(this._context, 'Texture');
texture.initialize(1, 1, gl.RGB, gl.RGB, gl.UNSIGNED_BYTE);
texture.fetch('./data/concrete_floor_02_diff_1k.webp', false).then(() => {
this.invalidate(true);
});
/* Create material */
const material = new SceneExampleMaterial(this._context, 'ExampleMaterial1');
material.texture = texture;
material.textured = true;
/* Create geometry. */
const geometry = new GeosphereGeometry(
protected generateSphere2Node(parent: SceneNode): SceneNode {
/* Create node and transform */
const node = parent.addNode(new SceneNode('mesh'));
const translate = mat4.fromTranslation(mat4.create(), vec3.fromValues(1.0, 0.0, 0.0));
const scale = mat4.fromScaling(mat4.create(), vec3.fromValues(0.4, 0.4, 0.4));
const transformMatrix = mat4.multiply(mat4.create(), translate, scale);
const transform = new TransformComponent(transformMatrix);
node.addComponent(transform);
/* Create material */
const material = new SceneExampleMaterial(this._context, 'ExampleMaterial2');
material.textured = false;
/* Create geometry. */
const geometry = new GeosphereGeometry(
this._context,
'mesh',
1.0,
true);
geometry.initialize(this._aMeshVertex, this._aMeshTexCoord);
const sphere = new GeometryComponent();
protected generateBoxNode(parent: SceneNode): SceneNode {
/* Create node and transform */
const node = parent.addNode(new SceneNode('mesh'));
const translate = mat4.fromTranslation(mat4.create(), vec3.fromValues(-1.0, 0.0, 0.0));
const scale = mat4.fromScaling(mat4.create(), vec3.fromValues(0.5, 0.5, 0.5));
const transformMatrix = mat4.multiply(mat4.create(), translate, scale);
const transform = new TransformComponent(transformMatrix);
node.addComponent(transform);
/* Create material */
const material = new SceneExampleMaterial(this._context, 'ExampleMaterial3');
material.textured = false;
/* Create geometry. */
const geometry = new CuboidGeometry(this._context, 'mesh', true);
geometry.initialize(this._aMeshVertex, this._aMeshTexCoord);
const box = new GeometryComponent();
box.geometry = geometry;
box.material = material;
node.addComponent(box);
protected generateSphere1Node(parent: SceneNode): SceneNode {
const gl = this._context.gl;
/* Create node and transform */
const node = parent.addNode(new SceneNode('mesh'));
const translate = mat4.fromTranslation(mat4.create(), vec3.fromValues(0.0, 0.0, 0.0));
const scale = mat4.fromScaling(mat4.create(), vec3.fromValues(0.4, 0.4, 0.4));
const transformMatrix = mat4.multiply(mat4.create(), translate, scale);
const transform = new TransformComponent(transformMatrix);
node.addComponent(transform);
/* Create and load texture. */
const texture = new Texture2D(this._context, 'Texture');
texture.initialize(1, 1, gl.RGB, gl.RGB, gl.UNSIGNED_BYTE);
texture.fetch('./data/concrete_floor_02_diff_1k.webp', false).then(() => {
this.invalidate(true);
});
/* Create material */
const material = new SceneExampleMaterial(this._context, 'ExampleMaterial1');
material.texture = texture;
material.textured = true;
/* Create geometry. */
const geometry = new GeosphereGeometry(
protected generateBoxNode(parent: SceneNode): SceneNode {
/* Create node and transform */
const node = parent.addNode(new SceneNode('mesh'));
const translate = mat4.fromTranslation(mat4.create(), vec3.fromValues(-1.0, 0.0, 0.0));
const scale = mat4.fromScaling(mat4.create(), vec3.fromValues(0.5, 0.5, 0.5));
const transformMatrix = mat4.multiply(mat4.create(), translate, scale);
const transform = new TransformComponent(transformMatrix);
node.addComponent(transform);
/* Create material */
const material = new SceneExampleMaterial(this._context, 'ExampleMaterial3');
material.textured = false;
/* Create geometry. */
const geometry = new CuboidGeometry(this._context, 'mesh', true);
geometry.initialize(this._aMeshVertex, this._aMeshTexCoord);
const box = new GeometryComponent();
box.geometry = geometry;
box.material = material;
node.addComponent(box);