Multiply.hx 232 B

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