polygonjs-engine
Version:
node-based webgl 3D engine https://polygonjs.com
38 lines (33 loc) • 1.18 kB
text/typescript
import {BaseNodeGlMathFunctionArg1GlNode} from './_BaseMathFunction';
import Quaternion from './gl/quaternion.glsl';
import {GlConnectionPointType} from '../utils/io/connections/Gl';
import {FunctionGLDefinition} from './utils/GLDefinition';
export class QuatMultGlNode extends BaseNodeGlMathFunctionArg1GlNode {
static type() {
return 'quatMult';
}
initializeNode() {
super.initializeNode();
this.io.connection_points.set_input_name_function((index: number) => ['quat0', 'quat1'][index]);
this.io.connection_points.set_expected_input_types_function(() => [
GlConnectionPointType.VEC4,
GlConnectionPointType.VEC4,
]);
this.io.connection_points.set_expected_output_types_function(() => [GlConnectionPointType.VEC4]);
}
// protected _gl_input_name(index: number) {
// return ['quat0', 'quat1'][index];
// }
gl_method_name(): string {
return 'quatMult';
}
// protected _expected_input_types() {
// return [ConnectionPointType.VEC4, ConnectionPointType.VEC4];
// }
// protected _expected_output_types() {
// return [ConnectionPointType.VEC4];
// }
gl_function_definitions() {
return [new FunctionGLDefinition(this, Quaternion)];
}
}