Multiply.hx 227 B

123456789101112131415
  1. package hrt.shgraph.nodes;
  2. using hxsl.Ast;
  3. @name("Multiply")
  4. @description("The output is the result of A * B")
  5. @width(80)
  6. @group("Operation")
  7. class Multiply extends Operation {
  8. public function new() {
  9. super(OpMult);
  10. }
  11. }