Skip to content

Node based matrix library for Blackmagic Design Fusion.

License

Notifications You must be signed in to change notification settings

Spicy-Acorn/fusionmatrix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 

Repository files navigation

FusionMatrix

FusionMatrix is a node based matrix library for Blackmagic Design Fusion.

Acknowledgements

  • Kristof Indeherberge
  • Cédric Duriau

Requirements

Installation

FusionMatrix

  1. Clone or download the repository.
  2. Set the absolute path of the ./fusion directory into the Fusion UserPaths: path mapping.

lua-matrix

  1. Clone or download the repository.
  2. Set the absolute path of the ./lua directory into the Fusion LuaModules: path mapping.

Contents

Fuses

  • creatematrix.fuse: Fuse to create a 4x4 matrix.
  • matrixfromarray.fuse: Fuse to create a matrix from an array stored as JSON string.
  • matrixinvert.fuse: Fuse to invert a matrix.
  • matrixmultiply.fuse: Fuse to multiply two matrices.
  • matrixtranspose.fuse: Fuse to transpose a matrix.
  • matrixconcatenatehorizontal.fuse: Fuse to concatenate two matrices horizontally.
  • matrixconcatenatevertical.fuse: Fuse to concatenate two matrices vertically.
  • readmatrix.fuse: Fuse to read a matrix from metadata of an image.
  • writematrix.fuse: Fuse to write a matrix to metadata of an image.

Modules/Lua

  • matrixutils.lua: Core module using lua-matrix.