/// <summary> /// Register all commands /// </summary> public static void Register(EpsInterpreter interpreter) { DictionaryCommands.Register(interpreter); StackCommands.Register(interpreter); ArithmeticCommands.Register(interpreter); CombinedCommands.Register(interpreter); PathCommands.Register(interpreter); MiscCommands.Register(interpreter); GraphicStateCommands.Register(interpreter); PaintingCommands.Register(interpreter); DeviceSetupCommands.Register(interpreter); ArrayCommands.Register(interpreter); MatrixCommands.Register(interpreter); ControlCommands.Register(interpreter); BooleanCommands.Register(interpreter); ConversionCommands.Register(interpreter); StringCommands.Register(interpreter); MemoryCommands.Register(interpreter); ResourceCommands.Register(interpreter); FontCommands.Register(interpreter); InterpreterCommands.Register(interpreter); FileCommands.Register(interpreter); PatternCommands.Register(interpreter); }